필터 지우기
필터 지우기

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