├── .gitignore ├── README.md ├── motion.py ├── scripts ├── add_collection.py ├── add_image.py ├── checkstart.sh ├── collections.txt ├── del_collections.py ├── del_faces.py ├── facematch.py ├── install.sh └── take_selfie.py ├── watch.py └── watch.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | faces 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/README.md -------------------------------------------------------------------------------- /motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/motion.py -------------------------------------------------------------------------------- /scripts/add_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/add_collection.py -------------------------------------------------------------------------------- /scripts/add_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/add_image.py -------------------------------------------------------------------------------- /scripts/checkstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/checkstart.sh -------------------------------------------------------------------------------- /scripts/collections.txt: -------------------------------------------------------------------------------- 1 | 2017-04-27 21:13:47 | camerapi -------------------------------------------------------------------------------- /scripts/del_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/del_collections.py -------------------------------------------------------------------------------- /scripts/del_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/del_faces.py -------------------------------------------------------------------------------- /scripts/facematch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/facematch.py -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/take_selfie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/scripts/take_selfie.py -------------------------------------------------------------------------------- /watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/watch.py -------------------------------------------------------------------------------- /watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af001/pi-detector/HEAD/watch.sh --------------------------------------------------------------------------------