How to find vertices of triangle approximated from binary image

조회 수: 3 (최근 30일)
Kiran K
Kiran K 2022년 12월 22일
댓글: Kiran K 2022년 12월 26일
The purpose is to analyse uniformity of images like below(The shape changes slightly based on device parameters).
I need to find the areas of 3 sub regions drawn by connecting centroid to 3 vertices.
The movement of centroid and variation in these sub areas are required for further analysis(with different device parameters).
For this, cordinates of vertices are required.
(Centroid is obtained from regionprop/blob analysis)
I know that this image is not in actual triangle shape. But is there any method to find the 3 vertices by any approximation method?
I could not find a solution with bounding box, bwboundaries...

채택된 답변

Image Analyst
Image Analyst 2022년 12월 22일
You can find the centroid, then the distance of the perimeter to the centroid and then call findpeaks on that distance to find the 3 vertexes. I do that in my attached demo.
  댓글 수: 1
Kiran K
Kiran K 2022년 12월 26일
This method was helpful to find the vertices.
In the attached image case, as the triangle edges are not sharp, all of the peaks on the distance array do not have high prominence. By adjusting the MinPeakProminence, it is able to identify the peaks.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2022년 12월 22일
I = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1239812/image.png') ;
[y,x] = find(I) ;
mx = mean(x) ; my = mean(y) ;
d = sqrt((mx-x).^2+(my-y).^2) ;
idx = isoutlier(d) ;
x(idx) =[] ; y(idx) =[] ;
idx = convhull(x,y) ;
x = x(idx) ; y = y(idx) ;
imshow(I)
hold on
plot(x,y,'.-r')

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by