Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

hi. im trying to turn these explanation into codes but i cant, can someone help me please?

1 Ansicht (letzte 30 Tage)
nkh
nkh am 24 Mai 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Skin color is the most vital feature in human face. Since the
emotions are to identified from the non-skin regions, The
main goal of this work is to extract the non-skin regions like
mouth and eyes from the image. It requires an appropriate
color space for segmentation. RGB color spaceImage Segmentation is one of the
most used color spaces for processing. By applying
thresholding technique to the RGB image the skin and
non-skin pixels are easily discriminated. The threshold values
applied are given below and the non skin parts are correctly
identified and shown in Fig 9
R > 95 && G > 40 && B > 20
max(R,G,B) - min(R,G,B) > 15
|R-G| > 15 && R > G && R > B
  2 Kommentare
Stephen23
Stephen23 am 26 Okt. 2019
Original question (from Google Cache):
hi. im trying to turn these explanation into codes but i cant, can someone help me please?
Skin color is the most vital feature in human face. Since the emotions are to identified from the non-skin regions, The main goal of this work is to extract the non-skin regions like mouth and eyes from the image. It requires an appropriate color space for segmentation. RGB color spaceImage Segmentation is one of the most used color spaces for processing. By applying thresholding technique to the RGB image the skin and non-skin pixels are easily discriminated. The threshold values applied are given below and the non skin parts are correctly identified and shown in Fig 9
R > 95 && G > 40 && B > 20
max(R,G,B) - min(R,G,B) > 15
|R-G| > 15 && R > G && R > B

Antworten (1)

Raj
Raj am 24 Mai 2019

Community Treasure Hunt

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

Start Hunting!

Translated by