フィルターのクリア

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

2 ビュー (過去 30 日間)
Murat Kocaman
Murat Kocaman 2018 年 9 月 4 日
コメント済み: Walter Roberson 2018 年 9 月 4 日
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 件のコメント
Walter Roberson
Walter Roberson 2018 年 9 月 4 日
Define "blue" for your purposes. Is (93, 138, 168) blue? It is for legal purposes -- it is "Air Force Blue".
Murat Kocaman
Murat Kocaman 2018 年 9 月 4 日
Yes I did. My problem is on marking. I couldn't mark them.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2018 年 9 月 4 日
編集済み: Walter Roberson 2018 年 9 月 4 日
[R, C] = find(~MaskIndicatingWhichPixelsAreBlue);
image(YourRGBImage);
hold on
markersize = 8;
scatter(C(:), R(:), markersize, 'r*');
hold off
  1 件のコメント
Walter Roberson
Walter Roberson 2018 年 9 月 4 日
I just added a small correction to mark the pixels that are not blue.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by