OpenCV for adult, racy and gory image classification

Hi.

I am currently using Azure’s Computer Vision API for classifying and detecting adult content in images, and was wondering if OpenCV have something similar already built-in or another python module that’s built on top of OpenCV that can achieve that. Not sure if I missed something in the documentation, but if anyone can point me to the right way, it would be great.

Thanks.

did you mean this ?

then the answer is probably No, not at that high level.
opencv’s dnn module is able to import a variety of network formats and run inference on them, but it is “bring your own model” here, and you have to do the training elsewhere.
(heck, you even need to bring your own machine, this is a library, not a cloud service !)

1 Like

Oh, okay. I figured as much. The CV API from MS isn’t exactly cheap so we wanted an alternative. Training our model also doesn’t seem viable.

Thank you for the quick reply.

Regards.

lol, yea ;(
maybe you can find something in a place like this