Procedia Computer Science

Size: px
Start display at page:

Download "Procedia Computer Science"

Transcription

1 Available online at Procedia Computer Science 00 (2011) Procedia Computer Science WCIT-2011 Skin Detection Using Gaussian Mixture Models in YCbCr and Hsv Color Space Khammari Mohammed a *, Bencheriet Chemesse- Ennehar b, Tlili Yamina c a LRI, Université Badji Mokhtar, Kh_mouhamed@yahoo.fr, Annaba, Algeria b LAIG, Université 8 Mai 45 de Guelma, cbencheriet@yahoo.fr, Guelma, Algeria c LRI, Université Badji Mokhtar, guiyam@yahoo.fr, Annaba, Algeria Abstract Many human-machine interaction systems such as face detection and hands tracking used skin detection as the main step in the system. Seen the importance of skin detection problem in the quasi-totality of faces detection and faces recognition systems several studies were proposed these last years but a reliable solution (giving a high rate of detection and a low rate of false alarms) and rapids (with a short processing time with any size of images or scene to analyze) is always looked for. In this paper we propose the use of a Gaussian mixture model, built from three skin colors between the most popular in the world (black, white, brown), that characteristics (of Gaussian mixture model) were fixed after a careful ethnic study made by our care. Knowing the importance and influence of the colors space representation on the quality of the obtained results we have and in comparative title created the Gaussian mixture model in two color spaces chosen between the most used: YCbCr and HSV color space. Tests, made on the international faces databases BAO and CALTECH, showed that the best rates of skin detection were obtained by the Gaussian mixture under the YCbCr color space. Keywords: skin detection, segmentation, skin color, Mixture Gaussian model, color space. 1. Introduction Recently, many systems have been developed to face detection. Generally in the color images these systems are based on the search of skin color that will allow a minimization in the faces space search where research is restricted to segments of the detected skins. In the literature several methods have been proposed to discriminating between skin and non-skin pixels. These methods can be divided in two categories: parametric and nonparametric one. The parametric method used a model defining the distribution of skin color in a given color space. Nonparametric methods estimate the skin color histogram of learning database without the prior creation of a skin model [1]. Much research has been done on skin detection [2][3][4][5][6] since the results obtained are encouraging, around 90% but the remaining 10% is still causing problems in the steps below. So to ameliorate these results and in comparative title we propose in this paper the creation of the Gaussian mixture model in two color spaces chosen between the most used: YCbCr and HSV [7][8]. Tests made on the international faces databases BAO and CALTECH [13][14]. The paper is divided as follows: an overall introduction of skin color and the state of the art about skin detection methods in Section 1. The section 2 reserved to skin color and ethnic study. The different steps of adopted method address: Kh_mouhamed@yahoo.fr

2 will be developed in Section 3, follow by results and their interpretation in section 4, and terminate with a conclusion in section Skin color and ethnic studies The skin color human is widely used and proved that is an efficient feature in many applications, including, face detection and hands tracking. Although skin color can vary widely, recent research shows that the main difference come from intensity and not from the chrominance [9]. Unfortunately, the earliest attempts of human species classifications based on anatomical or cultural practices continue today to increase racist theories. According our careful ethnic study we concluded that: 30% of the world population has a black skin color, 30% of the world population has a white skin color and 40% of the world population has brown skin color [10]. These calculations will be used in Gaussian mixture model. 3. Detection steps of skin color The skin detection process must begin by converting the color image to the YC b C r or HSV color spaces after this we will apply the Gaussian mixture model, we'll get a grayscale image called generally likelihood image (where each gray scale represent the probabilities of pixel-skin membership), next this image will be binarized by dynamic thresholding given a skin binary image. The process of skin detection is summarized in figure Color space Conversion Skin detection depends on the chosen color space. So to make the skin color segmentation, it is necessary to convert the image into the appropriate color space [7] [8]: RGB to YCbCr YC b C r is often used in image compression; luminance (also called Luma) is separated from the color presented by the Y value witch calculated by a weighted sum of the R, G and B components. Y = 0,299 * R + 0,587 * G + 0,114 * B (1) The other two components of this color space represent the color information and are calculated by the following formulas: Cb = 0,169 * R 0,441 * G + 0,5 * B ; Cr = 0,5 * R 0,418 * G 0,081 * B (1) RGB to HSV HSV is a representation model called natural because of its resembling to the color physiological perception of human eye. It consists in breaking the color according to physiological criteria where: The hue (H): corresponding to the color perception The saturation (S): describing the purity of color, that is to say his character alive or dull The value (V): indicating the amount of light color, that is to say it s light or dark if B > G,

3 3.2. Segmentation by Gaussian mixture model, (2) For segmentation by Gaussian mixture model, we must first create the Gaussian model for each color (black, brown and white) Model Creation The creation of the model begins with the preparation of skin samples color from multiple color images. Original image Converting image to the chosen color space Likelihood Image Application of Gaussian Mixture Dynamic thresholding Binary image Fig. 1. Skin detection process Fig 2. A set of samples from hands, forehead, neck, plays etc. The following steps summarize the creation of the model: 1. Loading images of the skin database (Fig 2). 2. Transformation from RGB to YCbCr or HSV color space. 3. Averaging: m = E {X} where X = (C1 C2) T. (3) 4. Calculation of covariance matrix: C = E {(X - m) (X - m) T } (4) 5. Using the values of the mean and covariance, the skin color model can be adapted to a Gaussian model [11]: P(x) = exp [ (X-m) T C -1 (X-m) ] (5) Where C1 = Cb or H, C2 = Cr or S, m is the average, C is the covariance matrix The following figure illustrates the Gaussian models of skin in space YC b C r and HSV:

