How can i find the both endpoints coordinates for a particular label number ?

2 次查看(过去 30 天)
First I label the image. so if i want to find the endpoints coordinates for a specific label then what i need to do ?

回答(1 个)

Guillaume
Guillaume 2017-9-18
See the 'BoundingBox' property returned by regionprops that you can call directly on your labeled image.
stats - regionprops(yourlabeledimage);
desiredboundingbox = stats(desiredlabel).BoundingBox

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by