├── .gitignore ├── LICENSE ├── README.md ├── assets ├── images │ ├── friends │ │ ├── friends_01.jpg │ │ ├── friends_02.jpg │ │ ├── friends_03.jpg │ │ └── friends_04.jpg │ └── landscapes │ │ ├── landscape_01.jpg │ │ └── landscape_02.jpg └── videos │ └── faces.mp4 ├── environment.yml ├── models └── face_detector │ ├── deploy.prototxt.txt │ └── res10_300x300_ssd_iter_140000.caffemodel ├── pipeline ├── __init__.py ├── annotate_image.py ├── capture_images.py ├── capture_video.py ├── detect_faces.py ├── display_summary.py ├── display_video.py ├── libs │ ├── __init__.py │ ├── colors.py │ ├── face_detector.py │ ├── text.py │ ├── timeme.py │ └── utils.py ├── pipeline.py ├── save_faces.py ├── save_image.py ├── save_summary.py └── save_video.py ├── process_images.py ├── process_images_pipeline.py ├── process_video_pipeline.py ├── pytest.ini └── tests ├── __init__.py ├── config.py ├── pipeline ├── __init__.py ├── libs │ ├── __init__.py │ └── test_face_detector.py ├── test_capture_images.py ├── test_detect_faces.py └── test_pipeline.py └── test_environment.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/friends/friends_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/assets/images/friends/friends_01.jpg -------------------------------------------------------------------------------- /assets/images/friends/friends_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/assets/images/friends/friends_02.jpg -------------------------------------------------------------------------------- /assets/images/friends/friends_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/assets/images/friends/friends_03.jpg -------------------------------------------------------------------------------- /assets/images/friends/friends_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/assets/images/friends/friends_04.jpg -------------------------------------------------------------------------------- /assets/images/landscapes/landscape_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/assets/images/landscapes/landscape_01.jpg -------------------------------------------------------------------------------- /assets/images/landscapes/landscape_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/assets/images/landscapes/landscape_02.jpg -------------------------------------------------------------------------------- /assets/videos/faces.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/assets/videos/faces.mp4 -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/environment.yml -------------------------------------------------------------------------------- /models/face_detector/deploy.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/models/face_detector/deploy.prototxt.txt -------------------------------------------------------------------------------- /models/face_detector/res10_300x300_ssd_iter_140000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/models/face_detector/res10_300x300_ssd_iter_140000.caffemodel -------------------------------------------------------------------------------- /pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/annotate_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/annotate_image.py -------------------------------------------------------------------------------- /pipeline/capture_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/capture_images.py -------------------------------------------------------------------------------- /pipeline/capture_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/capture_video.py -------------------------------------------------------------------------------- /pipeline/detect_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/detect_faces.py -------------------------------------------------------------------------------- /pipeline/display_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/display_summary.py -------------------------------------------------------------------------------- /pipeline/display_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/display_video.py -------------------------------------------------------------------------------- /pipeline/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/libs/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/libs/colors.py -------------------------------------------------------------------------------- /pipeline/libs/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/libs/face_detector.py -------------------------------------------------------------------------------- /pipeline/libs/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/libs/text.py -------------------------------------------------------------------------------- /pipeline/libs/timeme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/libs/timeme.py -------------------------------------------------------------------------------- /pipeline/libs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/libs/utils.py -------------------------------------------------------------------------------- /pipeline/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/pipeline.py -------------------------------------------------------------------------------- /pipeline/save_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/save_faces.py -------------------------------------------------------------------------------- /pipeline/save_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/save_image.py -------------------------------------------------------------------------------- /pipeline/save_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/save_summary.py -------------------------------------------------------------------------------- /pipeline/save_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pipeline/save_video.py -------------------------------------------------------------------------------- /process_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/process_images.py -------------------------------------------------------------------------------- /process_images_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/process_images_pipeline.py -------------------------------------------------------------------------------- /process_video_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/process_video_pipeline.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/pytest.ini -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipeline/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipeline/libs/test_face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/tests/pipeline/libs/test_face_detector.py -------------------------------------------------------------------------------- /tests/pipeline/test_capture_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/tests/pipeline/test_capture_images.py -------------------------------------------------------------------------------- /tests/pipeline/test_detect_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/tests/pipeline/test_detect_faces.py -------------------------------------------------------------------------------- /tests/pipeline/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/tests/pipeline/test_pipeline.py -------------------------------------------------------------------------------- /tests/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagin/image-processing-pipeline/HEAD/tests/test_environment.py --------------------------------------------------------------------------------