├── LICENSE ├── README.md ├── android ├── DetectorActivity.java ├── build.gradle └── pika_labels.txt ├── detection_video.py ├── generate_tfrecord.py ├── pikachu_object_detection_evaluation.ipynb ├── training ├── frozen_inference_graph.pb ├── frozen_inference_graph_non_optimized.pb ├── object-detection.pbtxt └── ssd_mobilenet_v1_pets.config └── xml_to_csv.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/README.md -------------------------------------------------------------------------------- /android/DetectorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/android/DetectorActivity.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/pika_labels.txt: -------------------------------------------------------------------------------- 1 | ??? 2 | Pikachu -------------------------------------------------------------------------------- /detection_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/detection_video.py -------------------------------------------------------------------------------- /generate_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/generate_tfrecord.py -------------------------------------------------------------------------------- /pikachu_object_detection_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/pikachu_object_detection_evaluation.ipynb -------------------------------------------------------------------------------- /training/frozen_inference_graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/training/frozen_inference_graph.pb -------------------------------------------------------------------------------- /training/frozen_inference_graph_non_optimized.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/training/frozen_inference_graph_non_optimized.pb -------------------------------------------------------------------------------- /training/object-detection.pbtxt: -------------------------------------------------------------------------------- 1 | item { 2 | id: 1 3 | name: 'Pikachu' 4 | } -------------------------------------------------------------------------------- /training/ssd_mobilenet_v1_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/training/ssd_mobilenet_v1_pets.config -------------------------------------------------------------------------------- /xml_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juandes/pikachu-detection/HEAD/xml_to_csv.py --------------------------------------------------------------------------------