4 (a) Fig 3: (a) Gaussian model of skin in space YC bc r ; (b) in the HSV space. (b) Applying the model With this Gaussian model, we can now obtain the probability of belonging to the skin for any pixel in an image. Given a pixel with a color value (C1, C2), the probability that this pixel is a skin, can then is calculated as follows [11]: Probability = P(C1,C2) = exp [ (X-m)T C-1 (X-m) ] (6) In this case we have three probabilities for each pixel, the first for the Gaussian model of black skin (p_ black), the second for the Gaussian model of brown skin (p_ brown), and the third for the Gaussian white skin (p_ white) : P (x) = 0.3 * p_ black * p_ brown * p_ white (7) Therefore, this model can transform a color image into a grayscale image where the value of each pixel corresponds to its probability of belonging to the skin Thresholding With a dynamic thresholding (where the threshold is the mean of the grayscale image), images in gray level can then be converted into binary images showing areas of skin and non skin regions. Since the regions of skin are brighter than other parts of the image, these regions can be segmented by thresholding the rest. It then produces a binary image on which the "1" represent the skin color pixels and "0" for other pixels. (a) (b) (c) Fig.4: Application of Gaussian mixture (a) Original image (b) Skin likelihood image (c) Skin binary image

5 4. Results and interpretations Khammari Mohammed / Procedia Computer Science 00 (2011) Skin color detection may be designated with several color space, why we chose to make a comparison between detection with YCbCr and HSV spaces using Gaussian mixture model. Performance is expressed by two values [12]: (8) (9) 4.1. Results on BAO Image database: BAO [13] is a new database made by a Korean team under different conditions designed especially for detection tests divided into two groups of images; the first group consists of 140 images of one face and the 2nd group of 221 images with several faces. Group 1: Number of images = 149 Number of faces per image = 1 Detection method Color Space Detection rate False detection rate Table 1. Results of skin detection with basic BAO YC bc r 95,97 % 39,59 % Gaussian mixture Group 2: Number of images = 221 Number of faces per image = variable (between 1 and 32) Table 2. Results of skin detection with basic BAO HSV % % Detection method Color Space Detection rate False detection rate YC bc r 97,28 % 60,18 % Gaussian mixture HSV % % From the tests results performed on BAO database and present in Table 1 and 2: we obtained a detection rate of 96.63% with YCbCr and 95.21% with HSV space detection rates which we consider as significant and similar in both color spaces. We can conclude that we have increased the detection rate Results on CALTECH Image database CALTECH [14] designed by Markus Weber an institute Technology of California; it consists of 450 images of one face with backgrounds and complex lighting conditions. Number of images = 450 Number of faces per image = 1 Table 3. Result of skin detection with basic CALTECH Detection method Gaussian mixture model Color Space YC bc r HSV Detection rate 85,77 % % False detection rate 60,22 % %

6 From the results presented in Table 3, performed on CALTECH image database we obtained a detection rate of 85.77% with YCbCr which exceeds detection rate of HSV color space %. We can conclude that the YCbCr space is much better than the HSV color space in skin color detection using our mixture Gaussian model. Unfortunately it is clear that in our results we obtained a very high false detection rates; we can explain this by changing the lighting, the complexity of images background used in the tests and the richness of learning skin database using in the creation of Gaussian model. 5. Conclusion Skin color detection in color images is a preliminary step in most applications such as video conferencing, video indexing and especially video surveillance, the performance of these applications depends directly of the results obtained in this step. In this paper we presented a comparative study demonstrating the skin color detection using Gaussian mixture model applied on two different color spaces YCrCb and Hsv. From the obtained results the best color space is that which gives a high detection rate, the better in our case is YCbCr color space, which will be used in skin detection for several systems such as face detection, tracking hands or video surveillance. 6. References 1. V.Vezhnevets, V.Sazonov, and A.Andreeva. A Survey on Pixel-Based Skin Color Detection Techniques. In Proc. 13th International Conference on the Computer Graphics and Vision, pages 85-92, Moscow, Russian, September J.Zhang, Q.Zhang, and J.Hu. RGB Color Centroids Segmentation (CCS) for Face Detection. ICGST-GVIP Journal, ISSN X, Volume (9), Issue (II), April J.Yang, Z.Fu, T.Tan and W.Hu. Adaptive Skin Detection using Multiple Cues. /icip04/defevent/papers/cr1716.pdf. Mars H.Almohair, A.Ramli, A.Elsadig, J. Hashim. Skin Detection in Luminance Images using Threshold Technique. International Journal of The Computer, the Internet and Management.Vol. 15#1 pp April A. Conci, E Nunes, J. J. Pantrigo, A. Sanchez, Comparing color and texture-based algorithms for human skin detection. Computer Interaction. vol.5 pp , H.Yu. Face Recognition for Mobile Phone Using Eigenfaces. / Hao.pdf. Mars PHUNG, S. L., L.BOUZERDOUM, and D.CHAI."A novel skin color model in ycbcr color space and its application to human face detection". In IEEE International Conference on Image Processing.vol. 1, , (ICIP 2002). 8. V.Nabiyev, and A.Günay. TOWARDS A BIOMETRIC PURPOSE IMAGE FILTER ACCORDING TO SKIN DETECTION. The Second International Conference Problems of Cybernetics and Informatics, Baku, Azerbaijan. Section #2. September H.HUYNH-HUU, J.MEUNIER, J.SEQUEIRA, M.DANIEL. La détection et le suivi de régions d intérêt pour la vidéosurveillance de la prise de médicaments. Mars S.J.Gould. Des races humaines suivant la couleur de la peau. Mars M.Sedláček. Evaluation of RGB and HSV models in Human Faces Detection /web/Sedlacek-Marian/. Mars A.A.R.Nusirwan, K.Wei and J.See. RGB-H-CbCr Skin Colour Model for Human Face Detection. rgb.pdf. Mars Frischholz R. Bao face database at the face detection homepage. Available: Markus Weber an institute Technology of California,

Image enhancement for face recognition using color segmentation and Edge detection algorithm

Image enhancement for face recognition using color segmentation and Edge detection algorithm Image enhancement for face recognition using color segmentation and Edge detection algorithm 1 Dr. K Perumal and 2 N Saravana Perumal 1 Computer Centre, Madurai Kamaraj University, Madurai-625021, Tamilnadu,

More information

International Journal of Emerging Technologies in Computational and Applied Sciences (IJETCAS) Human Face Detection By YCbCr Technique

