Get pixels in a region
이전 댓글 표시
Hi,
I'm looking to get the locations of the first white pixel (top left) of each region and the last white pixel in each region (bottom right) of the image supplied. I do not need every white pixel in the region either, just the beginning and end points. I need this to determine the "entry and exit points" of the regions in the image so it can later be compared against a similar image.
If anyone has any suggestions of how this would be done, I'd really appreciate it. I've tried using find() but I only ever manage to get the very first white pixel and the very last in the image.

Thanks.
댓글 수: 2
Walter Roberson
2016년 3월 7일
Your question is ambiguous. Do you need the leftmost white pixel of the top row that has at least one white pixel, or do you need the topmost white pixel of the first column that has at least one white pixel? Likewise, do you need the rightmost white pixel of the bottom row that has at least one white pixel, or do you need the bottommost white pixel of the last column that has at least one white pixel?
Your image has slanted lines so it does make a difference.
Niamh Shiel
2016년 3월 8일
답변 (1개)
Image Analyst
2016년 3월 8일
From your clarification, it sounds like you could do
[rows, columns] = find(binaryImage);
leftColumn = min(columns);
rightColumn = max(columns);
댓글 수: 4
Niamh Shiel
2016년 3월 8일
편집: Niamh Shiel
2016년 3월 8일
Image Analyst
2016년 3월 8일
Try it. It will give you the same left and right columns, except that yours will be shifted by half a pixel so that it lies not on pixels but in between them. See my discussion here: http://www.mathworks.com/matlabcentral/answers/271694#comment_348710
Niamh Shiel
2016년 3월 8일
Image Analyst
2016년 3월 8일
Sure, do whatever you need to to get the right answer.
카테고리
도움말 센터 및 File Exchange에서 Video Formats and Interfaces에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!