Your best bet is to deal with the image in the HSV colour space (see [here][1] for rgb - hsv conversion). The colour of skin is pretty much the same between all races, its just the saturation that changes. By dealing with the image in HSV you can simply search for the colour of skin. You might do this by simply counting the number of pixel within a colour range, or you could [perform region][2] growing around pixel to calculate the size of the areas the colour. Edit: for dealing with grainy images, you might want to perform a [median filter][3] on the image first, and then reduce the number of colours to segment the image first, you will have to play around with the settings on a large set of pre-classifed (adult or not) images and see how the values behave to get a satisfactory level of detection. [1]: http://www.cs.rit.edu/~ncs/color/t_convert.html [2]: http://www.cse.unr.edu/~bebis/CS791E/Notes/RegionGrowing.pdf [3]: http://en.wikipedia.org/wiki/Median_filter