International Journal of Emerging Technologies in Computational and Applied Sciences (IJETCAS)   Human Face Detection By YCbCr Technique International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Emerging Technologies in Computational

More information

Face Detection Using Color Based Segmentation and Morphological Processing A Case Study

Face Detection Using Color Based Segmentation and Morphological Processing A Case Study Face Detection Using Color Based Segmentation and Morphological Processing A Case Study Dr. Arti Khaparde*, Sowmya Reddy.Y Swetha Ravipudi *Professor of ECE, Bharath Institute of Science and Technology

More information

Robust color segmentation algorithms in illumination variation conditions

Robust color segmentation algorithms in illumination variation conditions 286 CHINESE OPTICS LETTERS / Vol. 8, No. / March 10, 2010 Robust color segmentation algorithms in illumination variation conditions Jinhui Lan ( ) and Kai Shen ( Department of Measurement and Control Technologies,

More information

Face Detection Using a Dual Cross-Validation of Chrominance/Luminance Channel Decisions and Decorrelation of the Color Space

Face Detection Using a Dual Cross-Validation of Chrominance/Luminance Channel Decisions and Decorrelation of the Color Space Face Detection Using a Dual Cross-Validation of Chrominance/Luminance Channel Decisions and Decorrelation of the Color Space VICTOR-EMIL NEAGOE, MIHAI NEGHINĂ Depart. Electronics, Telecommunications &

More information

A Novel Technique to Detect Face Skin Regions using YC b C r Color Model

A Novel Technique to Detect Face Skin Regions using YC b C r Color Model A Novel Technique to Detect Face Skin Regions using YC b C r Color Model M.Lakshmipriya 1, K.Krishnaveni 2 1 M.Phil Scholar, Department of Computer Science, S.R.N.M.College, Tamil Nadu, India 2 Associate

More information

Skin Detection using Support Vectors

Skin Detection using Support Vectors Term Project Digital Image Processing Skin Detection using Support Vectors Group Members: Ankit Kumar Shrivastava : Y3051 Ankit Misra : Y3053 Gaurav Teltia : Y3120 Kuldeep Singh : Y3155 Nitin : Y3206 Saurabh

More information

Real-Time Skin Detection and Tracking based on FPGA

Real-Time Skin Detection and Tracking based on FPGA Real-Time Skin Detection and Tracking based on FPGA Saranya.S 1, 1 Student,M.E, Applied electronics, Kingston Engineering College, Vellore Keerthikumar.D.N 2 2 Assistant Professor, Kingston Engineering

More information

Color Content Based Image Classification

Color Content Based Image Classification Color Content Based Image Classification Szabolcs Sergyán Budapest Tech sergyan.szabolcs@nik.bmf.hu Abstract: In content based image retrieval systems the most efficient and simple searches are the color

More information

Content based Image Retrieval Using Multichannel Feature Extraction Techniques

Content based Image Retrieval Using Multichannel Feature Extraction Techniques ISSN 2395-1621 Content based Image Retrieval Using Multichannel Feature Extraction Techniques #1 Pooja P. Patil1, #2 Prof. B.H. Thombare 1 patilpoojapandit@gmail.com #1 M.E. Student, Computer Engineering

More information

Short Survey on Static Hand Gesture Recognition

Short Survey on Static Hand Gesture Recognition Short Survey on Static Hand Gesture Recognition Huu-Hung Huynh University of Science and Technology The University of Danang, Vietnam Duc-Hoang Vo University of Science and Technology The University of

More information

COMBINING NEURAL NETWORKS FOR SKIN DETECTION

COMBINING NEURAL NETWORKS FOR SKIN DETECTION COMBINING NEURAL NETWORKS FOR SKIN DETECTION Chelsia Amy Doukim 1, Jamal Ahmad Dargham 1, Ali Chekima 1 and Sigeru Omatu 2 1 School of Engineering and Information Technology, Universiti Malaysia Sabah,

More information

COLOR IMAGE SEGMENTATION IN RGB USING VECTOR ANGLE AND ABSOLUTE DIFFERENCE MEASURES

COLOR IMAGE SEGMENTATION IN RGB USING VECTOR ANGLE AND ABSOLUTE DIFFERENCE MEASURES COLOR IMAGE SEGMENTATION IN RGB USING VECTOR ANGLE AND ABSOLUTE DIFFERENCE MEASURES Sanmati S. Kamath and Joel R. Jackson Georgia Institute of Technology 85, 5th Street NW, Technology Square Research Building,

More information

Dynamic skin detection in color images for sign language recognition

Dynamic skin detection in color images for sign language recognition Dynamic skin detection in color images for sign language recognition Michal Kawulok Institute of Computer Science, Silesian University of Technology, Akademicka 16, 44-100 Gliwice, Poland michal.kawulok@polsl.pl

More information

FPGA Implementation of Skin Tone Detection Accelerator for Face Detection

FPGA Implementation of Skin Tone Detection Accelerator for Face Detection Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 3, Number 9 (2013), pp. 1147-1152 Research India Publications http://www.ripublication.com/aeee.htm FPGA Implementation of Skin Tone

More information

Features analysis for tracking players in water polo

Features analysis for tracking players in water polo Features analysis for tracking players in water polo VLADIMIR PLEŠTINA 1, VLADAN PAPIĆ 2 Department of polytechnics 1, Department of electronics 2 University of Split Teslina 12, Split CROATIA vladimir.plestina@pmfst.hr,

More information

A Comparison of Color Models for Color Face Segmentation

A Comparison of Color Models for Color Face Segmentation Available online at www.sciencedirect.com Procedia Technology 7 ( 2013 ) 134 141 A Comparison of Color Models for Color Face Segmentation Manuel C. Sanchez-Cuevas, Ruth M. Aguilar-Ponce, J. Luis Tecpanecatl-Xihuitl

More information

NOVEL PCA-BASED COLOR-TO-GRAY IMAGE CONVERSION. Ja-Won Seo and Seong Dae Kim

NOVEL PCA-BASED COLOR-TO-GRAY IMAGE CONVERSION. Ja-Won Seo and Seong Dae Kim NOVEL PCA-BASED COLOR-TO-GRAY IMAGE CONVERSION Ja-Won Seo and Seong Dae Kim Korea Advanced Institute of Science and Technology (KAIST) Department of Electrical Engineering 21 Daehak-ro, Yuseong-gu, Daejeon

More information

A New Algorithm for Shape Detection

A New Algorithm for Shape Detection IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 3, Ver. I (May.-June. 2017), PP 71-76 www.iosrjournals.org A New Algorithm for Shape Detection Hewa

More information

Robbery Detection Camera

Robbery Detection Camera Robbery Detection Camera Vincenzo Caglioti Simone Gasparini Giacomo Boracchi Pierluigi Taddei Alessandro Giusti Camera and DSP 2 Camera used VGA camera (640x480) [Y, Cb, Cr] color coding, chroma interlaced

More information

Available online at ScienceDirect. Procedia Computer Science 89 (2016 )

Available online at  ScienceDirect. Procedia Computer Science 89 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 89 (2016 ) 856 863 Twelfth International Multi-Conference on Information Processing-2016 (IMCIP-2016) Human Skin Region

More information

COLOR AND SHAPE BASED IMAGE RETRIEVAL

COLOR AND SHAPE BASED IMAGE RETRIEVAL International Journal of Computer Science Engineering and Information Technology Research (IJCSEITR) ISSN 2249-6831 Vol.2, Issue 4, Dec 2012 39-44 TJPRC Pvt. Ltd. COLOR AND SHAPE BASED IMAGE RETRIEVAL

More information

Analysis of Image and Video Using Color, Texture and Shape Features for Object Identification

Analysis of Image and Video Using Color, Texture and Shape Features for Object Identification IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 16, Issue 6, Ver. VI (Nov Dec. 2014), PP 29-33 Analysis of Image and Video Using Color, Texture and Shape Features

More information

Skin Color Transfer. Introduction. Other-Race Effect. This work

Skin Color Transfer. Introduction. Other-Race Effect. This work Skin Color Transfer This work Introduction Investigates the importance of facial skin color for race differentiation Explore the potential information for other-race race effect Basic Idea Match the average

More information

Color Local Texture Features Based Face Recognition

Color Local Texture Features Based Face Recognition Color Local Texture Features Based Face Recognition Priyanka V. Bankar Department of Electronics and Communication Engineering SKN Sinhgad College of Engineering, Korti, Pandharpur, Maharashtra, India

More information

SHADOW DETECTION AND REMOVAL FROM SATELLITE CAPTURE IMAGES USING SUCCESSIVE THRESHOLDING ALGORITHM

SHADOW DETECTION AND REMOVAL FROM SATELLITE CAPTURE IMAGES USING SUCCESSIVE THRESHOLDING ALGORITHM International Journal of Computer Engineering & Technology (IJCET) Volume 8, Issue 5, Sep-Oct 2017, pp. 120 125, Article ID: IJCET_08_05_013 Available online at http://www.iaeme.com/ijcet/issues.asp?jtype=ijcet&vtype=8&itype=5

More information

FIRE RECOGNITION USING RGB AND YCBCR COLOR SPACE

FIRE RECOGNITION USING RGB AND YCBCR COLOR SPACE FIRE RECOGNITION USING RGB AND YCBCR COLOR SPACE Norsyahirah Izzati binti Zaidi, Nor Anis Aneza binti Lokman, Mohd Razali bin Daud, Hendriyawan Achmad and Khor Ai Chia Universiti Malaysia Pahang, Robotics

More information

Digital Image Processing

Digital Image Processing Digital Image Processing 7. Color Transforms 15110191 Keuyhong Cho Non-linear Color Space Reflect human eye s characters 1) Use uniform color space 2) Set distance of color space has same ratio difference

