The code attached is all about skin tone segmentation in 3 integrated color spaces, the problem is the code produces no segmented image as o/p and I can not find the problem yet. Anyhelp please

1 Ansicht (letzte 30 Tage)
The code attached is all about skin tone segmentation in 3 integrated color spaces, the problem is the code produces no segmented image as o/p and I can not find the problem yet. Anyhelp please
  1 Kommentar
Ahmed El Sheikh
Ahmed El Sheikh am 26 Sep. 2016
Thresholds are used in a paper and its positive detection rates are 90+% And even when i used r>50 as my threshold it also showed nothing. Is my approach correct syntax & logical wise?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 26 Sep. 2016
You chose bad thresholds and you need to adjust them. Try the Color Thresholder on the Apps tab of the tool ribbon.
  5 Kommentare
Image Analyst
Image Analyst am 29 Sep. 2016
The image might be floating point. Try this:
imshow(uint8(rgb));
or
image8 = uint8(255 * mat2gray(rgb));
imshow(image8);

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by