├── .vscode └── sftp.json ├── LICENSE ├── README.md ├── examples ├── color_detection.py ├── continuous_shooting.py ├── face_detection.py ├── hands_detection.py ├── image_classification.py ├── panorama.py ├── pose_detection.py ├── record_video.py ├── servo.py ├── servo_zeroing.py ├── take_photo.py └── time_lapse_photography.py ├── install.py └── models ├── labels_mobilenet_quant_v1_224.txt └── mobilenet_v1_0.25_224_quant.tflite /.vscode/sftp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/.vscode/sftp.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/README.md -------------------------------------------------------------------------------- /examples/color_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/color_detection.py -------------------------------------------------------------------------------- /examples/continuous_shooting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/continuous_shooting.py -------------------------------------------------------------------------------- /examples/face_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/face_detection.py -------------------------------------------------------------------------------- /examples/hands_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/hands_detection.py -------------------------------------------------------------------------------- /examples/image_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/image_classification.py -------------------------------------------------------------------------------- /examples/panorama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/panorama.py -------------------------------------------------------------------------------- /examples/pose_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/pose_detection.py -------------------------------------------------------------------------------- /examples/record_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/record_video.py -------------------------------------------------------------------------------- /examples/servo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/servo.py -------------------------------------------------------------------------------- /examples/servo_zeroing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/servo_zeroing.py -------------------------------------------------------------------------------- /examples/take_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/take_photo.py -------------------------------------------------------------------------------- /examples/time_lapse_photography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/examples/time_lapse_photography.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/install.py -------------------------------------------------------------------------------- /models/labels_mobilenet_quant_v1_224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/models/labels_mobilenet_quant_v1_224.txt -------------------------------------------------------------------------------- /models/mobilenet_v1_0.25_224_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunfounder/pan-tilt-hat/HEAD/models/mobilenet_v1_0.25_224_quant.tflite --------------------------------------------------------------------------------