More information

Fast Face Detection Assisted with Skin Color Detection

Fast Face Detection Assisted with Skin Color Detection IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 18, Issue 4, Ver. II (Jul.-Aug. 2016), PP 70-76 www.iosrjournals.org Fast Face Detection Assisted with Skin Color

More information

Human Skin Detection Using RGB, HSV and YCbCr Color Models

Human Skin Detection Using RGB, HSV and YCbCr Color Models Human Skin Detection Using RGB, HSV and YCbCr Color Models S. Kolkur 1, D. Kalbande 2, P. Shimpi 2, C. Bapat 2, and J. Jatakia 2 1 Department of Computer Engineering, Thadomal Shahani Engineering College,

More information

A Method of Face Detection Based On Improved YCBCR Skin Color Model Fan Jihui1, a, Wang Hongxing2, b

A Method of Face Detection Based On Improved YCBCR Skin Color Model Fan Jihui1, a, Wang Hongxing2, b 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) A Method of Face Detection Based On Improved YCBCR Sin Color Model Fan Jihui1, a, Wang Hongxing2, b 1 School

More information

Image Based Feature Extraction Technique For Multiple Face Detection and Recognition in Color Images

Image Based Feature Extraction Technique For Multiple Face Detection and Recognition in Color Images Image Based Feature Extraction Technique For Multiple Face Detection and Recognition in Color Images 1 Anusha Nandigam, 2 A.N. Lakshmipathi 1 Dept. of CSE, Sir C R Reddy College of Engineering, Eluru,

More information

A NOVEL APPROACH TO ACCESS CONTROL BASED ON FACE RECOGNITION

A NOVEL APPROACH TO ACCESS CONTROL BASED ON FACE RECOGNITION A NOVEL APPROACH TO ACCESS CONTROL BASED ON FACE RECOGNITION A. Hadid, M. Heikkilä, T. Ahonen, and M. Pietikäinen Machine Vision Group Infotech Oulu and Department of Electrical and Information Engineering

More information

Hybrid Face Detection System using Combination of Viola - Jones Method and Skin Detection

Hybrid Face Detection System using Combination of Viola - Jones Method and Skin Detection Hybrid Face Detection System using Combination of Viola - Jones Method and Skin Detection Amr El Maghraby Mahmoud Abdalla Othman Enany Mohamed Y. El Nahas Ph.D Student at Zagazig Univ. Prof. at Zagazig

