├── .gitignore ├── .vscode └── launch.json ├── README.md ├── assets ├── false1.jpg ├── false2.jpg └── true1.jpg ├── crib_mask.png ├── device_utils.py ├── file_sync.py ├── josh_crib_thresholds.json ├── old ├── care_chair_mask.jpg ├── check_images.py ├── old_crib_mask.png ├── real_time_vid_proc.py ├── test_image.py ├── train_gen.py └── train_gen_new.py ├── old_crib_mask.png ├── preprocessing.py ├── pt_cnn.py ├── real_time_vid_proc.py ├── requirements.txt ├── toggle_josh_crib.py └── train_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/README.md -------------------------------------------------------------------------------- /assets/false1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/assets/false1.jpg -------------------------------------------------------------------------------- /assets/false2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/assets/false2.jpg -------------------------------------------------------------------------------- /assets/true1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/assets/true1.jpg -------------------------------------------------------------------------------- /crib_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/crib_mask.png -------------------------------------------------------------------------------- /device_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/device_utils.py -------------------------------------------------------------------------------- /file_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/file_sync.py -------------------------------------------------------------------------------- /josh_crib_thresholds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/josh_crib_thresholds.json -------------------------------------------------------------------------------- /old/care_chair_mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old/care_chair_mask.jpg -------------------------------------------------------------------------------- /old/check_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old/check_images.py -------------------------------------------------------------------------------- /old/old_crib_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old/old_crib_mask.png -------------------------------------------------------------------------------- /old/real_time_vid_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old/real_time_vid_proc.py -------------------------------------------------------------------------------- /old/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old/test_image.py -------------------------------------------------------------------------------- /old/train_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old/train_gen.py -------------------------------------------------------------------------------- /old/train_gen_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old/train_gen_new.py -------------------------------------------------------------------------------- /old_crib_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/old_crib_mask.png -------------------------------------------------------------------------------- /preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/preprocessing.py -------------------------------------------------------------------------------- /pt_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/pt_cnn.py -------------------------------------------------------------------------------- /real_time_vid_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/real_time_vid_proc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/requirements.txt -------------------------------------------------------------------------------- /toggle_josh_crib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/toggle_josh_crib.py -------------------------------------------------------------------------------- /train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianGit78/josh_crib_check/HEAD/train_model.py --------------------------------------------------------------------------------