Effacer les filtres
Effacer les filtres

Color differentation in the image

3 vues (au cours des 30 derniers jours)
hamed abdulaziz
hamed abdulaziz le 15 Fév 2014
Déplacé(e) : DGM le 30 Déc 2023
Hi All,
Is there any code to find differentation in the image?

Réponse acceptée

Image Analyst
Image Analyst le 15 Fév 2014
What do you mean by differentiation? I have several color segmentation demos in my File Exchange if that's what you mean: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
  26 commentaires
Image Analyst
Image Analyst le 17 Fév 2014
Déplacé(e) : DGM le 30 Déc 2023
Looks about right for as far as you got. You just need to complete it to find the variation using code I gave you in my answer:
pixelsInsideMask = deltaE(mask); % 1D vector of pixels only within mask.
counts = hist(pixelsInsideMask, numberOfBins);
meanDeltaE = mean(pixelsInsideMask(:));
SDDeltaE = std(pixelsInsideMask(:));
hamed abdulaziz
hamed abdulaziz le 17 Fév 2014
Déplacé(e) : DGM le 30 Déc 2023
Please did you check (MY_DELTA_E) CODE wher do I add your code?could you complet it and check it on the above images,thanks
pixelsInsideMask = deltaE(mask); % 1D vector of pixels only within mask.
counts = hist(pixelsInsideMask, numberOfBins);
meanDeltaE = mean(pixelsInsideMask(:));
SDDeltaE = std(pixelsInsideMask(:));

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Agriculture dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by