More information

Segmentation of Distinct Homogeneous Color Regions in Images

Segmentation of Distinct Homogeneous Color Regions in Images Segmentation of Distinct Homogeneous Color Regions in Images Daniel Mohr and Gabriel Zachmann Department of Computer Science, Clausthal University, Germany, {mohr, zach}@in.tu-clausthal.de Abstract. In

More information

An Efficient Human Body Contour Extraction Method for Mobile Apps

An Efficient Human Body Contour Extraction Method for Mobile Apps An Efficient Human Body Contour Extraction Method for Mobile Apps Li Wang 1, Tao Ruan Wan 2, Wen Tang 3, Yao lin Zhu 1, and Tong Wu 1 1 College of Electronic and Information, Xian Polytechnic University,

More information

Document Image Binarization Using Post Processing Method

Document Image Binarization Using Post Processing Method Document Image Binarization Using Post Processing Method E. Balamurugan Department of Computer Applications Sathyamangalam, Tamilnadu, India E-mail: rethinbs@gmail.com K. Sangeetha Department of Computer

More information

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2 International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 015) An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng

More information

An Integration of Face detection and Tracking for Video As Well As Images

An Integration of Face detection and Tracking for Video As Well As Images An Integration of Face detection and Tracking for Video As Well As Images Manish Trivedi 1 Ruchi Chaurasia 2 Abstract- The objective of this paper is to evaluate various face detection and recognition

More information

Color-based Face Detection using Combination of Modified Local Binary Patterns and embedded Hidden Markov Models

Color-based Face Detection using Combination of Modified Local Binary Patterns and embedded Hidden Markov Models SICE-ICASE International Joint Conference 2006 Oct. 8-2, 2006 in Bexco, Busan, Korea Color-based Face Detection using Combination of Modified Local Binary Patterns and embedded Hidden Markov Models Phuong-Trinh

More information

Region-based Segmentation

Region-based Segmentation Region-based Segmentation Image Segmentation Group similar components (such as, pixels in an image, image frames in a video) to obtain a compact representation. Applications: Finding tumors, veins, etc.

More information

Real Time Face Detection Based on skin tone detector

Real Time Face Detection Based on skin tone detector IJCSNS International Journal of Computer Science and Network Security, VOL.9 No.7, July 2009 71 Real Time Face Detection Based on skin tone detector Yuefeng Huang, Xinyu Ao and Yongping Li Shanghai Institute

More information

Praktikum: Entwicklung interaktiver eingebetteter Systeme

Praktikum: Entwicklung interaktiver eingebetteter Systeme Praktikum: Entwicklung interaktiver eingebetteter Systeme Filter Tutorial Andreas Weichslgartner (andreas.weichslgartner@informatik.uni-erlangen.de) Joachim Falk (falk@cs.fau.de) 1 Agenda Motivation Piel

More information

A Hybrid Skin Colour Based Face Detection System to Optimally Detect Black Faces

A Hybrid Skin Colour Based Face Detection System to Optimally Detect Black Faces American Journal of Intelligent Systems 27, 7(4): 2-24 DOI:.5923/j.ajis.2774.3 A Hybrid Skin Colour Based Face Detection System to Optimally Detect Black Faces Jadesola Adejoke Emmanuel,*, Tunji Samuel

More information

CHAPTER 3 FACE DETECTION AND PRE-PROCESSING

CHAPTER 3 FACE DETECTION AND PRE-PROCESSING 59 CHAPTER 3 FACE DETECTION AND PRE-PROCESSING 3.1 INTRODUCTION Detecting human faces automatically is becoming a very important task in many applications, such as security access control systems or contentbased

More information

Crowd Density Estimation using Image Processing

Crowd Density Estimation using Image Processing Crowd Density Estimation using Image Processing Unmesh Dahake 1, Bhavik Bakraniya 2, Jay Thakkar 3, Mandar Sohani 4 123Student, Vidyalankar Institute of Technology, Mumbai, India 4Professor, Vidyalankar

More information

New Probability Models for Face Detection and Tracking in Color Images

New Probability Models for Face Detection and Tracking in Color Images New Probability Models for Face Detection and Tracking in Color Images Marco J. Flores, José M. Armingol and Arturo de la Escalera Intelligent Systems Lab Department of Systems Engineering and Automation

More information

Face Detection on Similar Color Photographs

Face Detection on Similar Color Photographs Face Detection on Similar Color Photographs Scott Leahy EE368: Digital Image Processing Professor: Bernd Girod Stanford University Spring 2003 Final Project: Face Detection Leahy, 2/2 Table of Contents

More information

Scene Change Detection Based on Twice Difference of Luminance Histograms

Scene Change Detection Based on Twice Difference of Luminance Histograms Scene Change Detection Based on Twice Difference of Luminance Histograms Xinying Wang 1, K.N.Plataniotis 2, A. N. Venetsanopoulos 1 1 Department of Electrical & Computer Engineering University of Toronto

More information

An ICA based Approach for Complex Color Scene Text Binarization

An ICA based Approach for Complex Color Scene Text Binarization An ICA based Approach for Complex Color Scene Text Binarization Siddharth Kherada IIIT-Hyderabad, India siddharth.kherada@research.iiit.ac.in Anoop M. Namboodiri IIIT-Hyderabad, India anoop@iiit.ac.in

More information

CHAPTER-5 WATERMARKING OF COLOR IMAGES

CHAPTER-5 WATERMARKING OF COLOR IMAGES CHAPTER-5 WATERMARKING OF COLOR IMAGES 5.1 INTRODUCTION After satisfactorily developing the watermarking schemes for gray level images, we focused on developing the watermarking schemes for the color images.

More information

A ROBUST AND ADAPTABLE METHOD FOR FACE DETECTION BASED ON COLOR PROBABILISTIC ESTIMATION TECHNIQUE

A ROBUST AND ADAPTABLE METHOD FOR FACE DETECTION BASED ON COLOR PROBABILISTIC ESTIMATION TECHNIQUE International Journal of Research in Computer Science eissn 2249-8265 Volume 3 Issue 6 (2013) pp. 1-7, A Unit of White Globe Publications doi: 10.7815/ijorcs.36.2013.072 A ROBUST AND ADAPTABLE METHOD FOR

