Showing too much 'skin' detection in software - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T06:08:15Zhttp://stackoverflow.com/feeds/question/263380http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software20Showing too much 'skin' detection in softwareCraig2008-11-04T20:48:33Z2009-02-17T18:44:45Z
<p>I am building an ASP.NET web site where the users may upload photos of themselves. There could be thousands of photos uploaded every day. One thing my boss has asked a few time is if there is any way we could detect if any of the photos are showing too much 'skin' and automatically move flag these as 'Adults Only' before the editors make the final decision. </p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263403#26340318Answer by JS Bangs for Showing too much 'skin' detection in softwareJS Bangs2008-11-04T20:53:54Z2008-11-06T17:29:06Z<p>I doubt that there exists any off-the-shelf software that can determine if the user uploads a naughty picture. Your best bet is to let users flag images as 'Adults Only' with a button next to the picture. (Clarification: I mean users other than the one who uploaded the picture--similar to how posts can be marked offensive here on StackOverflow.)</p>
<p>Also, consider this review of an attempt to do the same thing in a dedicated product: <a href="http://www.dansdata.com/pornsweeper.htm" rel="nofollow">http://www.dansdata.com/pornsweeper.htm</a>.</p>
<p>Link stolen from today's StackOverflow podcast, of course :).</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263407#26340714Answer by Tim Howland for Showing too much 'skin' detection in softwareTim Howland2008-11-04T20:54:53Z2008-11-04T20:54:53Z<p>We can't even write filters that detect dirty words accurately in blog posts, and your boss is asking for a porno detector? <a href="http://thedailywtf.com/Articles/The-Clbuttic-Mistake-.aspx" rel="nofollow">CLBUTTIC!</a></p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263462#2634620Answer by Brian Knoblauch for Showing too much 'skin' detection in softwareBrian Knoblauch2008-11-04T21:15:54Z2008-11-04T21:15:54Z<p>I'm afraid I can't help point you in the right direction, but I do remember reading about this being done before. It was in the context of people complaining about baby pictures being caught and flagged mistakenly. If nothing else, I can give you the hope that you don't have to invent the wheel all by yourself... Someone else has been down this road!</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263482#26348230Answer by Andrew Bullock for Showing too much 'skin' detection in softwareAndrew Bullock2008-11-04T21:22:42Z2008-11-07T09:52:23Z<p>Your best bet is to deal with the image in the HSV colour space (see <a href="http://www.cs.rit.edu/~ncs/color/t_convert.html" rel="nofollow">here</a> 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.</p>
<p>You might do this by simply counting the number of pixel within a colour range, or you could <a href="http://www.cse.unr.edu/~bebis/CS791E/Notes/RegionGrowing.pdf" rel="nofollow">perform region</a> growing around pixel to calculate the size of the areas the colour.</p>
<p>Edit: for dealing with grainy images, you might want to perform a <a href="http://en.wikipedia.org/wiki/Median_filter" rel="nofollow">median filter</a> 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.</p>
<p>EDIT: Heres some code that should do a simple count (not tested it, its a quick mashup of some code from <a href="http://www.obnoxiouslyverbose.com/8/c-image-processing-performance-unsafe-vs-safe-code-part-i" rel="nofollow">here</a> and rgb to hsl <a href="http://en.wikipedia.org/wiki/HSL_color_space" rel="nofollow">here</a>)</p>
<pre><code>Bitmap b = new Bitmap(_image);
BitmapData bData = b.LockBits(new Rectangle(0, 0, _image.Width, _image.Height), ImageLockMode.ReadWrite, b.PixelFormat);
byte bitsPerPixel = GetBitsPerPixel(bData.PixelFormat);
byte* scan0 = (byte*)bData.Scan0.ToPointer();
int count;
for (int i = 0; i < bData.Height; ++i)
{
for (int j = 0; j < bData.Width; ++j)
{
byte* data = scan0 + i * bData.Stride + j * bitsPerPixel / 8;
byte r = data[2];
byte g = data[1];
byte b = data[0];
byte max = (byte)Math.Max(r, Math.Max(g, b));
byte min = (byte)Math.Min(r, Math.Min(g, b));
int h;
if(max == min)
h = 0;
else if(r > g && r > b)
h = (60 * ((g - b) / (max - min))) % 360;
else if (g > r && g > b)
h = 60 * ((b - r)/max - min) + 120;
else if (b > r && b > g)
h = 60 * ((r - g) / max - min) + 240;
if(h > _lowerThresh && h < _upperThresh)
count++;
}
}
b.UnlockBits(bData);
</code></pre>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263499#2634991Answer by CodeSlave for Showing too much 'skin' detection in softwareCodeSlave2008-11-04T21:28:16Z2008-11-04T21:28:16Z<p>Perhaps the <a href="http://yro.slashdot.org/yro/08/11/04/1746220.shtml" rel="nofollow">Porn Breath Test</a> would be helpful - as reported on Slashdot.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263519#26351910Answer by conny for Showing too much 'skin' detection in softwareconny2008-11-04T21:32:26Z2008-11-08T21:08:23Z<p>I would say your answer lies in <strong>crowdsourcing</strong> the task. This almost always works and tends to scale <em>very</em> well. </p>
<p>It doesn't have to involve making some users into "admins" and coming up with different permissions - it can be as simple as to enable an "inappropriate" link near each image and keeping a count.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263538#2635384Answer by dbkk for Showing too much 'skin' detection in softwaredbkk2008-11-04T21:36:55Z2008-11-04T21:36:55Z<p>Interesting question from a theoretical / algorithmic standppoint. One approach to the problem would be to flag images that contain large skin-colored regions (as explained by Trull). </p>
<p>However, the amount of skin shown is not a determinant of an offesive image, it's rather the <em>location</em> of the skin shown. Perhaps you can use face detection (search for algorithms) to refine the results -- determine how large the skin regions are relative to the face, and if they belong to the face (perhaps how far below it they are).</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263559#2635593Answer by FlySwat for Showing too much 'skin' detection in softwareFlySwat2008-11-04T21:42:07Z2008-11-04T21:42:07Z<p>I know either Flickr or Picasa has implemented this. I believe the routine was called FleshFinder.</p>
<p>A tip on the architecture of doing this:</p>
<p>Run this as a windows service separate from the ASP.NET Pipeline, instead of analyzing images in real time, create a queue of new images that are uploaded for the service to work through. </p>
<p>You can use the normal System.Drawing stuff if you want, but if you really need to process a lot of images, it would be better to use native code and a high performance graphics library and P/invoke the routine from your service.</p>
<p>As resources are available, process images in the background and flag ones that are suspicious for editors review, this should prune down the number of images to review significantly, while not annoying people who upload pictures of skin colored houses.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263579#2635793Answer by Bill the Lizard for Showing too much 'skin' detection in softwareBill the Lizard2008-11-04T21:46:45Z2008-11-04T21:46:45Z<p>I would approach the problem from a statistical standpoint. Get a bunch of pictures that you consider safe, and a bunch that you don't (that will make for a fun day of research), and see what they have in common. Analyze them all for color range and saturation to see if you can pick out characteristics that all of the naughty photos, and few of the safe ones have.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263580#26358031Answer by Konrad Rudolph for Showing too much 'skin' detection in softwareKonrad Rudolph2008-11-04T21:46:56Z2008-11-04T21:46:56Z<p>Of course, this will fail for the first user who posts a close-up of someone's face (or hand, or foot, or whatnot). Ultimately, all these forms of automated censorship will fail until there's a real paradigm-shift in the way computers do object recognition.</p>
<p>I'm not saying that you shouldn't attempt it nontheless; but I want to point to these problems. Do not expect a perfect (or even good) solution. It doesn't exist.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/265178#2651780Answer by plinth for Showing too much 'skin' detection in softwareplinth2008-11-05T13:56:09Z2008-11-05T13:56:09Z<p><a href="http://www.dlsu.edu.ph/faculty/fis/faculty_info.asp?fac_id=103945856" rel="nofollow">Rigan Ap-apid</a> presented a paper at WorldComp '08 on just this problem space. The paper is allegedly <a href="http://serv1.ist.psu.edu:8080/viewdoc/download;jsessionid=92D8115F9C98B5DC6C8459E1A038AE46?doi=10.1.1.96.9872&rep=rep1&type=pdf" rel="nofollow">here</a>, but the server was timing out for me. I attended the presentation of the paper and he covered comparable systems and their effectiveness as well as his own approach. You might contact him directly.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/270330#2703300Answer by wizard for Showing too much 'skin' detection in softwarewizard2008-11-06T21:21:34Z2008-11-06T21:21:34Z<p><a href="http://crowdsifter.com" rel="nofollow">CrowdSifter</a> by <a href="http://doloreslabs.com" rel="nofollow">Dolores Labs</a> might do the trick for you. I read their blog all the time as they seem to love statistics and crowdsourcing and like to talk about it. They use amazon's mechanical turk for a lot of their processing and know how to process the results to get the right answers out of things. Check out their blog at the very least to see some cool statistical experiments.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/558171#5581712Answer by graveca for Showing too much 'skin' detection in softwaregraveca2009-02-17T18:34:24Z2009-02-17T18:34:24Z<p>See the seminal paper "<strong>Finding Naked People</strong>" by Fleck/Forsyth published in ECCV. (Advanced).</p>
<p><a href="http://www.cs.hmc.edu/~fleck/naked.html" rel="nofollow">http://www.cs.hmc.edu/~fleck/naked.html</a></p>