I'm trying to implement software which automatically detects nude images. Hoping to do this through openCV. What do you think of the possibility and the best algorithm that can be used? Any examples would be highly appreciated.
相关问题
- How to get the background from multiple images by
- Try to load image with Highgui.imread (OpenCV + An
- CV2 Image Error: error: (-215:Assertion failed) !s
- Is it a bug of opencv RotatedRect?
- How do I apply a perspective transform with more t
相关文章
- How do I append metadata to an image in Matlab?
- How to use cross_val_score with random_state
- opencv fails to build with ipp support enabled
- How to measure overfitting when train and validati
- McNemar's test in Python and comparison of cla
- Code completion is not working for OpenCV and Pyth
- How to disable keras warnings?
- Invert MinMaxScaler from scikit_learn
You may want to keep an eye on this site. This is what chatroulette uses. It targets, ahem selective nudity, but it may be related to what you're after.
There's a downloadable demo (so far, without source).
Depending on how accurate it needs to be you could just define a reasonable colour space that covers flesh tones, and then have some % threshold whereby if the flesh tone pixel count exceeds this % threshold then it may well be a nude image.
Have you considered a neural-network approach? What you're asking for sounds like a machine-learning application.