In an image to set reference coordinate and get coordinates of color points .
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Navodita Das
el 24 de Mzo. de 2020
Comentada: Navodita Das
el 24 de Mzo. de 2020
Hi everyone,
I have an image in which i want MATLAB to detect black color point and set that point as reference x-y coordinates.
After that MATLAB to detect other color points(RGB) and get their x-y coordinates w.r.t. reference coordinate.
How can I do it?
0 comentarios
Respuesta aceptada
KSSV
el 24 de Mzo. de 2020
If I is your matrix of image ..use
[y,x] = find(I==val) ;
where val is your pixel value you want.
If I is m*n*3 RGB image.
R = I(:,:,1) ;
G = I(:,:,2) ;
B = I(:,:,3) ;
3 comentarios
Más respuestas (0)
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!