More information

AN EFFICIENT BATIK IMAGE RETRIEVAL SYSTEM BASED ON COLOR AND TEXTURE FEATURES

AN EFFICIENT BATIK IMAGE RETRIEVAL SYSTEM BASED ON COLOR AND TEXTURE FEATURES AN EFFICIENT BATIK IMAGE RETRIEVAL SYSTEM BASED ON COLOR AND TEXTURE FEATURES 1 RIMA TRI WAHYUNINGRUM, 2 INDAH AGUSTIEN SIRADJUDDIN 1, 2 Department of Informatics Engineering, University of Trunojoyo Madura,

More information

Statistical Approach to a Color-based Face Detection Algorithm

Statistical Approach to a Color-based Face Detection Algorithm Statistical Approach to a Color-based Face Detection Algorithm EE 368 Digital Image Processing Group 15 Carmen Ng Thomas Pun May 27, 2002 Table of Content Table of Content... 2 Table of Figures... 3 Introduction:...

More information

OCR For Handwritten Marathi Script

OCR For Handwritten Marathi Script International Journal of Scientific & Engineering Research Volume 3, Issue 8, August-2012 1 OCR For Handwritten Marathi Script Mrs.Vinaya. S. Tapkir 1, Mrs.Sushma.D.Shelke 2 1 Maharashtra Academy Of Engineering,

More information

Detection and Segmentation of Human Face

Detection and Segmentation of Human Face Detection and Segmentation of Human Face Nidhal K. El Abbadi 1, Ali Abdul Azeez Qazzaz 2 Computer Science Department, Education College, University of Kufa, Najaf, Iraq 1,2 Abstract: Detection and segmentation

More information

Project Report for EE7700

Project Report for EE7700 Project Report for EE7700 Name: Jing Chen, Shaoming Chen Student ID: 89-507-3494, 89-295-9668 Face Tracking 1. Objective of the study Given a video, this semester project aims at implementing algorithms

More information

Mouse Pointer Tracking with Eyes

Mouse Pointer Tracking with Eyes Mouse Pointer Tracking with Eyes H. Mhamdi, N. Hamrouni, A. Temimi, and M. Bouhlel Abstract In this article, we expose our research work in Human-machine Interaction. The research consists in manipulating

More information

Lecture 12 Color model and color image processing

Lecture 12 Color model and color image processing Lecture 12 Color model and color image processing Color fundamentals Color models Pseudo color image Full color image processing Color fundamental The color that humans perceived in an object are determined

More information

FACE DETECTION FOR VIDEO SUMMARY USING ENHANCEMENT BASED FUSION STRATEGY

FACE DETECTION FOR VIDEO SUMMARY USING ENHANCEMENT BASED FUSION STRATEGY FACE DETECTION FOR VIDEO SUMMARY USING ENHANCEMENT BASED FUSION STRATEGY Richa Mishra 1, Ravi Subban 2 1 Research Scholar, Department of Computer Science, Pondicherry University, Puducherry, India 2 Assistant

More information

FACE DETECTION BY HAAR CASCADE CLASSIFIER WITH SIMPLE AND COMPLEX BACKGROUNDS IMAGES USING OPENCV IMPLEMENTATION

FACE DETECTION BY HAAR CASCADE CLASSIFIER WITH SIMPLE AND COMPLEX BACKGROUNDS IMAGES USING OPENCV IMPLEMENTATION FACE DETECTION BY HAAR CASCADE CLASSIFIER WITH SIMPLE AND COMPLEX BACKGROUNDS IMAGES USING OPENCV IMPLEMENTATION Vandna Singh 1, Dr. Vinod Shokeen 2, Bhupendra Singh 3 1 PG Student, Amity School of Engineering

More information

Comparison of Wavelet Based Watermarking Techniques for Various Attacks

Comparison of Wavelet Based Watermarking Techniques for Various Attacks International Journal of Engineering and Technical Research (IJETR) ISSN: 2321-0869, Volume-3, Issue-4, April 2015 Comparison of Wavelet Based Watermarking Techniques for Various Attacks Sachin B. Patel,

More information

A Novel Criterion Function in Feature Evaluation. Application to the Classification of Corks.

A Novel Criterion Function in Feature Evaluation. Application to the Classification of Corks. A Novel Criterion Function in Feature Evaluation. Application to the Classification of Corks. X. Lladó, J. Martí, J. Freixenet, Ll. Pacheco Computer Vision and Robotics Group Institute of Informatics and

More information

Edge Detection and Template Matching Approaches for Human Ear Detection

Edge Detection and Template Matching Approaches for Human Ear Detection Edge and Template Matching Approaches for Human Ear K. V. Joshi G H Patel College Engineering and Technology vallabh vidyanagar, Gujarat, India N. C. Chauhan A D Patel Institute Technology New vallabh

More information

Artifacts and Textured Region Detection

Artifacts and Textured Region Detection Artifacts and Textured Region Detection 1 Vishal Bangard ECE 738 - Spring 2003 I. INTRODUCTION A lot of transformations, when applied to images, lead to the development of various artifacts in them. In

More information

Skin colour based face detection

Skin colour based face detection Research Online ECU Publications Pre. 2011 2001 Skin colour based face detection Son Lam Phung Douglas K. Chai Abdesselam Bouzerdoum 10.1109/ANZIIS.2001.974071 This conference paper was originally published

More information

A Review on Plant Disease Detection using Image Processing

A Review on Plant Disease Detection using Image Processing A Review on Plant Disease Detection using Image Processing Tejashri jadhav 1, Neha Chavan 2, Shital jadhav 3, Vishakha Dubhele 4 1,2,3,4BE Student, Dept. of Electronic & Telecommunication Engineering,

More information

ILLUMINATION INVARIANT FACE DETECTION USING HYBRID SKIN SEGMENTATION METHOD

