├── Challenge Docs ├── Moonshot Challenge Presentation.pdf └── Moonshot Challenge Product Description.pdf ├── Mask_RCNN ├── .gitignore ├── LICENSE ├── README.md ├── assets │ ├── 4k_video.gif │ ├── detection_activations.png │ ├── detection_anchors.png │ ├── detection_final.png │ ├── detection_histograms.png │ ├── detection_masks.png │ ├── detection_refinement.png │ ├── detection_tensorboard.png │ ├── donuts.png │ ├── sheep.png │ └── street.png ├── coco.py ├── config.py ├── demo.ipynb ├── images │ ├── 1045023827_4ec3e8ba5c_z.jpg │ ├── 12283150_12d37e6389_z.jpg │ ├── 2383514521_1fc8d7b0de_z.jpg │ ├── 2502287818_41e4b0c4fb_z.jpg │ ├── 2516944023_d00345997d_z.jpg │ ├── 25691390_f9944f61b5_z.jpg │ ├── 262985539_1709e54576_z.jpg │ ├── 3132016470_c27baa00e8_z.jpg │ ├── 3627527276_6fe8cd9bfe_z.jpg │ ├── 3651581213_f81963d1dd_z.jpg │ ├── 3800883468_12af3c0b50_z.jpg │ ├── 3862500489_6fd195d183_z.jpg │ ├── 3878153025_8fde829928_z.jpg │ ├── 4410436637_7b0ca36ee7_z.jpg │ ├── 4782628554_668bc31826_z.jpg │ ├── 5951960966_d4e1cda5d0_z.jpg │ ├── 6584515005_fce9cec486_z.jpg │ ├── 6821351586_59aa0dc110_z.jpg │ ├── 7581246086_cf7bbb7255_z.jpg │ ├── 7933423348_c30bd9bd4e_z.jpg │ ├── 8053677163_d4c8f416be_z.jpg │ ├── 8239308689_efa6c11b08_z.jpg │ ├── 8433365521_9252889f9a_z.jpg │ ├── 8512296263_5fc5458e20_z.jpg │ ├── 8699757338_c3941051b6_z.jpg │ ├── 8734543718_37f6b8bd45_z.jpg │ ├── 8829708882_48f263491e_z.jpg │ ├── 9118579087_f9ffa19e63_z.jpg │ ├── 9247489789_132c0d534a_z.jpg │ └── test-image.JPG ├── inspect_data.ipynb ├── inspect_model.ipynb ├── inspect_weights.ipynb ├── model.py ├── parallel_model.py ├── segmentation_video.py ├── shapes.py ├── tested samples │ ├── result 1.png │ └── result.avi ├── train_shapes.ipynb ├── utils.py └── visualize.py ├── README.md ├── cocoapi ├── .gitignore ├── PythonAPI │ ├── Makefile │ ├── demos │ │ ├── pycocoDemo.ipynb │ │ └── pycocoEvalDemo.ipynb │ ├── pycocotools │ │ ├── __init__.py │ │ ├── _mask.pyx │ │ ├── coco.py │ │ ├── cocoeval.py │ │ └── mask.py │ └── setup.py ├── README.md ├── common │ ├── gason.cpp │ ├── gason.h │ ├── maskApi.c │ └── maskApi.h ├── img │ ├── download.png │ ├── install.png │ └── notebooks.png └── license.txt └── darkflow-master ├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cfg ├── coco.names ├── extraction.cfg ├── extraction.conv.cfg ├── tiny-yolo-4c.cfg ├── tiny-yolo-voc.cfg ├── tiny-yolo.cfg ├── v1.1 │ ├── person-bottle.cfg │ ├── tiny-coco.cfg │ ├── tiny-yolo-4c.cfg │ ├── tiny-yolov1.cfg │ ├── yolo-coco.cfg │ └── yolov1.cfg ├── v1 │ ├── tiny-old.profile │ ├── tiny.profile │ ├── yolo-2c.cfg │ ├── yolo-4c.cfg │ ├── yolo-full.cfg │ ├── yolo-small.cfg │ ├── yolo-tiny-extract.cfg │ ├── yolo-tiny-extract_.cfg │ ├── yolo-tiny.cfg │ └── yolo-tiny4c.cfg ├── yolo-voc.cfg └── yolo.cfg ├── darkflow ├── __init__.py ├── cli.py ├── cython_utils │ ├── __init__.py │ ├── cy_yolo2_findboxes.pyx │ ├── cy_yolo_findboxes.pyx │ ├── nms.pxd │ └── nms.pyx ├── dark │ ├── __init__.py │ ├── connected.py │ ├── convolution.py │ ├── darknet.py │ ├── darkop.py │ └── layer.py ├── defaults.py ├── net │ ├── __init__.py │ ├── build.py │ ├── flow.py │ ├── framework.py │ ├── help.py │ ├── mnist │ │ └── run.py │ ├── ops │ │ ├── __init__.py │ │ ├── baseop.py │ │ ├── convolution.py │ │ └── simple.py │ ├── vanilla │ │ ├── __init__.py │ │ └── train.py │ ├── yolo │ │ ├── __init__.py │ │ ├── data.py │ │ ├── misc.py │ │ ├── predict.py │ │ └── train.py │ └── yolov2 │ │ ├── __init__.py │ │ ├── data.py │ │ ├── predict.py │ │ └── train.py ├── utils │ ├── __init__.py │ ├── box.py │ ├── im_transform.py │ ├── loader.py │ ├── pascal_voc_clean_xml.py │ └── process.py └── version.py ├── flow ├── object_detect_image.py ├── object_detect_video_realtime.py ├── reduce_frame_speed.py ├── setup.py ├── test samples ├── traffic image 1.jpg ├── traffic image 2.jpg ├── traffic image 3.jpg └── traffic video.mp4 ├── test ├── requirements-testing.txt ├── test_darkflow.py └── training │ ├── annotations │ ├── 1.xml │ └── 2.xml │ └── images │ ├── 1.jpg │ └── 2.jpg └── tested samples ├── result traffic image 1.jpg ├── result traffic image 2.jpg ├── result traffic image 3.jpg └── result traffic video.avi /Challenge Docs/Moonshot Challenge Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Challenge Docs/Moonshot Challenge Presentation.pdf -------------------------------------------------------------------------------- /Challenge Docs/Moonshot Challenge Product Description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Challenge Docs/Moonshot Challenge Product Description.pdf -------------------------------------------------------------------------------- /Mask_RCNN/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | __pycache__/ 3 | mask_rcnn_coco.h5 4 | .idea/ 5 | 6 | -------------------------------------------------------------------------------- /Mask_RCNN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/LICENSE -------------------------------------------------------------------------------- /Mask_RCNN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/README.md -------------------------------------------------------------------------------- /Mask_RCNN/assets/4k_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/4k_video.gif -------------------------------------------------------------------------------- /Mask_RCNN/assets/detection_activations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/detection_activations.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/detection_anchors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/detection_anchors.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/detection_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/detection_final.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/detection_histograms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/detection_histograms.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/detection_masks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/detection_masks.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/detection_refinement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/detection_refinement.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/detection_tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/detection_tensorboard.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/donuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/donuts.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/sheep.png -------------------------------------------------------------------------------- /Mask_RCNN/assets/street.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/assets/street.png -------------------------------------------------------------------------------- /Mask_RCNN/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/coco.py -------------------------------------------------------------------------------- /Mask_RCNN/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/config.py -------------------------------------------------------------------------------- /Mask_RCNN/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/demo.ipynb -------------------------------------------------------------------------------- /Mask_RCNN/images/1045023827_4ec3e8ba5c_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/1045023827_4ec3e8ba5c_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/12283150_12d37e6389_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/12283150_12d37e6389_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/2383514521_1fc8d7b0de_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/2383514521_1fc8d7b0de_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/2502287818_41e4b0c4fb_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/2502287818_41e4b0c4fb_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/2516944023_d00345997d_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/2516944023_d00345997d_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/25691390_f9944f61b5_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/25691390_f9944f61b5_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/262985539_1709e54576_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/262985539_1709e54576_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/3132016470_c27baa00e8_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/3132016470_c27baa00e8_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/3627527276_6fe8cd9bfe_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/3627527276_6fe8cd9bfe_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/3651581213_f81963d1dd_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/3651581213_f81963d1dd_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/3800883468_12af3c0b50_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/3800883468_12af3c0b50_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/3862500489_6fd195d183_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/3862500489_6fd195d183_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/3878153025_8fde829928_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/3878153025_8fde829928_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/4410436637_7b0ca36ee7_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/4410436637_7b0ca36ee7_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/4782628554_668bc31826_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/4782628554_668bc31826_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/5951960966_d4e1cda5d0_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/5951960966_d4e1cda5d0_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/6584515005_fce9cec486_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/6584515005_fce9cec486_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/6821351586_59aa0dc110_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/6821351586_59aa0dc110_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/7581246086_cf7bbb7255_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/7581246086_cf7bbb7255_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/7933423348_c30bd9bd4e_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/7933423348_c30bd9bd4e_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/8053677163_d4c8f416be_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/8053677163_d4c8f416be_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/8239308689_efa6c11b08_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/8239308689_efa6c11b08_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/8433365521_9252889f9a_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/8433365521_9252889f9a_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/8512296263_5fc5458e20_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/8512296263_5fc5458e20_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/8699757338_c3941051b6_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/8699757338_c3941051b6_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/8734543718_37f6b8bd45_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/8734543718_37f6b8bd45_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/8829708882_48f263491e_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/8829708882_48f263491e_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/9118579087_f9ffa19e63_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/9118579087_f9ffa19e63_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/9247489789_132c0d534a_z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/9247489789_132c0d534a_z.jpg -------------------------------------------------------------------------------- /Mask_RCNN/images/test-image.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/images/test-image.JPG -------------------------------------------------------------------------------- /Mask_RCNN/inspect_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/inspect_data.ipynb -------------------------------------------------------------------------------- /Mask_RCNN/inspect_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/inspect_model.ipynb -------------------------------------------------------------------------------- /Mask_RCNN/inspect_weights.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/inspect_weights.ipynb -------------------------------------------------------------------------------- /Mask_RCNN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/model.py -------------------------------------------------------------------------------- /Mask_RCNN/parallel_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/parallel_model.py -------------------------------------------------------------------------------- /Mask_RCNN/segmentation_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/segmentation_video.py -------------------------------------------------------------------------------- /Mask_RCNN/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/shapes.py -------------------------------------------------------------------------------- /Mask_RCNN/tested samples/result 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/tested samples/result 1.png -------------------------------------------------------------------------------- /Mask_RCNN/tested samples/result.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/tested samples/result.avi -------------------------------------------------------------------------------- /Mask_RCNN/train_shapes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/train_shapes.ipynb -------------------------------------------------------------------------------- /Mask_RCNN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/utils.py -------------------------------------------------------------------------------- /Mask_RCNN/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/Mask_RCNN/visualize.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/README.md -------------------------------------------------------------------------------- /cocoapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/.gitignore -------------------------------------------------------------------------------- /cocoapi/PythonAPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/Makefile -------------------------------------------------------------------------------- /cocoapi/PythonAPI/demos/pycocoDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/demos/pycocoDemo.ipynb -------------------------------------------------------------------------------- /cocoapi/PythonAPI/demos/pycocoEvalDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/demos/pycocoEvalDemo.ipynb -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/_mask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/pycocotools/_mask.pyx -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/pycocotools/coco.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/pycocotools/mask.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/PythonAPI/setup.py -------------------------------------------------------------------------------- /cocoapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/README.md -------------------------------------------------------------------------------- /cocoapi/common/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/common/gason.cpp -------------------------------------------------------------------------------- /cocoapi/common/gason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/common/gason.h -------------------------------------------------------------------------------- /cocoapi/common/maskApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/common/maskApi.c -------------------------------------------------------------------------------- /cocoapi/common/maskApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/common/maskApi.h -------------------------------------------------------------------------------- /cocoapi/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/img/download.png -------------------------------------------------------------------------------- /cocoapi/img/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/img/install.png -------------------------------------------------------------------------------- /cocoapi/img/notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/img/notebooks.png -------------------------------------------------------------------------------- /cocoapi/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/cocoapi/license.txt -------------------------------------------------------------------------------- /darkflow-master/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = test/* -------------------------------------------------------------------------------- /darkflow-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/.gitignore -------------------------------------------------------------------------------- /darkflow-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/.travis.yml -------------------------------------------------------------------------------- /darkflow-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/LICENSE -------------------------------------------------------------------------------- /darkflow-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/README.md -------------------------------------------------------------------------------- /darkflow-master/cfg/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/coco.names -------------------------------------------------------------------------------- /darkflow-master/cfg/extraction.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/extraction.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/extraction.conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/extraction.conv.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/tiny-yolo-4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/tiny-yolo-4c.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/tiny-yolo-voc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/tiny-yolo-voc.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/tiny-yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/tiny-yolo.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1.1/person-bottle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1.1/person-bottle.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1.1/tiny-coco.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1.1/tiny-coco.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1.1/tiny-yolo-4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1.1/tiny-yolo-4c.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1.1/tiny-yolov1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1.1/tiny-yolov1.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1.1/yolo-coco.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1.1/yolo-coco.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1.1/yolov1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1.1/yolov1.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/tiny-old.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/tiny-old.profile -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/tiny.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/tiny.profile -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-2c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-2c.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-4c.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-full.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-full.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-small.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-small.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-tiny-extract.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-tiny-extract.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-tiny-extract_.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-tiny-extract_.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-tiny.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/v1/yolo-tiny4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/v1/yolo-tiny4c.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/yolo-voc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/yolo-voc.cfg -------------------------------------------------------------------------------- /darkflow-master/cfg/yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/cfg/yolo.cfg -------------------------------------------------------------------------------- /darkflow-master/darkflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkflow-master/darkflow/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/cli.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/cython_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkflow-master/darkflow/cython_utils/cy_yolo2_findboxes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/cython_utils/cy_yolo2_findboxes.pyx -------------------------------------------------------------------------------- /darkflow-master/darkflow/cython_utils/cy_yolo_findboxes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/cython_utils/cy_yolo_findboxes.pyx -------------------------------------------------------------------------------- /darkflow-master/darkflow/cython_utils/nms.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/cython_utils/nms.pxd -------------------------------------------------------------------------------- /darkflow-master/darkflow/cython_utils/nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/cython_utils/nms.pyx -------------------------------------------------------------------------------- /darkflow-master/darkflow/dark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkflow-master/darkflow/dark/connected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/dark/connected.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/dark/convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/dark/convolution.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/dark/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/dark/darknet.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/dark/darkop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/dark/darkop.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/dark/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/dark/layer.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/defaults.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/build.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/flow.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/framework.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/help.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/mnist/run.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/ops/__init__.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/ops/baseop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/ops/baseop.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/ops/convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/ops/convolution.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/ops/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/ops/simple.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/vanilla/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/vanilla/__init__.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/vanilla/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/vanilla/train.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolo/__init__.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolo/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolo/data.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolo/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolo/misc.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolo/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolo/predict.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolo/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolo/train.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolov2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolov2/__init__.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolov2/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolov2/data.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolov2/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolov2/predict.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/net/yolov2/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/net/yolov2/train.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darkflow-master/darkflow/utils/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/utils/box.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/utils/im_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/utils/im_transform.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/utils/loader.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/utils/pascal_voc_clean_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/utils/pascal_voc_clean_xml.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/utils/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/utils/process.py -------------------------------------------------------------------------------- /darkflow-master/darkflow/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/darkflow/version.py -------------------------------------------------------------------------------- /darkflow-master/flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/flow -------------------------------------------------------------------------------- /darkflow-master/object_detect_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/object_detect_image.py -------------------------------------------------------------------------------- /darkflow-master/object_detect_video_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/object_detect_video_realtime.py -------------------------------------------------------------------------------- /darkflow-master/reduce_frame_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/reduce_frame_speed.py -------------------------------------------------------------------------------- /darkflow-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/setup.py -------------------------------------------------------------------------------- /darkflow-master/test samples/traffic image 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test samples/traffic image 1.jpg -------------------------------------------------------------------------------- /darkflow-master/test samples/traffic image 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test samples/traffic image 2.jpg -------------------------------------------------------------------------------- /darkflow-master/test samples/traffic image 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test samples/traffic image 3.jpg -------------------------------------------------------------------------------- /darkflow-master/test samples/traffic video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test samples/traffic video.mp4 -------------------------------------------------------------------------------- /darkflow-master/test/requirements-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test/requirements-testing.txt -------------------------------------------------------------------------------- /darkflow-master/test/test_darkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test/test_darkflow.py -------------------------------------------------------------------------------- /darkflow-master/test/training/annotations/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test/training/annotations/1.xml -------------------------------------------------------------------------------- /darkflow-master/test/training/annotations/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test/training/annotations/2.xml -------------------------------------------------------------------------------- /darkflow-master/test/training/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test/training/images/1.jpg -------------------------------------------------------------------------------- /darkflow-master/test/training/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/test/training/images/2.jpg -------------------------------------------------------------------------------- /darkflow-master/tested samples/result traffic image 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/tested samples/result traffic image 1.jpg -------------------------------------------------------------------------------- /darkflow-master/tested samples/result traffic image 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/tested samples/result traffic image 2.jpg -------------------------------------------------------------------------------- /darkflow-master/tested samples/result traffic image 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/tested samples/result traffic image 3.jpg -------------------------------------------------------------------------------- /darkflow-master/tested samples/result traffic video.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishakha-lall/Real-Time-Object-Detection/HEAD/darkflow-master/tested samples/result traffic video.avi --------------------------------------------------------------------------------