Skip to content

mpcaples/detection-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Detection-api:

This repository features a web api that can be queried to obtain the objects identified within an image frame.

Methods:

POST REQUEST:

import requests

url = 'http://localhost:5001/clasify?access_token=ACCESS_TOKEN&type=TYPE'
files = {'media': open('test.jpg', 'rb')}
requests.post(url, files=files)



SERVER RESPONSE:
    [
        {
            class:"person"
            x:10
            y:20
            heigth:50
            width:20
        },
        {
            class:"dog"
            x:1
            y:4
            heigth:5
            width:10
        },

    ]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 79.8%
  • Python 20.2%