how can i get the end point coordinates of major, minor axis of a blob
Show older comments
i have calculated major/minor axis length of 5 blobs present in my image . now i need to know the end point coordinates of the major/minor axis how can i do that?
Axismeasurements=regionprops(labeledImage,'MinorAxisLength','MajorAxisLength');
for k=1:numberOfBlobs
minorAxis=Axismeasurements(k).MinorAxisLength;
disp(minorAxis);
end
majorAxis=Axismeasurements(2).MajorAxisLength;
Answers (1)
Sean de Wolski
on 15 Apr 2013
0 votes
Use bwmorph with the 'endpoints' option on the label or binary image.
2 Comments
Suvidha
on 15 Apr 2013
Sean de Wolski
on 16 Apr 2013
I = false(21);
I(10,3:18) = true; %horizontal line
epts = bwmorph(I,'endpoints')
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!