├── .github └── ISSUE_TEMPLATE │ ├── issue-report.md │ └── others.md ├── .gitignore ├── .gitmodules ├── 00_doc ├── design.drawio ├── design.jpg ├── how_to_create_prebuilt_edgetpu_library_v2.4.0.md ├── how_to_create_prebuilt_library_v2.6_linux.md ├── how_to_create_prebuilt_library_v2.6_windows.md └── how_to_create_prebuilt_tensorflow_lite_library_v2.4.0.md ├── LICENSE ├── NOTICE.md ├── README.md ├── ViewAndroid ├── .gitignore ├── .idea │ ├── .name │ ├── codeStyles │ │ └── Project.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── iwatake │ │ │ └── viewandroidtflite │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── java │ │ │ └── com │ │ │ │ └── iwatake │ │ │ │ └── viewandroidtflite │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── iwatake │ │ └── viewandroidtflite │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── _pj_tflite_depth_fast_depth ├── 00_doc │ └── depth_midas.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── depth_engine.cpp │ ├── depth_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── common_helper ├── CMakeLists.txt ├── bounding_box.cpp ├── bounding_box.h ├── camera_model.h ├── cmakes │ └── build_setting.cmake ├── common_helper.cpp ├── common_helper.h ├── common_helper_cv.cpp ├── common_helper_cv.h ├── hungarian_algorithm.h ├── kalman_filter.h ├── simple_matrix.h ├── tracker.cpp └── tracker.h ├── download_resource.sh ├── pj_tflite_arprobe ├── 00_doc │ └── arprobe.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── area_selector.cpp │ ├── area_selector.h │ ├── classification_engine.cpp │ ├── classification_engine.h │ ├── hand_landmark_engine.cpp │ ├── hand_landmark_engine.h │ ├── image_processor.cpp │ ├── image_processor.h │ ├── meidapipe │ │ ├── ssd_anchors_calculator.cc │ │ ├── ssd_anchors_calculator.h │ │ ├── tflite_tensors_to_detections_calculator.cc │ │ ├── tflite_tensors_to_detections_calculator.h │ │ ├── transpose_conv_bias.cc │ │ └── transpose_conv_bias.h │ ├── palm_detection_engine.cpp │ └── palm_detection_engine.h └── main.cpp ├── pj_tflite_camera_deep_calib ├── 00_doc │ ├── DeepCalib.ipynb │ └── deep_calib.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── camera_calibration_engine.cpp │ ├── camera_calibration_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_cls_mobilenet_v2 ├── CMakeLists.txt ├── image_processor │ ├── CMakeLists.txt │ ├── classification_engine.cpp │ ├── classification_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_depth_midas ├── 00_doc │ └── depth_midas.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── depth_engine.cpp │ ├── depth_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_det_dronet ├── 00_doc │ └── dronet.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_det_efficientdet_lite ├── 00_doc │ └── efficientdet_lite.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_det_fastestdet ├── 00_doc │ └── demo.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_det_mobilenetssd_v1 ├── CMakeLists.txt ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_det_nanodet ├── 00_doc │ └── nanodet.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_det_yolov5 ├── 00_doc │ └── yolov5_sort.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_det_yolox ├── 00_doc │ └── yolox_sort.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_edge_dexined ├── 00_doc │ ├── edge.jpg │ └── edge_2.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── edge_engine.cpp │ ├── edge_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_face_age-gender-recognition ├── 00_doc │ └── age_gender.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── age_gender_engine.cpp │ ├── age_gender_engine.h │ ├── face_detection_engine.cpp │ ├── face_detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_face_blazeface ├── 00_doc │ └── blazeface.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── face_detection_engine.cpp │ ├── face_detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_face_dbface ├── 00_doc │ └── dbface.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── face_detection_engine.cpp │ ├── face_detection_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_face_facemesh ├── 00_doc │ └── facemesh.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── face_detection_engine.cpp │ ├── face_detection_engine.h │ ├── facemesh_engine.cpp │ ├── facemesh_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_face_head-pose-WHENet ├── CMakeLists.txt ├── image_processor │ ├── CMakeLists.txt │ ├── face_detection_engine.cpp │ ├── face_detection_engine.h │ ├── headpose_engine.cpp │ ├── headpose_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_face_head-pose-estimation-adas-0001 ├── 00_doc │ └── headpose.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── face_detection_engine.cpp │ ├── face_detection_engine.h │ ├── headpose_engine.cpp │ ├── headpose_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_face_landmark_with_attention ├── 00_doc │ └── demo.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── face_detection_engine.cpp │ ├── face_detection_engine.h │ ├── facemesh_engine.cpp │ ├── facemesh_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_hand_mediapipe ├── CMakeLists.txt ├── image_processor │ ├── CMakeLists.txt │ ├── hand_landmark_engine.cpp │ ├── hand_landmark_engine.h │ ├── image_processor.cpp │ ├── image_processor.h │ ├── meidapipe │ │ ├── ssd_anchors_calculator.cc │ │ ├── ssd_anchors_calculator.h │ │ ├── tflite_tensors_to_detections_calculator.cc │ │ ├── tflite_tensors_to_detections_calculator.h │ │ ├── transpose_conv_bias.cc │ │ └── transpose_conv_bias.h │ ├── palm_detection_engine.cpp │ └── palm_detection_engine.h └── main.cpp ├── pj_tflite_lane_lanenet-lane-detection ├── 00_doc │ ├── lane_00.jpg │ └── lane_01.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── dbscan.hpp │ ├── image_processor.cpp │ ├── image_processor.h │ ├── kdtree.cpp │ ├── kdtree.h │ ├── lane_engine.cpp │ └── lane_engine.h └── main.cpp ├── pj_tflite_lane_ultra-fast-lane-detection ├── 00_doc │ └── lane.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── lane_engine.cpp │ └── lane_engine.h └── main.cpp ├── pj_tflite_other_film ├── 00_doc │ └── demo.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── frame_interpolation_engine.cpp │ ├── frame_interpolation_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_perception_hybrid_nets ├── 00_doc │ └── demo.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── extract_prior_box.py │ ├── image_processor.cpp │ ├── image_processor.h │ ├── prior_bbox.cpp │ ├── prior_bbox.h │ └── prior_bbox_256x384.cpp └── main.cpp ├── pj_tflite_person-attributes-recognition-crossroad-0230 ├── 00_doc │ └── person_attribute.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── feature_engine.cpp │ ├── feature_engine.h │ ├── image_processor.cpp │ └── image_processor.h └── main.cpp ├── pj_tflite_pose_centernet_tf_kpts ├── 00_doc │ └── centernet_kpts.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── pose_engine.cpp │ └── pose_engine.h └── main.cpp ├── pj_tflite_pose_movenet ├── 00_doc │ └── pose_movenet.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── pose_engine.cpp │ └── pose_engine.h └── main.cpp ├── pj_tflite_pose_movenet_multi ├── 00_doc │ └── pose_movenet_multi.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── pose_engine.cpp │ └── pose_engine.h └── main.cpp ├── pj_tflite_seg_paddleseg_cityscapessota ├── 00_doc │ └── segmentation.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── segmentation_engine.cpp │ └── segmentation_engine.h └── main.cpp ├── pj_tflite_seg_robust_video_matting ├── 00_doc │ └── demo.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── segmentation_engine.cpp │ └── segmentation_engine.h └── main.cpp ├── pj_tflite_seg_topformer ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── segmentation_engine.cpp │ └── segmentation_engine.h └── main.cpp ├── pj_tflite_ss_deeplabv3_mnv2 ├── CMakeLists.txt ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── semantic_segmentation_engine.cpp │ └── semantic_segmentation_engine.h └── main.cpp ├── pj_tflite_ss_person_mask ├── 00_doc │ ├── mask.jpg │ └── result.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── semantic_segmentation_engine.cpp │ └── semantic_segmentation_engine.h └── main.cpp ├── pj_tflite_ss_road-segmentation-adas-0001 ├── 00_doc │ └── road-segmentation-adas-0001.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── semantic_segmentation_engine.cpp │ └── semantic_segmentation_engine.h └── main.cpp ├── pj_tflite_style_transfer ├── 00_doc │ └── artistic_style_transfer.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── image_processor.cpp │ ├── image_processor.h │ ├── style_prediction_engine.cpp │ ├── style_prediction_engine.h │ ├── style_transfer_engine.cpp │ └── style_transfer_engine.h └── main.cpp ├── pj_tflite_track_deepsort ├── 00_doc │ └── deepsort.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── feature_engine.cpp │ ├── feature_engine.h │ ├── image_processor.cpp │ ├── image_processor.h │ ├── tracker_deepsort.cpp │ └── tracker_deepsort.h └── main.cpp ├── pj_tflite_track_deepsort_person-reidentification ├── 00_doc │ └── deepsort.jpg ├── CMakeLists.txt ├── README.md ├── image_processor │ ├── CMakeLists.txt │ ├── detection_engine.cpp │ ├── detection_engine.h │ ├── feature_engine.cpp │ ├── feature_engine.h │ ├── image_processor.cpp │ ├── image_processor.h │ ├── tracker_deepsort.cpp │ └── tracker_deepsort.h └── main.cpp ├── resource ├── body_00.jpg ├── body_01.jpg ├── body_02.jpg ├── body_03.jpg ├── car.jpg ├── cat.jpg ├── cat_dog.jpg ├── cat_laptop.jpg ├── dashcam_00.jpg ├── dashcam_01.jpg ├── dog.jpg ├── face_00.jpg ├── face_01.jpg ├── face_02.jpg ├── face_03.jpg ├── fisheye_00.jpg ├── fisheye_01.jpg ├── frame_interpolation_0.jpg ├── frame_interpolation_1.jpg ├── hand_00.jpg ├── hand_01.jpg ├── hand_02.jpg ├── hand_03.jpg ├── kite.jpg ├── lena.jpg ├── model │ ├── .gitattributes │ ├── label_PASCAL_VOC2012.txt │ ├── label_coco_80.txt │ ├── label_coco_90.txt │ └── label_imagenet.txt ├── parrot.jpg ├── style │ └── .gitkeep └── worlds-largest-selfie.jpg ├── temp_pj_tflite_edgetpuapi_cls_mobilenet_v2 ├── CMakeLists.txt ├── Main.cpp ├── model_utils.cc └── model_utils.h ├── temp_pj_tflite_edgetpupipeline_cls_inception_v3 ├── CMakeLists.txt └── Main.cpp └── temp_pj_tflite_simple_cls_mobilenet_v2 ├── CMakeLists.txt ├── ImageProcessor ├── CMakeLists.txt ├── ImageProcessor.cpp └── ImageProcessor.h └── Main.cpp /.github/ISSUE_TEMPLATE/issue-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/.github/ISSUE_TEMPLATE/issue-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/.github/ISSUE_TEMPLATE/others.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/.gitmodules -------------------------------------------------------------------------------- /00_doc/design.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/00_doc/design.drawio -------------------------------------------------------------------------------- /00_doc/design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/00_doc/design.jpg -------------------------------------------------------------------------------- /00_doc/how_to_create_prebuilt_edgetpu_library_v2.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/00_doc/how_to_create_prebuilt_edgetpu_library_v2.4.0.md -------------------------------------------------------------------------------- /00_doc/how_to_create_prebuilt_library_v2.6_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/00_doc/how_to_create_prebuilt_library_v2.6_linux.md -------------------------------------------------------------------------------- /00_doc/how_to_create_prebuilt_library_v2.6_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/00_doc/how_to_create_prebuilt_library_v2.6_windows.md -------------------------------------------------------------------------------- /00_doc/how_to_create_prebuilt_tensorflow_lite_library_v2.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/00_doc/how_to_create_prebuilt_tensorflow_lite_library_v2.4.0.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/README.md -------------------------------------------------------------------------------- /ViewAndroid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/.gitignore -------------------------------------------------------------------------------- /ViewAndroid/.idea/.name: -------------------------------------------------------------------------------- 1 | ViewAndroidTflite -------------------------------------------------------------------------------- /ViewAndroid/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /ViewAndroid/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/.idea/compiler.xml -------------------------------------------------------------------------------- /ViewAndroid/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/.idea/gradle.xml -------------------------------------------------------------------------------- /ViewAndroid/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /ViewAndroid/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/.idea/misc.xml -------------------------------------------------------------------------------- /ViewAndroid/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/.idea/vcs.xml -------------------------------------------------------------------------------- /ViewAndroid/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ViewAndroid/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/build.gradle -------------------------------------------------------------------------------- /ViewAndroid/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/proguard-rules.pro -------------------------------------------------------------------------------- /ViewAndroid/app/src/androidTest/java/com/iwatake/viewandroidtflite/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/androidTest/java/com/iwatake/viewandroidtflite/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/java/com/iwatake/viewandroidtflite/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/java/com/iwatake/viewandroidtflite/MainActivity.java -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /ViewAndroid/app/src/test/java/com/iwatake/viewandroidtflite/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/app/src/test/java/com/iwatake/viewandroidtflite/ExampleUnitTest.java -------------------------------------------------------------------------------- /ViewAndroid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/build.gradle -------------------------------------------------------------------------------- /ViewAndroid/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/gradle.properties -------------------------------------------------------------------------------- /ViewAndroid/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ViewAndroid/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ViewAndroid/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/gradlew -------------------------------------------------------------------------------- /ViewAndroid/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/ViewAndroid/gradlew.bat -------------------------------------------------------------------------------- /ViewAndroid/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "ViewAndroidTflite" -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/00_doc/depth_midas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/00_doc/depth_midas.jpg -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/CMakeLists.txt -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/README.md -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/image_processor/depth_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/image_processor/depth_engine.cpp -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/image_processor/depth_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/image_processor/depth_engine.h -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/image_processor/image_processor.h -------------------------------------------------------------------------------- /_pj_tflite_depth_fast_depth/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/_pj_tflite_depth_fast_depth/main.cpp -------------------------------------------------------------------------------- /common_helper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/CMakeLists.txt -------------------------------------------------------------------------------- /common_helper/bounding_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/bounding_box.cpp -------------------------------------------------------------------------------- /common_helper/bounding_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/bounding_box.h -------------------------------------------------------------------------------- /common_helper/camera_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/camera_model.h -------------------------------------------------------------------------------- /common_helper/cmakes/build_setting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/cmakes/build_setting.cmake -------------------------------------------------------------------------------- /common_helper/common_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/common_helper.cpp -------------------------------------------------------------------------------- /common_helper/common_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/common_helper.h -------------------------------------------------------------------------------- /common_helper/common_helper_cv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/common_helper_cv.cpp -------------------------------------------------------------------------------- /common_helper/common_helper_cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/common_helper_cv.h -------------------------------------------------------------------------------- /common_helper/hungarian_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/hungarian_algorithm.h -------------------------------------------------------------------------------- /common_helper/kalman_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/kalman_filter.h -------------------------------------------------------------------------------- /common_helper/simple_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/simple_matrix.h -------------------------------------------------------------------------------- /common_helper/tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/tracker.cpp -------------------------------------------------------------------------------- /common_helper/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/common_helper/tracker.h -------------------------------------------------------------------------------- /download_resource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/download_resource.sh -------------------------------------------------------------------------------- /pj_tflite_arprobe/00_doc/arprobe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/00_doc/arprobe.jpg -------------------------------------------------------------------------------- /pj_tflite_arprobe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_arprobe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/README.md -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/area_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/area_selector.cpp -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/area_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/area_selector.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/classification_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/classification_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/classification_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/classification_engine.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/hand_landmark_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/hand_landmark_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/hand_landmark_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/hand_landmark_engine.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/meidapipe/ssd_anchors_calculator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/meidapipe/ssd_anchors_calculator.cc -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/meidapipe/ssd_anchors_calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/meidapipe/ssd_anchors_calculator.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.cc -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/meidapipe/transpose_conv_bias.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/meidapipe/transpose_conv_bias.cc -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/meidapipe/transpose_conv_bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/meidapipe/transpose_conv_bias.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/palm_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/palm_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_arprobe/image_processor/palm_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/image_processor/palm_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_arprobe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_arprobe/main.cpp -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/00_doc/DeepCalib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/00_doc/DeepCalib.ipynb -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/00_doc/deep_calib.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/00_doc/deep_calib.jpg -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/README.md -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/image_processor/camera_calibration_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/image_processor/camera_calibration_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/image_processor/camera_calibration_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/image_processor/camera_calibration_engine.h -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_camera_deep_calib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_camera_deep_calib/main.cpp -------------------------------------------------------------------------------- /pj_tflite_cls_mobilenet_v2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_cls_mobilenet_v2/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_cls_mobilenet_v2/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_cls_mobilenet_v2/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_cls_mobilenet_v2/image_processor/classification_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_cls_mobilenet_v2/image_processor/classification_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_cls_mobilenet_v2/image_processor/classification_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_cls_mobilenet_v2/image_processor/classification_engine.h -------------------------------------------------------------------------------- /pj_tflite_cls_mobilenet_v2/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_cls_mobilenet_v2/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_cls_mobilenet_v2/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_cls_mobilenet_v2/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_cls_mobilenet_v2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_cls_mobilenet_v2/main.cpp -------------------------------------------------------------------------------- /pj_tflite_depth_midas/00_doc/depth_midas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/00_doc/depth_midas.jpg -------------------------------------------------------------------------------- /pj_tflite_depth_midas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_depth_midas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/README.md -------------------------------------------------------------------------------- /pj_tflite_depth_midas/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_depth_midas/image_processor/depth_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/image_processor/depth_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_depth_midas/image_processor/depth_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/image_processor/depth_engine.h -------------------------------------------------------------------------------- /pj_tflite_depth_midas/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_depth_midas/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_depth_midas/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_depth_midas/main.cpp -------------------------------------------------------------------------------- /pj_tflite_det_dronet/00_doc/dronet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/00_doc/dronet.jpg -------------------------------------------------------------------------------- /pj_tflite_det_dronet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_dronet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/README.md -------------------------------------------------------------------------------- /pj_tflite_det_dronet/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_dronet/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_det_dronet/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_det_dronet/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_det_dronet/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_det_dronet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_dronet/main.cpp -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/00_doc/efficientdet_lite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/00_doc/efficientdet_lite.jpg -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/README.md -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_det_efficientdet_lite/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_efficientdet_lite/main.cpp -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/00_doc/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/00_doc/demo.jpg -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/README.md -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_det_fastestdet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_fastestdet/main.cpp -------------------------------------------------------------------------------- /pj_tflite_det_mobilenetssd_v1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_mobilenetssd_v1/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_mobilenetssd_v1/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_mobilenetssd_v1/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_mobilenetssd_v1/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_mobilenetssd_v1/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_det_mobilenetssd_v1/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_mobilenetssd_v1/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_det_mobilenetssd_v1/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_mobilenetssd_v1/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_det_mobilenetssd_v1/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_mobilenetssd_v1/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_det_mobilenetssd_v1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_mobilenetssd_v1/main.cpp -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/00_doc/nanodet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/00_doc/nanodet.jpg -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/README.md -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_det_nanodet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_nanodet/main.cpp -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/00_doc/yolov5_sort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/00_doc/yolov5_sort.jpg -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/README.md -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_det_yolov5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolov5/main.cpp -------------------------------------------------------------------------------- /pj_tflite_det_yolox/00_doc/yolox_sort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/00_doc/yolox_sort.jpg -------------------------------------------------------------------------------- /pj_tflite_det_yolox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_yolox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/README.md -------------------------------------------------------------------------------- /pj_tflite_det_yolox/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_det_yolox/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_det_yolox/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_det_yolox/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_det_yolox/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_det_yolox/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_det_yolox/main.cpp -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/00_doc/edge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/00_doc/edge.jpg -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/00_doc/edge_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/00_doc/edge_2.jpg -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/README.md -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/image_processor/edge_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/image_processor/edge_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/image_processor/edge_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/image_processor/edge_engine.h -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_edge_dexined/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_edge_dexined/main.cpp -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/00_doc/age_gender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/00_doc/age_gender.jpg -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/README.md -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/image_processor/age_gender_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/image_processor/age_gender_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/image_processor/age_gender_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/image_processor/age_gender_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/image_processor/face_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/image_processor/face_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/image_processor/face_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/image_processor/face_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_face_age-gender-recognition/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_age-gender-recognition/main.cpp -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/00_doc/blazeface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/00_doc/blazeface.jpg -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/README.md -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/image_processor/face_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/image_processor/face_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/image_processor/face_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/image_processor/face_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_face_blazeface/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_blazeface/main.cpp -------------------------------------------------------------------------------- /pj_tflite_face_dbface/00_doc/dbface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/00_doc/dbface.jpg -------------------------------------------------------------------------------- /pj_tflite_face_dbface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_dbface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/README.md -------------------------------------------------------------------------------- /pj_tflite_face_dbface/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_dbface/image_processor/face_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/image_processor/face_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_dbface/image_processor/face_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/image_processor/face_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_dbface/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_face_dbface/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_face_dbface/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_dbface/main.cpp -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/00_doc/facemesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/00_doc/facemesh.jpg -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/README.md -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/image_processor/face_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/image_processor/face_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/image_processor/face_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/image_processor/face_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/image_processor/facemesh_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/image_processor/facemesh_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/image_processor/facemesh_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/image_processor/facemesh_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_face_facemesh/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_facemesh/main.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/image_processor/face_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/image_processor/face_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/image_processor/face_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/image_processor/face_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/image_processor/headpose_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/image_processor/headpose_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/image_processor/headpose_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/image_processor/headpose_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-WHENet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-WHENet/main.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/00_doc/headpose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/00_doc/headpose.jpg -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/README.md -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/image_processor/face_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/image_processor/face_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/image_processor/face_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/image_processor/face_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/image_processor/headpose_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/image_processor/headpose_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/image_processor/headpose_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/image_processor/headpose_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_face_head-pose-estimation-adas-0001/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_head-pose-estimation-adas-0001/main.cpp -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/00_doc/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/00_doc/demo.jpg -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/README.md -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/image_processor/face_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/image_processor/face_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/image_processor/face_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/image_processor/face_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/image_processor/facemesh_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/image_processor/facemesh_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/image_processor/facemesh_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/image_processor/facemesh_engine.h -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_face_landmark_with_attention/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_face_landmark_with_attention/main.cpp -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/hand_landmark_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/hand_landmark_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/hand_landmark_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/hand_landmark_engine.h -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/meidapipe/ssd_anchors_calculator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/meidapipe/ssd_anchors_calculator.cc -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/meidapipe/ssd_anchors_calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/meidapipe/ssd_anchors_calculator.h -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.cc -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/meidapipe/tflite_tensors_to_detections_calculator.h -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/meidapipe/transpose_conv_bias.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/meidapipe/transpose_conv_bias.cc -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/meidapipe/transpose_conv_bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/meidapipe/transpose_conv_bias.h -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/palm_detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/palm_detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/image_processor/palm_detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/image_processor/palm_detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_hand_mediapipe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_hand_mediapipe/main.cpp -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/00_doc/lane_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/00_doc/lane_00.jpg -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/00_doc/lane_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/00_doc/lane_01.jpg -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/README.md -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/dbscan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/dbscan.hpp -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/kdtree.cpp -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/kdtree.h -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/lane_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/lane_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/image_processor/lane_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/image_processor/lane_engine.h -------------------------------------------------------------------------------- /pj_tflite_lane_lanenet-lane-detection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_lanenet-lane-detection/main.cpp -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/00_doc/lane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/00_doc/lane.jpg -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/README.md -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/image_processor/lane_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/image_processor/lane_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/image_processor/lane_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/image_processor/lane_engine.h -------------------------------------------------------------------------------- /pj_tflite_lane_ultra-fast-lane-detection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_lane_ultra-fast-lane-detection/main.cpp -------------------------------------------------------------------------------- /pj_tflite_other_film/00_doc/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/00_doc/demo.jpg -------------------------------------------------------------------------------- /pj_tflite_other_film/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_other_film/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/README.md -------------------------------------------------------------------------------- /pj_tflite_other_film/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_other_film/image_processor/frame_interpolation_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/image_processor/frame_interpolation_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_other_film/image_processor/frame_interpolation_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/image_processor/frame_interpolation_engine.h -------------------------------------------------------------------------------- /pj_tflite_other_film/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_other_film/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_other_film/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_other_film/main.cpp -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/00_doc/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/00_doc/demo.jpg -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/README.md -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/extract_prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/extract_prior_box.py -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/prior_bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/prior_bbox.cpp -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/prior_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/prior_bbox.h -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/image_processor/prior_bbox_256x384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/image_processor/prior_bbox_256x384.cpp -------------------------------------------------------------------------------- /pj_tflite_perception_hybrid_nets/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_perception_hybrid_nets/main.cpp -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/00_doc/person_attribute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/00_doc/person_attribute.jpg -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/README.md -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/feature_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/feature_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/feature_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/feature_engine.h -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_person-attributes-recognition-crossroad-0230/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_person-attributes-recognition-crossroad-0230/main.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/00_doc/centernet_kpts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/00_doc/centernet_kpts.jpg -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/README.md -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/image_processor/pose_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/image_processor/pose_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/image_processor/pose_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/image_processor/pose_engine.h -------------------------------------------------------------------------------- /pj_tflite_pose_centernet_tf_kpts/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_centernet_tf_kpts/main.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/00_doc/pose_movenet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/00_doc/pose_movenet.jpg -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/README.md -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/image_processor/pose_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/image_processor/pose_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/image_processor/pose_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/image_processor/pose_engine.h -------------------------------------------------------------------------------- /pj_tflite_pose_movenet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet/main.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/00_doc/pose_movenet_multi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/00_doc/pose_movenet_multi.jpg -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/README.md -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/image_processor/pose_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/image_processor/pose_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/image_processor/pose_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/image_processor/pose_engine.h -------------------------------------------------------------------------------- /pj_tflite_pose_movenet_multi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_pose_movenet_multi/main.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/00_doc/segmentation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/00_doc/segmentation.jpg -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/README.md -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/image_processor/segmentation_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/image_processor/segmentation_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/image_processor/segmentation_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/image_processor/segmentation_engine.h -------------------------------------------------------------------------------- /pj_tflite_seg_paddleseg_cityscapessota/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_paddleseg_cityscapessota/main.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/00_doc/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/00_doc/demo.jpg -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/README.md -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/image_processor/segmentation_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/image_processor/segmentation_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/image_processor/segmentation_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/image_processor/segmentation_engine.h -------------------------------------------------------------------------------- /pj_tflite_seg_robust_video_matting/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_robust_video_matting/main.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/README.md -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/image_processor/segmentation_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/image_processor/segmentation_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/image_processor/segmentation_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/image_processor/segmentation_engine.h -------------------------------------------------------------------------------- /pj_tflite_seg_topformer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_seg_topformer/main.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_deeplabv3_mnv2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_deeplabv3_mnv2/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_ss_deeplabv3_mnv2/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_deeplabv3_mnv2/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_ss_deeplabv3_mnv2/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_deeplabv3_mnv2/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_deeplabv3_mnv2/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_deeplabv3_mnv2/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_ss_deeplabv3_mnv2/image_processor/semantic_segmentation_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_deeplabv3_mnv2/image_processor/semantic_segmentation_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_deeplabv3_mnv2/image_processor/semantic_segmentation_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_deeplabv3_mnv2/image_processor/semantic_segmentation_engine.h -------------------------------------------------------------------------------- /pj_tflite_ss_deeplabv3_mnv2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_deeplabv3_mnv2/main.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/00_doc/mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/00_doc/mask.jpg -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/00_doc/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/00_doc/result.jpg -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/README.md -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/image_processor/semantic_segmentation_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/image_processor/semantic_segmentation_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/image_processor/semantic_segmentation_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/image_processor/semantic_segmentation_engine.h -------------------------------------------------------------------------------- /pj_tflite_ss_person_mask/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_person_mask/main.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/00_doc/road-segmentation-adas-0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/00_doc/road-segmentation-adas-0001.jpg -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/README.md -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/image_processor/semantic_segmentation_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/image_processor/semantic_segmentation_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/image_processor/semantic_segmentation_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/image_processor/semantic_segmentation_engine.h -------------------------------------------------------------------------------- /pj_tflite_ss_road-segmentation-adas-0001/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_ss_road-segmentation-adas-0001/main.cpp -------------------------------------------------------------------------------- /pj_tflite_style_transfer/00_doc/artistic_style_transfer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/00_doc/artistic_style_transfer.jpg -------------------------------------------------------------------------------- /pj_tflite_style_transfer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_style_transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/README.md -------------------------------------------------------------------------------- /pj_tflite_style_transfer/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_style_transfer/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_style_transfer/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_style_transfer/image_processor/style_prediction_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/image_processor/style_prediction_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_style_transfer/image_processor/style_prediction_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/image_processor/style_prediction_engine.h -------------------------------------------------------------------------------- /pj_tflite_style_transfer/image_processor/style_transfer_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/image_processor/style_transfer_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_style_transfer/image_processor/style_transfer_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/image_processor/style_transfer_engine.h -------------------------------------------------------------------------------- /pj_tflite_style_transfer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_style_transfer/main.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/00_doc/deepsort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/00_doc/deepsort.jpg -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/README.md -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/feature_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/feature_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/feature_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/feature_engine.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/tracker_deepsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/tracker_deepsort.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/image_processor/tracker_deepsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/image_processor/tracker_deepsort.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort/main.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/00_doc/deepsort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/00_doc/deepsort.jpg -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/README.md -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/CMakeLists.txt -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/detection_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/detection_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/detection_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/detection_engine.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/feature_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/feature_engine.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/feature_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/feature_engine.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/image_processor.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/image_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/image_processor.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/tracker_deepsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/tracker_deepsort.cpp -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/image_processor/tracker_deepsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/image_processor/tracker_deepsort.h -------------------------------------------------------------------------------- /pj_tflite_track_deepsort_person-reidentification/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/pj_tflite_track_deepsort_person-reidentification/main.cpp -------------------------------------------------------------------------------- /resource/body_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/body_00.jpg -------------------------------------------------------------------------------- /resource/body_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/body_01.jpg -------------------------------------------------------------------------------- /resource/body_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/body_02.jpg -------------------------------------------------------------------------------- /resource/body_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/body_03.jpg -------------------------------------------------------------------------------- /resource/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/car.jpg -------------------------------------------------------------------------------- /resource/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/cat.jpg -------------------------------------------------------------------------------- /resource/cat_dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/cat_dog.jpg -------------------------------------------------------------------------------- /resource/cat_laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/cat_laptop.jpg -------------------------------------------------------------------------------- /resource/dashcam_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/dashcam_00.jpg -------------------------------------------------------------------------------- /resource/dashcam_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/dashcam_01.jpg -------------------------------------------------------------------------------- /resource/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/dog.jpg -------------------------------------------------------------------------------- /resource/face_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/face_00.jpg -------------------------------------------------------------------------------- /resource/face_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/face_01.jpg -------------------------------------------------------------------------------- /resource/face_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/face_02.jpg -------------------------------------------------------------------------------- /resource/face_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/face_03.jpg -------------------------------------------------------------------------------- /resource/fisheye_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/fisheye_00.jpg -------------------------------------------------------------------------------- /resource/fisheye_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/fisheye_01.jpg -------------------------------------------------------------------------------- /resource/frame_interpolation_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/frame_interpolation_0.jpg -------------------------------------------------------------------------------- /resource/frame_interpolation_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/frame_interpolation_1.jpg -------------------------------------------------------------------------------- /resource/hand_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/hand_00.jpg -------------------------------------------------------------------------------- /resource/hand_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/hand_01.jpg -------------------------------------------------------------------------------- /resource/hand_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/hand_02.jpg -------------------------------------------------------------------------------- /resource/hand_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/hand_03.jpg -------------------------------------------------------------------------------- /resource/kite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/kite.jpg -------------------------------------------------------------------------------- /resource/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/lena.jpg -------------------------------------------------------------------------------- /resource/model/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/model/.gitattributes -------------------------------------------------------------------------------- /resource/model/label_PASCAL_VOC2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/model/label_PASCAL_VOC2012.txt -------------------------------------------------------------------------------- /resource/model/label_coco_80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/model/label_coco_80.txt -------------------------------------------------------------------------------- /resource/model/label_coco_90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/model/label_coco_90.txt -------------------------------------------------------------------------------- /resource/model/label_imagenet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/model/label_imagenet.txt -------------------------------------------------------------------------------- /resource/parrot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/parrot.jpg -------------------------------------------------------------------------------- /resource/style/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/worlds-largest-selfie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/resource/worlds-largest-selfie.jpg -------------------------------------------------------------------------------- /temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/CMakeLists.txt -------------------------------------------------------------------------------- /temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/Main.cpp -------------------------------------------------------------------------------- /temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/model_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/model_utils.cc -------------------------------------------------------------------------------- /temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/model_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_edgetpuapi_cls_mobilenet_v2/model_utils.h -------------------------------------------------------------------------------- /temp_pj_tflite_edgetpupipeline_cls_inception_v3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_edgetpupipeline_cls_inception_v3/CMakeLists.txt -------------------------------------------------------------------------------- /temp_pj_tflite_edgetpupipeline_cls_inception_v3/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_edgetpupipeline_cls_inception_v3/Main.cpp -------------------------------------------------------------------------------- /temp_pj_tflite_simple_cls_mobilenet_v2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_simple_cls_mobilenet_v2/CMakeLists.txt -------------------------------------------------------------------------------- /temp_pj_tflite_simple_cls_mobilenet_v2/ImageProcessor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_simple_cls_mobilenet_v2/ImageProcessor/CMakeLists.txt -------------------------------------------------------------------------------- /temp_pj_tflite_simple_cls_mobilenet_v2/ImageProcessor/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_simple_cls_mobilenet_v2/ImageProcessor/ImageProcessor.cpp -------------------------------------------------------------------------------- /temp_pj_tflite_simple_cls_mobilenet_v2/ImageProcessor/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_simple_cls_mobilenet_v2/ImageProcessor/ImageProcessor.h -------------------------------------------------------------------------------- /temp_pj_tflite_simple_cls_mobilenet_v2/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/play_with_tflite/HEAD/temp_pj_tflite_simple_cls_mobilenet_v2/Main.cpp --------------------------------------------------------------------------------