ILLUMINATION INVARIANT FACE DETECTION USING HYBRID SKIN SEGMENTATION METHOD ILLUMINATION INVARIANT FACE DETECTION USING HYBRID SKIN SEGMENTATION METHOD Ojo, J. A. a and Adeniran, S. A. b a Department of Electronic and Electrical Engineering, Ladoke Akintola University of Technology,

More information

An Efficient Character Segmentation Based on VNP Algorithm

An Efficient Character Segmentation Based on VNP Algorithm Research Journal of Applied Sciences, Engineering and Technology 4(24): 5438-5442, 2012 ISSN: 2040-7467 Maxwell Scientific organization, 2012 Submitted: March 18, 2012 Accepted: April 14, 2012 Published:

More information

Face Detection for Skintone Images Using Wavelet and Texture Features

Face Detection for Skintone Images Using Wavelet and Texture Features Face Detection for Skintone Images Using Wavelet and Texture Features 1 H.C. Vijay Lakshmi, 2 S. Patil Kulkarni S.J. College of Engineering Mysore, India 1 vijisjce@yahoo.co.in, 2 pk.sudarshan@gmail.com

More information

A PROPOSED RDIT ALGORITHM FOR ANALYSIS OF FACE VERIFICATION IN VIDEOS IN IMAGE DATABASE FOR CRIME INVESTIGATION

A PROPOSED RDIT ALGORITHM FOR ANALYSIS OF FACE VERIFICATION IN VIDEOS IN IMAGE DATABASE FOR CRIME INVESTIGATION Vol.1, Issue.2, pp-319-326 ISSN: 2249-6645 A PROPOSED RDIT ALGORITHM FOR ANALYSIS OF FACE VERIFICATION IN VIDEOS IN IMAGE DATABASE FOR CRIME INVESTIGATION V.S. Manjula, Asst. Professor, Dept. of Computer

More information

Histogram Difference Methods Using Colour Models

Histogram Difference Methods Using Colour Models Histogram Difference Methods Using Colour Models Priyanks S 1, Dr. Jharna Majumdar 2, Santhosh Kumar K L 3 Post Graduate Student, Dept. of CSE, NMIT, Bangalore, Karnataka, India 1 Dean R&D, HOD CSE (PG),

More information

2013, IJARCSSE All Rights Reserved Page 718

2013, IJARCSSE All Rights Reserved Page 718 Volume 3, Issue 6, June 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Face Detection

More information

Content Based Image Retrieval: Survey and Comparison between RGB and HSV model

Content Based Image Retrieval: Survey and Comparison between RGB and HSV model Content Based Image Retrieval: Survey and Comparison between RGB and HSV model Simardeep Kaur 1 and Dr. Vijay Kumar Banga 2 AMRITSAR COLLEGE OF ENGG & TECHNOLOGY, Amritsar, India Abstract Content based

More information

Multimedia Systems Image III (Image Compression, JPEG) Mahdi Amiri April 2011 Sharif University of Technology

Multimedia Systems Image III (Image Compression, JPEG) Mahdi Amiri April 2011 Sharif University of Technology Course Presentation Multimedia Systems Image III (Image Compression, JPEG) Mahdi Amiri April 2011 Sharif University of Technology Image Compression Basics Large amount of data in digital images File size

More information

Journal of Industrial Engineering Research

Journal of Industrial Engineering Research IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Mammogram Image Segmentation Using voronoi Diagram Properties Dr. J. Subash

More information

A Statistical Approach to Culture Colors Distribution in Video Sensors Angela D Angelo, Jean-Luc Dugelay

A Statistical Approach to Culture Colors Distribution in Video Sensors Angela D Angelo, Jean-Luc Dugelay A Statistical Approach to Culture Colors Distribution in Video Sensors Angela D Angelo, Jean-Luc Dugelay VPQM 2010, Scottsdale, Arizona, U.S.A, January 13-15 Outline Introduction Proposed approach Colors

More information

String Extraction From Color Airline Coupon Image Using Statistical Approach

String Extraction From Color Airline Coupon Image Using Statistical Approach String Extraction From Color Airline Coupon Image Using Statistical Approach Yi Li, Zhiyan Wang, Haizan Zeng School of Computer Science South China University of echnology, Guangzhou, 510640, P.R.China

More information

Computer Graphics. Bing-Yu Chen National Taiwan University The University of Tokyo

Computer Graphics. Bing-Yu Chen National Taiwan University The University of Tokyo Computer Graphics Bing-Yu Chen National Taiwan University The University of Tokyo Introduction The Graphics Process Color Models Triangle Meshes The Rendering Pipeline 1 What is Computer Graphics? modeling

More information

Adaptive Skin Color Classifier for Face Outline Models

Adaptive Skin Color Classifier for Face Outline Models Adaptive Skin Color Classifier for Face Outline Models M. Wimmer, B. Radig, M. Beetz Informatik IX, Technische Universität München, Germany Boltzmannstr. 3, 87548 Garching, Germany [wimmerm, radig, beetz]@informatik.tu-muenchen.de

More information

Automatic Shadow Removal by Illuminance in HSV Color Space

Automatic Shadow Removal by Illuminance in HSV Color Space Computer Science and Information Technology 3(3): 70-75, 2015 DOI: 10.13189/csit.2015.030303 http://www.hrpub.org Automatic Shadow Removal by Illuminance in HSV Color Space Wenbo Huang 1, KyoungYeon Kim

More information

A Hybrid Approach for Real-Time Object Detection and Tracking to Cover Background Turbulence Problem

A Hybrid Approach for Real-Time Object Detection and Tracking to Cover Background Turbulence Problem Indian Journal of Science and Technology, Vol 9(45), DOI: 10.17485/ijst/2016/v9i45/106346, December 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 A Hybrid Approach for Real-Time Object Detection

More information

Face Quality Assessment System in Video Sequences

Face Quality Assessment System in Video Sequences Face Quality Assessment System in Video Sequences Kamal Nasrollahi, Thomas B. Moeslund Laboratory of Computer Vision and Media Technology, Aalborg University Niels Jernes Vej 14, 9220 Aalborg Øst, Denmark

More information

Clustering Based Non-parametric Model for Shadow Detection in Video Sequences

