├── .idea ├── face_detection_in_realtime.iml ├── misc.xml ├── modules.xml └── workspace.xml ├── .ipynb_checkpoints └── detect_realtime_instruction-checkpoint.ipynb ├── README.md ├── config.py ├── detect_realtime.py ├── detect_realtime_instruction.ipynb ├── images └── img_test.jpg ├── outputs ├── 0.gif ├── image_c0.png ├── image_c1.png └── yolo_shufflenet2_infer.png ├── utils.py └── weights └── shufflenetv2.h5 /.idea/face_detection_in_realtime.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 55 | 56 | 57 | 65 | 66 | 67 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 |