Separating particular pixels based on RGB value
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to separate a group of pixels in an image which have RGB greater than [120 115 118 ] . How can I do it? The pixels having RGB values above the mentioned ones must appear in black color.How to do it? Thanks in advance.
0 Commenti
Risposta accettata
Walter Roberson
il 20 Mar 2011
locations = YourImage(:,:,1) > 120 & YourImage(:,:,2) > 115 & YourImage(:,:,3) > 118;
YourImage(repmat(locations,1,1,3)) = 0;
3 Commenti
Walter Roberson
il 20 Mar 2011
Yes, that should work if you are using an old version of Matlab. Matlab has accepted the extended version for several years now.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Filtering and Enhancement in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!