Borrar filtros
Borrar filtros

How could I mark other than Blue Pixels in this image?

2 visualizaciones (últimos 30 días)
Hello,
I would like to mark other than blue pixels.
Later I will compare these pixels with the other image pixel values. Is there anyone helping on this issue?
  2 comentarios
Walter Roberson
Walter Roberson el 4 de Sept. de 2018
Define "blue" for your purposes. Is (93, 138, 168) blue? It is for legal purposes -- it is "Air Force Blue".
Murat Kocaman
Murat Kocaman el 4 de Sept. de 2018
Yes I did. My problem is on marking. I couldn't mark them.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Sept. de 2018
Editada: Walter Roberson el 4 de Sept. de 2018
[R, C] = find(~MaskIndicatingWhichPixelsAreBlue);
image(YourRGBImage);
hold on
markersize = 8;
scatter(C(:), R(:), markersize, 'r*');
hold off
  1 comentario
Walter Roberson
Walter Roberson el 4 de Sept. de 2018
I just added a small correction to mark the pixels that are not blue.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by