how to find location on a blob

조회 수: 3 (최근 30일)
Rohit Thokala
Rohit Thokala 2022년 1월 5일
편집: Image Analyst 2022년 1월 6일
Can somebody suggest a way to find the farthest white pixel in a binary image, shown in the picture with red circle. Thanks in advance
  댓글 수: 3
Rohit Thokala
Rohit Thokala 2022년 1월 6일
편집: Rohit Thokala 2022년 1월 6일
Hello @Steve Eddins, Sorry for the incomplete question (if it was), I want a way to automatically find the circled pixel and its distance from bottom line as indicated in the image. red line is drawn from the bottom center point in the blob.
Image Analyst
Image Analyst 2022년 1월 6일
편집: Image Analyst 2022년 1월 6일
My Answer below found the point's column value. I think perhaps you overlooked it.
I'll modify it to get the y value from the bottom most pixel.

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

채택된 답변

Image Analyst
Image Analyst 2022년 1월 5일
편집: Image Analyst 2022년 1월 6일
How about
[rows, columns] = find(binaryImage);
[rightMostColumn, index1] = max(columns)
[bottomMostRow, index2] = max(rows)
deltaY = bottomMostRow - rows(index1); % Add 1 if you want.
Or to get the bounding box(es):
props = regionprops(binaryImage, 'BoundingBox');
Be aware that the bounding box is half a pixel outside the actual white pixels.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by