how can i measure the longest point of my lightning image?
16 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Image Analyst
2019-4-8
One way to find the longest spine might be to compute the skeleton and endpoints with bwmorph(). Then compute distance between all identified endpoints with bwdistgeodesic(). See Steve's Image Processing blog
Then find out which pair of endpoints had the longest distance.
更多回答(1 个)
darova
2019-4-8
Draw black (0,0,0) line you want to calculate the length
See attached script
6 个评论
Image Analyst
2019-4-9
If you're going to draw a black line with paint, then you might as well use imfreehand() in MATLAB. I think he was looking for an automatic way, like me (below) or Matt J (above in comments section) suggested. That said, sometimes it's more time effective to employ user-assisted image analysis than trying months or years to get an automatic method (luckily this application won't take anywhere near that long).
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!