How to find the position of the maximum values in an image?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sachin
am 12 Sep. 2014
Bearbeitet: Pierre Benoit
am 12 Sep. 2014
we find the max value of an image by max function but i does not know how to find the position of maximum value.
0 Kommentare
Akzeptierte Antwort
Pierre Benoit
am 12 Sep. 2014
Bearbeitet: Pierre Benoit
am 12 Sep. 2014
[max_value max_idx] = max(A);
The position is in the second argument, max_idx
doc max
Edit : Also, regarding your previous question : http://www.mathworks.com/matlabcentral/answers/154462-how-to-find-the-maximum-value-of-an-image-by-using-buit-in-function-in-matlab
You should try learning the basics of Matlab with this link , it will be easier than to ask every time you get stuck by something which is written in the documentation .
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!