Metadata-Version: 2.1
Name: isnude
Version: 0.0.1
Summary: Nudity detection with re-trained Tensorflow MobileNet Model http://nudity.canaydogan.net
Home-page: https://github.com/dyaskur/nudity
Author: Dyas Yaskur
Author-email: canaydogan89@gmail.com
License: MIT
Keywords: nude,nudity,detection,pornographic,inappropriate content
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: tensorflow

nudity (fixed)
=======
.. image:: https://travis-ci.org/canaydogan/nudity.svg?branch=master
    :target: https://travis-ci.org/canaydogan/nudity
    :alt: Build status

About
-----
Nudity detection with re-trained Tensorflow MobileNet Model. Accuracy is 92.2% based on my dataset.

Installation
------------
.. code-block:: sh

    $ pip install isnude


Requirements
------------
* Python3.5+

Usage
-----
via command-line

.. code-block:: sh


    $ nudity --image=IMAGE_FILE

via Python Module

.. code-block:: python

    from nudity import Nudity
    nudity = Nudity();
    print(nudity.has('/file/path/example.jpg'))
    # gives you True or False

    print(nudity.score('/file/path/example.jpg'))
    # gives you nudity score 0 - 1


