Borrar filtros
Borrar filtros

Color differentation in the image

3 visualizaciones (últimos 30 días)
hamed abdulaziz
hamed abdulaziz el 15 de Feb. de 2014
Movida: DGM el 30 de Dic. de 2023
Hi All,
Is there any code to find differentation in the image?

Respuesta aceptada

Image Analyst
Image Analyst el 15 de Feb. de 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 comentarios
Image Analyst
Image Analyst el 17 de Feb. de 2014
Movida: DGM el 30 de Dic. de 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 el 17 de Feb. de 2014
Movida: DGM el 30 de Dic. de 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(:));

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Agriculture en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by