please tell me the meaning of following code
Afficher commentaires plus anciens
darks = find(v <.2)';
lights = find(s < .05 & v > .85)';
h([darks lights])= -1;
disp(length(darks))
black = length(darks)/pixels;[x,y, z]=size(I);
white = length(lights)/pixels;
red = length(find((h >.9167 | h <=.083) & h~=-1))/pixels;
yellow=length(find(h >.083 & h<=.25))/pixels;
green=length(find(h > .25 & h<= .4167))/pixels;
cyan= length(find(h > .4167 & h<= .5833))/pixels;
blue=length(find(h > .5833 & h <= .75))/pixels;
magenta=length(find(h > .75 & h <= .9167))/pixels;
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 20 Juin 2014
0 votes
It's counting the number of pixels with those particular colors.
2 commentaires
Anamika baruah
le 21 Juin 2014
Image Analyst
le 21 Juin 2014
Modifié(e) : Image Analyst
le 21 Juin 2014
Yes, but it's normalized (by dividing by the number of pixels), so it's really an area fraction than a pure count.
Catégories
En savoir plus sur Image Arithmetic dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!