├── LICENSE ├── README.md ├── create_yolo_caffemodel.py ├── create_yolo_prototxt.py ├── images ├── camera.png ├── dog.jpg └── yolo_dog.png ├── notebooks ├── ncs.py ├── yolo-hdmi.ipynb ├── yolo-image.ipynb ├── yolo-webcam.ipynb └── yolo_ncs.py ├── prototxt ├── yolo_deploy.prototxt ├── yolo_small_deploy.prototxt ├── yolo_small_train_val.prototxt ├── yolo_tiny_deploy.prototxt ├── yolo_tiny_train_val.prototxt └── yolo_train_val.prototxt ├── py_examples ├── object_detection_app.py ├── utils │ ├── __init__.py │ └── app_utils.py └── yolo_example.py └── yolo_main.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/README.md -------------------------------------------------------------------------------- /create_yolo_caffemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/create_yolo_caffemodel.py -------------------------------------------------------------------------------- /create_yolo_prototxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/create_yolo_prototxt.py -------------------------------------------------------------------------------- /images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/images/camera.png -------------------------------------------------------------------------------- /images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/images/dog.jpg -------------------------------------------------------------------------------- /images/yolo_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/images/yolo_dog.png -------------------------------------------------------------------------------- /notebooks/ncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/notebooks/ncs.py -------------------------------------------------------------------------------- /notebooks/yolo-hdmi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/notebooks/yolo-hdmi.ipynb -------------------------------------------------------------------------------- /notebooks/yolo-image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/notebooks/yolo-image.ipynb -------------------------------------------------------------------------------- /notebooks/yolo-webcam.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/notebooks/yolo-webcam.ipynb -------------------------------------------------------------------------------- /notebooks/yolo_ncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/notebooks/yolo_ncs.py -------------------------------------------------------------------------------- /prototxt/yolo_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/prototxt/yolo_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_small_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/prototxt/yolo_small_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_small_train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/prototxt/yolo_small_train_val.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_tiny_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/prototxt/yolo_tiny_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_tiny_train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/prototxt/yolo_tiny_train_val.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/prototxt/yolo_train_val.prototxt -------------------------------------------------------------------------------- /py_examples/object_detection_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/py_examples/object_detection_app.py -------------------------------------------------------------------------------- /py_examples/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py_examples/utils/app_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/py_examples/utils/app_utils.py -------------------------------------------------------------------------------- /py_examples/yolo_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/py_examples/yolo_example.py -------------------------------------------------------------------------------- /yolo_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgadeveloper/pynq-ncs-yolo/HEAD/yolo_main.py --------------------------------------------------------------------------------