├── .gitignore ├── LICENSE ├── README.md ├── camera_stream.py ├── coco_detect.sh ├── coral.jpg ├── download_models.sh ├── face_detect.sh ├── fullscreen.gif ├── lib.py ├── object_detection_camera.py ├── object_detection_socket.py ├── processingClient ├── BroadcastThread.pde ├── ResultsReceivingThread.pde ├── processingClient.pde └── util.pde ├── run_processing_sketch.sh ├── socket_coco_detect.sh ├── socket_stream.sh ├── start_bedroom.sh ├── start_detection_demo.sh ├── start_kitchen.sh └── start_kitchen_with_detect.sh /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | hs_err_pid3123.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/README.md -------------------------------------------------------------------------------- /camera_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/camera_stream.py -------------------------------------------------------------------------------- /coco_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/coco_detect.sh -------------------------------------------------------------------------------- /coral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/coral.jpg -------------------------------------------------------------------------------- /download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/download_models.sh -------------------------------------------------------------------------------- /face_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/face_detect.sh -------------------------------------------------------------------------------- /fullscreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/fullscreen.gif -------------------------------------------------------------------------------- /lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/lib.py -------------------------------------------------------------------------------- /object_detection_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/object_detection_camera.py -------------------------------------------------------------------------------- /object_detection_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/object_detection_socket.py -------------------------------------------------------------------------------- /processingClient/BroadcastThread.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/processingClient/BroadcastThread.pde -------------------------------------------------------------------------------- /processingClient/ResultsReceivingThread.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/processingClient/ResultsReceivingThread.pde -------------------------------------------------------------------------------- /processingClient/processingClient.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/processingClient/processingClient.pde -------------------------------------------------------------------------------- /processingClient/util.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/processingClient/util.pde -------------------------------------------------------------------------------- /run_processing_sketch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/run_processing_sketch.sh -------------------------------------------------------------------------------- /socket_coco_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/socket_coco_detect.sh -------------------------------------------------------------------------------- /socket_stream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/socket_stream.sh -------------------------------------------------------------------------------- /start_bedroom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/start_bedroom.sh -------------------------------------------------------------------------------- /start_detection_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/start_detection_demo.sh -------------------------------------------------------------------------------- /start_kitchen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/start_kitchen.sh -------------------------------------------------------------------------------- /start_kitchen_with_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oveddan/edge_tpu_processing_demo/HEAD/start_kitchen_with_detect.sh --------------------------------------------------------------------------------