Color differentation in the image

1 回表示 (過去 30 日間)
hamed abdulaziz
hamed abdulaziz 2014 年 2 月 15 日
移動済み: DGM 2023 年 12 月 30 日
Hi All,
Is there any code to find differentation in the image?

採用された回答

Image Analyst
Image Analyst 2014 年 2 月 15 日
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 件のコメント
Image Analyst
Image Analyst 2014 年 2 月 17 日
移動済み: DGM 2023 年 12 月 30 日
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 2014 年 2 月 17 日
移動済み: DGM 2023 年 12 月 30 日
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(:));

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeComputer Vision with Simulink についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by