Python Final Project Skin Detection final project on Python and Computer vision course. Libraries: Opencv2, numpy, imutils
In this project we will deal with skin color in the image, we basically give the video type input program, and it blackens all colors not defined as skin color.
how to start:
- Turn on the camera
- Use of imutils image processing functions for resizing
- Define the lower and upper boundaries for pixel intensities to be considered skin(boundaries are for the HSV color space)
- Use this kernel to perform two iterations of erosions and dilations, respectively to remove the small false-positive skin regions in the image
- Smooth the mask slightly using a Gaussian blur
- At the end display the results side-by-side view of the original frame along with the frame with skin detected in it
