Last active
October 22, 2018 08:43
-
-
Save f-rumblefish/d06d1e867508af37bcf8f177614f7b06 to your computer and use it in GitHub Desktop.
Object Detection Summary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Object Detection Model | SSD | YOLOv2 | |
---|---|---|---|
Object Classification Model | MobileNet | Darknet-19 | |
Pre-trained Dataset | COCO | COCO | |
Deep Learning Software Platform | Tensorflow | Darknet | |
OpenCV ReadNet Function Call | readNetFromTensorflow | readNetFromDarknet | |
Config File | frozen_inference_graph.pb | yolov2.cfg | |
Weight File | ssd_mobilenet_v1_coco_2017_11_17.pbtxt | yolov2.weights | |
OpenCV Forward Function Return | (1, 1, 100, 7) | (845, 85) | |
Representation of Bounding Box | (left, top, right, bottom) | (x_center, y_center, width, height) | |
Representation of Class Name | 90 | 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment