i want to mark the highest point of any non-black pixel within the image to find the max point.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nurul Najmah
le 26 Avr 2015
Réponse apportée : jimmy
le 2 Jan 2020
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.
<<
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149492/image.png)
the last of my output will be like this.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149494/image.png)
>>
0 commentaires
Réponse acceptée
Mohammad Abouali
le 26 Avr 2015
Modifié(e) : Mohammad Abouali
le 26 Avr 2015
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 commentaires
Image Analyst
le 27 Avr 2015
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.
Plus de réponses (1)
jimmy
le 2 Jan 2020
i want to ask how i can sect the column which have maximum number of black pixel
0 commentaires
Voir également
Catégories
En savoir plus sur Get Started with Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!