Coordinates of the brightest point of the first line

2 views (last 30 days)
Hello, how can I know the coordinates of the brightest point of the first line of my image?
Can someone help me with this algorithm?
Thank you,
Thiago Tenório

Accepted Answer

Walter Roberson
Walter Roberson on 27 Dec 2012
Edited: Walter Roberson on 27 Dec 2012
[minval, minidx] = max(YourImage(:,1));
or
[minval, minidx] = max(YourImage(1,:));
Oh wait -- is this an RGB image or grayscale? If it is RGB then how do you want to define "brightest" ?
  6 Comments
Image Analyst
Image Analyst on 28 Dec 2012
I think a histogram would be a better method for determining the gray level between the foreground and the background.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!