From c73ff261adbdcf2dace2fffc2202c3eae22f942f Mon Sep 17 00:00:00 2001 From: Tarun Jain Date: Fri, 24 Feb 2023 19:37:30 +0530 Subject: [PATCH 1/3] Fix Broken Link in Object Detection solutions --- docs/solutions/object_detection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/solutions/object_detection.md b/docs/solutions/object_detection.md index 7ae5e9aff..71d6063bc 100644 --- a/docs/solutions/object_detection.md +++ b/docs/solutions/object_detection.md @@ -108,9 +108,9 @@ on how to build MediaPipe examples. * With a TensorFlow Model This uses the - [TensorFlow model](https://github.com/google/mediapipe/tree/master/mediapipe/models/object_detection_saved_model) + [TensorFlow model](https://github.com/google/mediapipe/tree/master/mediapipe/graphs/object_detection) ( see also - [model info](https://github.com/google/mediapipe/tree/master/mediapipe/models/object_detection_saved_model/README.md)), + [model info](https://github.com/google/mediapipe/tree/master/mediapipe/modules/objectron)), and the pipeline is implemented in this [graph](https://github.com/google/mediapipe/tree/master/mediapipe/graphs/object_detection/object_detection_mobile_cpu.pbtxt). From 38ec8ae842ceb4083129a4da325a56e41799bd08 Mon Sep 17 00:00:00 2001 From: Tarun Jain Date: Thu, 2 Mar 2023 21:04:53 +0530 Subject: [PATCH 2/3] link updated --- docs/solutions/object_detection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/solutions/object_detection.md b/docs/solutions/object_detection.md index 7b18c0b08..09c178447 100644 --- a/docs/solutions/object_detection.md +++ b/docs/solutions/object_detection.md @@ -118,7 +118,7 @@ on how to build MediaPipe examples. * With a TensorFlow Model This uses the - [TensorFlow model](https://github.com/google/mediapipe/tree/master/mediapipe/graphs/object_detection) + [TensorFlow model](https://github.com/google/mediapipe/tree/v0.8.10/mediapipe/models/object_detection_saved_model) ( see also [model info](https://github.com/google/mediapipe/tree/master/mediapipe/modules/objectron)), and the pipeline is implemented in this From 54e597216b08f43a74c542347301d791415b8a9c Mon Sep 17 00:00:00 2001 From: Tarun Jain Date: Sat, 4 Mar 2023 22:58:12 +0530 Subject: [PATCH 3/3] np used in the program but not imported --- docs/solutions/pose.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/solutions/pose.md b/docs/solutions/pose.md index 3226ddc2f..41dad28e1 100644 --- a/docs/solutions/pose.md +++ b/docs/solutions/pose.md @@ -268,6 +268,7 @@ Supported configuration options: ```python import cv2 +import numpy as np import mediapipe as mp mp_drawing = mp.solutions.drawing_utils mp_drawing_styles = mp.solutions.drawing_styles