├── LICENSE ├── README.md ├── create_yolo_caffemodel.py ├── create_yolo_prototxt.py ├── images ├── camera.png ├── dog.jpg └── yolo_dog.png ├── 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/gudovskiy/yoloNCS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/README.md -------------------------------------------------------------------------------- /create_yolo_caffemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/create_yolo_caffemodel.py -------------------------------------------------------------------------------- /create_yolo_prototxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/create_yolo_prototxt.py -------------------------------------------------------------------------------- /images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/images/camera.png -------------------------------------------------------------------------------- /images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/images/dog.jpg -------------------------------------------------------------------------------- /images/yolo_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/images/yolo_dog.png -------------------------------------------------------------------------------- /prototxt/yolo_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/prototxt/yolo_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_small_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/prototxt/yolo_small_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_small_train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/prototxt/yolo_small_train_val.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_tiny_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/prototxt/yolo_tiny_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_tiny_train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/prototxt/yolo_tiny_train_val.prototxt -------------------------------------------------------------------------------- /prototxt/yolo_train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/prototxt/yolo_train_val.prototxt -------------------------------------------------------------------------------- /py_examples/object_detection_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/py_examples/object_detection_app.py -------------------------------------------------------------------------------- /py_examples/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py_examples/utils/app_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/py_examples/utils/app_utils.py -------------------------------------------------------------------------------- /py_examples/yolo_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/py_examples/yolo_example.py -------------------------------------------------------------------------------- /yolo_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gudovskiy/yoloNCS/HEAD/yolo_main.py --------------------------------------------------------------------------------