필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
pankaj chouthmal
pankaj chouthmal 2014년 1월 26일
댓글: pankaj chouthmal 2014년 1월 27일
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