Info
此问题已关闭。 请重新打开它进行编辑或回答。
What are the image comparision methods based on shape?
1 次查看(过去 30 天)
显示 更早的评论
What are the comparision methods available to compare 2 images, based ONLY on the SHAPE?
Without considering about pixel values, mean, median, etc.
0 个评论
回答(1 个)
Image Analyst
2019-1-5
A common one is circularity or roundness. See Wikipedia on roundness for a bunch of metrics. For example you can use
circularity = perimeter .^ 2 ./ (4 * pi * Area);
You can also look at Euler number, Feret Diameters Click here, morphometrics (see Wikipedia), blob count per unit area, area fraction, blob orientation (rose of orientations), class adjacency (how likely it is for one type of blob to be next to another type of blob), etc.
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!