Borrar filtros
Borrar filtros

Coordinates of the brightest point of the first line

2 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Walter Roberson
Walter Roberson el 27 de Dic. de 2012
Editada: Walter Roberson el 27 de Dic. de 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 comentarios
Image Analyst
Image Analyst el 28 de Dic. de 2012
I think a histogram would be a better method for determining the gray level between the foreground and the background.
Walter Roberson
Walter Roberson el 28 de Dic. de 2012
greythresh() might be suitable.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by