Skip to content

Python wrapper for DOODS library

License

Notifications You must be signed in to change notification settings

frenetic00/pydoods

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

from pydoods import 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))

About

Python wrapper for DOODS library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%