Unable to find the location of the pixel with the minimum gray level

1 view (last 30 days)
I want to find the location of the pixel in the image which has the minimum gray level. I tried the code below. But it gives me the coordinates of more than one pixel. What I need is to find the location of one pixel that has the minimum gray level. Any suggestion would be appreciated.
I=imread('FP00000f002b04u_01.png')
minValue = min(I(:))
[row, column] = find(I == minValue);

Accepted Answer

Yongjian Feng
Yongjian Feng on 28 Jul 2021
A quick guess. Maybe there are more than one minimum? Then you need to decide. Maybe anyone is good enough?
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!