Select image region using point coordinates
显示 更早的评论
Hi, I was wondering if someone could do quickly and efficiently the selection of a region within the multiple ones that matlab manages to detect using the regionprops function in whose interior is a point that is defined by its x and y coordinates.
采纳的回答
更多回答(1 个)
Matt J
2021-4-16
regions=regionprops(yourImage,'PixelList');
detector=@(s) ismember([x,y], s.PixelList,'rows');
find( arrayfun( detector , region ) )
类别
在 帮助中心 和 File Exchange 中查找有关 Region and Image Properties 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!