pydoods

A Python wrapper for the DOODS image detection service


License
MIT
Install
pip install pydoods==1.0.2

Documentation

PyDOODS - Python for Distributed Open Object Detection Service

This is a simple Python wrapper for the DOODS service. DOODS allows you to do remote object detection in images easily.

A simple example using this library:

import PyDOODS from pydoods

try:
    pd = PyDOODS("http://docker:8080",
                    auth_key="abc1234", timeout=90)
except OSError as err:
    print("OS error: {0}".format(err))
    exit
image = open("grace_hopper.png", "rb").read()
print(pd.detect(image))