├── .github └── workflows │ └── pep8-check.yml ├── .gitignore ├── DoG.py ├── LICENSE ├── README.md ├── calibrate_camera.py ├── camera_stream.py ├── canny.py ├── chromaticity_lightness.py ├── cnn_ssd_detection.py ├── contour_edges.py ├── cycleimages.py ├── download-models.sh ├── eigenfaces.py ├── faster-rcnn.py ├── fcn_segmentation.py ├── gaussian.py ├── generic_interface.py ├── gradient_orientation.py ├── haar_cascade_detection.py ├── harris.py ├── hog.py ├── houghlines.py ├── kalman_tracking_live.py ├── lbp_cascade_detection.py ├── mask-rcnn.py ├── mog-background-subtraction.py ├── openpose.py ├── opticflow.py ├── pyramid.py ├── selective_search.py ├── sift_detection.py ├── sobel.py ├── squeezenet.py ├── stereo_sgbm.py ├── test_all.sh └── yolo.py /.github/workflows/pep8-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/.github/workflows/pep8-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/.gitignore -------------------------------------------------------------------------------- /DoG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/DoG.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/README.md -------------------------------------------------------------------------------- /calibrate_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/calibrate_camera.py -------------------------------------------------------------------------------- /camera_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/camera_stream.py -------------------------------------------------------------------------------- /canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/canny.py -------------------------------------------------------------------------------- /chromaticity_lightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/chromaticity_lightness.py -------------------------------------------------------------------------------- /cnn_ssd_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/cnn_ssd_detection.py -------------------------------------------------------------------------------- /contour_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/contour_edges.py -------------------------------------------------------------------------------- /cycleimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/cycleimages.py -------------------------------------------------------------------------------- /download-models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/download-models.sh -------------------------------------------------------------------------------- /eigenfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/eigenfaces.py -------------------------------------------------------------------------------- /faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/faster-rcnn.py -------------------------------------------------------------------------------- /fcn_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/fcn_segmentation.py -------------------------------------------------------------------------------- /gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/gaussian.py -------------------------------------------------------------------------------- /generic_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/generic_interface.py -------------------------------------------------------------------------------- /gradient_orientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/gradient_orientation.py -------------------------------------------------------------------------------- /haar_cascade_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/haar_cascade_detection.py -------------------------------------------------------------------------------- /harris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/harris.py -------------------------------------------------------------------------------- /hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/hog.py -------------------------------------------------------------------------------- /houghlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/houghlines.py -------------------------------------------------------------------------------- /kalman_tracking_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/kalman_tracking_live.py -------------------------------------------------------------------------------- /lbp_cascade_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/lbp_cascade_detection.py -------------------------------------------------------------------------------- /mask-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/mask-rcnn.py -------------------------------------------------------------------------------- /mog-background-subtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/mog-background-subtraction.py -------------------------------------------------------------------------------- /openpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/openpose.py -------------------------------------------------------------------------------- /opticflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/opticflow.py -------------------------------------------------------------------------------- /pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/pyramid.py -------------------------------------------------------------------------------- /selective_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/selective_search.py -------------------------------------------------------------------------------- /sift_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/sift_detection.py -------------------------------------------------------------------------------- /sobel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/sobel.py -------------------------------------------------------------------------------- /squeezenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/squeezenet.py -------------------------------------------------------------------------------- /stereo_sgbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/stereo_sgbm.py -------------------------------------------------------------------------------- /test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/test_all.sh -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobybreckon/python-examples-cv/HEAD/yolo.py --------------------------------------------------------------------------------