How do i determine the pixel coordinates of an image using RGB values?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Varun Subramaniam
el 10 de Dic. de 2019
Respondida: JESUS DAVID ARIZA ROYETH
el 10 de Dic. de 2019
For example: i'd like to get the coordinates of the pixels with R values from 230 to 250.
0 comentarios
Respuestas (1)
JESUS DAVID ARIZA ROYETH
el 10 de Dic. de 2019
image=imread('peppers.png');
R=image(:,:,1);%red chanel
[x,y]=find(and(R>=230,R<=250));%here coordinates
0 comentarios
Ver también
Categorías
Más información sobre Image Processing Toolbox 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!