フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

What are the image comparision methods based on shape?

1 回表示 (過去 30 日間)
90Anonymous
90Anonymous 2019 年 1 月 5 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
What are the comparision methods available to compare 2 images, based ONLY on the SHAPE?
Without considering about pixel values, mean, median, etc.

回答 (1 件)

Image Analyst
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.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by