Scan image row-wise and store index of minimum grey values.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
SATISH SONWANE
el 14 de Nov. de 2022
Comentada: SATISH SONWANE
el 14 de Nov. de 2022
Hi, I want to scan an image row-wise and store the index value of the concerned pixels (Ones with lowest grey values) in a matrix (note:There can be more than one pixel with such values). Currently I can scan a row at a time and it returns index of the first pixel which has lowest intensity value. Image size is 478 by 680. AND I am getting wrong index values.
I = imread('5.bmp');
I = im2gray(I);
imshow (I);
i=1:1:478;
[min_intensity,idx]= min(I(i,:));
idx = idx;
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!