├── .github └── FUNDING.yml ├── README.md ├── camera_lite_on.ini ├── camera_lite_on.py ├── camera_on.py ├── install.md ├── install.sh ├── install2.sh ├── install_manjaro.sh ├── lite_model ├── README.md ├── detect.tflite └── labelmap.txt ├── obj-config.ini ├── run.sh └── uninstall.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: RattyDAVE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/README.md -------------------------------------------------------------------------------- /camera_lite_on.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/camera_lite_on.ini -------------------------------------------------------------------------------- /camera_lite_on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/camera_lite_on.py -------------------------------------------------------------------------------- /camera_on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/camera_on.py -------------------------------------------------------------------------------- /install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/install.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/install.sh -------------------------------------------------------------------------------- /install2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/install2.sh -------------------------------------------------------------------------------- /install_manjaro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/install_manjaro.sh -------------------------------------------------------------------------------- /lite_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/lite_model/README.md -------------------------------------------------------------------------------- /lite_model/detect.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/lite_model/detect.tflite -------------------------------------------------------------------------------- /lite_model/labelmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/lite_model/labelmap.txt -------------------------------------------------------------------------------- /obj-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/obj-config.ini -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/run.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RattyDAVE/pi-object-detection/HEAD/uninstall.sh --------------------------------------------------------------------------------