Need exact co-ordinate points for an irregular shape
4 次查看(过去 30 天)
显示 更早的评论
I need to calculate slopes of some irregular ROIs. So, I need the exact co-ordinates of few points. Is it possible to get the exact co-ordinate points of the highlighted points? As I have many ROIs in a single image, I need the co-ordinates automatically.

0 个评论
采纳的回答
KSSV
2021-6-18
If I is your binarized image.
[y,x] = find(I) ;
idx = boundary(x,y) ;
x = x(idx) ; y = y(idx) ;
The above gives the coordinates of boundary. You can pick the points based on distance from mean logic.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!