i want to mark the highest point of any non-black pixel within the image to find the max point.
조회 수: 1 (최근 30일)
이전 댓글 표시
here is my image. I had ask before at https://www.mathworks.com/matlabcentral/answers/213198-i-want-to-mark-only-the-highest-middle-point-of-binary-image-but-it-show-the-min-point-too but i might ask in not clear question.
<<
the last of my output will be like this.
>>
댓글 수: 0
채택된 답변
Mohammad Abouali
2015년 4월 26일
편집: Mohammad Abouali
2015년 4월 26일
row=find(sum(BWImage,2)==0,1,'last')+1;
col=find(BWImage(row,:)~=0);
row=row*ones(size(col));
Points=[row(:) col(:)];
Points contains the row and column of the point or points at the top.
댓글 수: 5
Image Analyst
2015년 4월 27일
As would have the code in your duplicate question. Anyway, please vote for his answer and mark it as Accepted so he can get "reputation points" for it.
추가 답변 (1개)
jimmy
2020년 1월 2일
i want to ask how i can sect the column which have maximum number of black pixel
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!