Clustering Based Non-parametric Model for Shadow Detection in Video Sequences Clustering Based Non-parametric Model for Shadow Detection in Video Sequences Ehsan Adeli Mosabbeb 1, Houman Abbasian 2, Mahmood Fathy 1 1 Iran University of Science and Technology, Tehran, Iran 2 University

More information

ROBUST FACE DETECTION UNDER CHALLENGES OF ROTATION, POSE AND OCCLUSION

ROBUST FACE DETECTION UNDER CHALLENGES OF ROTATION, POSE AND OCCLUSION ROBUST FACE DETECTION UNDER CHALLENGES OF ROTATION, POSE AND OCCLUSION Phuong-Trinh Pham-Ngoc, Quang-Linh Huynh Department o Biomedical Engineering, Faculty o Applied Science, Hochiminh University o Technology,

More information

Salient Region Detection and Segmentation in Images using Dynamic Mode Decomposition

Salient Region Detection and Segmentation in Images using Dynamic Mode Decomposition Salient Region Detection and Segmentation in Images using Dynamic Mode Decomposition Sikha O K 1, Sachin Kumar S 2, K P Soman 2 1 Department of Computer Science 2 Centre for Computational Engineering and

More information

Automatic face region detection in MPEG video sequences

Automatic face region detection in MPEG video sequences Automatic face region detection in MPEG video sequences Hualu Wang and Shih-Fu Chang Department of Electrical Engineering & Center for Image Technology for New Media Columbia University, New York, NY 10027,

More information

Indian Currency Recognition Based on ORB

Indian Currency Recognition Based on ORB Indian Currency Recognition Based on ORB Sonali P. Bhagat 1, Sarika B. Patil 2 P.G. Student (Digital Systems), Department of ENTC, Sinhagad College of Engineering, Pune, India 1 Assistant Professor, Department

More information

INF5063: Programming heterogeneous multi-core processors. September 17, 2010

INF5063: Programming heterogeneous multi-core processors. September 17, 2010 INF5063: Programming heterogeneous multi-core processors September 17, 2010 High data volumes: Need for compression PAL video sequence 25 images per second 3 bytes per pixel RGB (red-green-blue values)

More information

Face Recognition Using Long Haar-like Filters

Face Recognition Using Long Haar-like Filters Face Recognition Using Long Haar-like Filters Y. Higashijima 1, S. Takano 1, and K. Niijima 1 1 Department of Informatics, Kyushu University, Japan. Email: {y-higasi, takano, niijima}@i.kyushu-u.ac.jp

More information

Robust Fingertip Tracking with Improved Kalman Filter

Robust Fingertip Tracking with Improved Kalman Filter Robust Fingertip Tracking with Improved Kalman Filter Chunyang Wang and Bo Yuan Intelligent Computing Lab, Division of Informatics Graduate School at Shenzhen, Tsinghua University Shenzhen 518055, P.R.

More information

International Journal of Software and Web Sciences (IJSWS)

International Journal of Software and Web Sciences (IJSWS) International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International

More information

Robust & Accurate Face Recognition using Histograms

Robust & Accurate Face Recognition using Histograms Robust & Accurate Face Recognition using Histograms Sarbjeet Singh, Meenakshi Sharma and Dr. N.Suresh Rao Abstract A large number of face recognition algorithms have been developed from decades. Face recognition

More information

MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK

MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK Mahamuni P. D 1, R. P. Patil 2, H.S. Thakar 3 1 PG Student, E & TC Department, SKNCOE, Vadgaon Bk, Pune, India 2 Asst. Professor,

More information

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION Panca Mudjirahardjo, Rahmadwati, Nanang Sulistiyanto and R. Arief Setyawan Department of Electrical Engineering, Faculty of

More information

Journal of Asian Scientific Research FEATURES COMPOSITION FOR PROFICIENT AND REAL TIME RETRIEVAL IN CBIR SYSTEM. Tohid Sedghi

Journal of Asian Scientific Research FEATURES COMPOSITION FOR PROFICIENT AND REAL TIME RETRIEVAL IN CBIR SYSTEM. Tohid Sedghi Journal of Asian Scientific Research, 013, 3(1):68-74 Journal of Asian Scientific Research journal homepage: http://aessweb.com/journal-detail.php?id=5003 FEATURES COMPOSTON FOR PROFCENT AND REAL TME RETREVAL

More information

Color. making some recognition problems easy. is 400nm (blue) to 700 nm (red) more; ex. X-rays, infrared, radio waves. n Used heavily in human vision

Color. making some recognition problems easy. is 400nm (blue) to 700 nm (red) more; ex. X-rays, infrared, radio waves. n Used heavily in human vision Color n Used heavily in human vision n Color is a pixel property, making some recognition problems easy n Visible spectrum for humans is 400nm (blue) to 700 nm (red) n Machines can see much more; ex. X-rays,

More information

A Hybrid Face Detection System using combination of Appearance-based and Feature-based methods

A Hybrid Face Detection System using combination of Appearance-based and Feature-based methods IJCSNS International Journal of Computer Science and Network Security, VOL.9 No.5, May 2009 181 A Hybrid Face Detection System using combination of Appearance-based and Feature-based methods Zahra Sadri

More information

COMS W4735: Visual Interfaces To Computers. Final Project (Finger Mouse) Submitted by: Tarandeep Singh Uni: ts2379

COMS W4735: Visual Interfaces To Computers. Final Project (Finger Mouse) Submitted by: Tarandeep Singh Uni: ts2379 COMS W4735: Visual Interfaces To Computers Final Project (Finger Mouse) Submitted by: Tarandeep Singh Uni: ts2379 FINGER MOUSE (Fingertip tracking to control mouse pointer) Abstract. This report discusses

More information

Facial feature points detection and tracking for facial animation retargeting

Facial feature points detection and tracking for facial animation retargeting Facial feature points detection and tracking for facial animation retargeting Yamina Bordjiba1,2, H.F.Merouani 1 Labstic Laboratory, 8 Mai 1945 University, Guelma, Algeria. 2 Computer sciences Department

More information