Obtaining coordinate values within circular ROI
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello all,
I have a function that receives xlist (vector of row coordinates) and ylist (vector of column coordinates) as inputs. I would like create another function that allows users to just select a starting coordinate (x, y) and it will capture all coordinates within a circular region of radius r (predefined) in the format of xlist and ylist.
My image is always 512*512 (grayscale CT). How do I do this?
Thank you so much!
댓글 수: 1
Michael Werthmann
2019년 2월 28일
Hello Brian,
I have a similar problem. Die you manage to solve yours?
Regards
Michael
답변 (1개)
KSSV
2019년 2월 28일
Check this demo example:
I = imread('cameraman.tif') ;
[ny,nx] = size(I) ;
C = input('Enter center of circle C(x,y), should be less then 256:','s') ;
R = input('Enter Radius of circle:','s') ;
%
C = str2num(C) ;
R = str2num(R) ;
%
th = linspace(0,2*pi) ;
xc = C(1)+R*cos(th) ;
yc = C(2)+R*sin(th) ;
[X,Y] = meshgrid(1:nx,1:ny) ;
idx = inpolygon(X(:),Y(:),xc,yc) ;
I(~idx) = 255 ;
imshow(I)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!