Find the distance between the longest endpoints of a skeleton
    3 views (last 30 days)
  
       Show older comments
    
How to find the distance between the longest endpoints of a skeleton?
    LengthBr = bwmorph(finalBinaryImage,'skel',Inf);
    endImg    = bwmorph(LengthBr, 'endpoints');
     figure;imshow(LengthBr );
      hold on; plot(endPts(:,2),endPts(:,1),'*');
       hold off;
0 Comments
Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
