Skip to content

This detect cars like objects using tensorflow object detection api

Notifications You must be signed in to change notification settings

stanlee321/object_detector_tf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Object Detection with TF

This detects cars like classes using tensorflow lib

How to use it

Example of how to use it is below:

python main.py

Output from detection is like

{   "num": 8,
    "predictions": [   {   "class": "car",
                           "coord": {   "xmax": 565,
                                        'xmin': 594,
                                        'ymax': 64,
                                        'ymin': 98},
                           "probability": 0.7990925312042236},
                       {   "class": "truck",
                           "coord": {   'xmax': 746,
                                        'xmin': 1201,
                                        'ymax': 563,
                                        'ymin': 950},
                           "probability": 0.759814441204071},
                       {   "class": "car",
                           "coord": {   'xmax': 210,
                                        'xmin': 261,
                                        'ymax': 114,
                                        'ymin': 162},
                           "probability": 0.7414186000823975}],
    "success": true}
    ...
    ...
    .
    .
    .
    

About

This detect cars like objects using tensorflow object detection api

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages