How would I detect gray/white pixels in a picture?

1 Ansicht (letzte 30 Tage)
Ali Almakhmari
Ali Almakhmari am 8 Aug. 2022
Beantwortet: Walter Roberson am 9 Aug. 2022
I am trying to write a function to detect white-like and gray-like pixels in a given colored picture. I am stuck on how to go about it. Any help is appreciated.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 9 Aug. 2022
Convert for HSV, check for "high" V (near 1) and "small" (near 0) S. You will need to decide on the exact boundaries, depending how "white like" or "gray like" you want to allow.

Weitere Antworten (1)

KSSV
KSSV am 8 Aug. 2022
REad about find. Gve the pixle value as zero and use find. This will give you the indices.
[y,x] = find(I==0) ; % I is gray image
  1 Kommentar
Ali Almakhmari
Ali Almakhmari am 8 Aug. 2022
But that would require me to manually identifiy the gray pixels and assign them to zero. Which is the thing I am trying to automate with this function.

Melden Sie sich an, um zu kommentieren.

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by