how to find 41*41 patch around a keypoint in an image ?

1 次查看(过去 30 天)
what is patch ? how to extract 41*41 patch around a key point (x,y) in an image ?

采纳的回答

Image Analyst
Image Analyst 2014-1-26
patch() is a function that overlays a colored polygon over an image or a plot/graph. Sounds like you don't want or need that. You want to extract a subimage centered at row=y, column = x, like this:
subImage = grayImage(y-20:y+20, x-20:x+20);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polygons 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by