非常に薄いピンクから濃い紫までの範囲のカラー スケールにピクセル (RGB) が含まれているかどうかを確認する必要があります。RGB スキームを使用すると、次のようなチェックを行うことができます。
IF image [x, y] [R]> threshold and image [x, y] [G]> threshold image [x, y] [B]> threshold and \
image [x, y] [R] <threshold and image [x, y] [G] < threshold image [x, y] [B] <threshold THAN ...
?
そうでない場合は、ピクセルを HSV にするオプションも利用できます。
ありがとう!