├── .gitattributes ├── .gitignore ├── LICENSE ├── LICENSE_BMP ├── README.md ├── assets └── out_orange_banana_apple.bmp └── tensorflow └── tensorflow └── lite ├── examples └── label_image │ ├── BMP.h │ ├── bitmap_helpers.cc │ ├── bitmap_helpers.h │ ├── bitmap_helpers_impl.h │ ├── get_top_n.h │ ├── get_top_n_impl.h │ ├── label_image.cc │ ├── label_image.h │ ├── label_image.md │ └── label_image_test.cc └── tools └── make ├── Makefile ├── build_rpi_armv6_label_image.sh └── gen └── rpi_armv6 └── bin ├── fruit.bmp ├── grace_hopper.bmp ├── label_image ├── models └── coco_ssd_mobilenet_v1_1.0_quant_2018_06_29 │ ├── detect.tflite │ └── labelmap.txt └── orange_banana_apple.bmp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/LICENSE_BMP -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/README.md -------------------------------------------------------------------------------- /assets/out_orange_banana_apple.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/assets/out_orange_banana_apple.bmp -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/BMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/BMP.h -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/bitmap_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/bitmap_helpers.cc -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/bitmap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/bitmap_helpers.h -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/bitmap_helpers_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/bitmap_helpers_impl.h -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/get_top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/get_top_n.h -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/get_top_n_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/get_top_n_impl.h -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/label_image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/label_image.cc -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/label_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/label_image.h -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/label_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/label_image.md -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/examples/label_image/label_image_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/examples/label_image/label_image_test.cc -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/Makefile -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/build_rpi_armv6_label_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/build_rpi_armv6_label_image.sh -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/fruit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/fruit.bmp -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/grace_hopper.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/grace_hopper.bmp -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/label_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/label_image -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/models/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29/detect.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/models/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29/detect.tflite -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/models/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29/labelmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/models/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29/labelmap.txt -------------------------------------------------------------------------------- /tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/orange_banana_apple.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwiser/ObjectDetectionRPiZero/HEAD/tensorflow/tensorflow/lite/tools/make/gen/rpi_armv6/bin/orange_banana_apple.bmp --------------------------------------------------------------------------------