Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
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 Kommentare
Walter Roberson
Walter Roberson am 4 Sep. 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 am 4 Sep. 2018
Yes I did. My problem is on marking. I couldn't mark them.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by