mediapipe icon indicating copy to clipboard operation
mediapipe copied to clipboard

Results 70 mediapipe issues
Sort by recently updated
recently updated
newest added

i install it twice, but the same error. Does anyone know how to solve it? MY PC: CPU:I5-13600K RAM:64G AMD6950XT system information: WINDOWS 11 22H2 22621.2715 pip 23.3.1 Python 3.10.6...

How to predict single image with custom dataset in object detection in google colab?

Hi, I am using your Face Landmarker Detection project on a Huawei Honor V8 model, running the demo you provided, in LIVE_STREAM mode with setDelegate(Delegate.GPU), and trying to process 256...

``` import mediapipe as mp BaseOptions = mp.tasks.BaseOptions ImageClassifier = mp.tasks.vision.ImageClassifier ImageClassifierOptions = mp.tasks.vision.ImageClassifierOptions VisionRunningMode = mp.tasks.vision.RunningMode options = ImageClassifierOptions( base_options=BaseOptions(model_asset_path=r"C:\Users\loong\Downloads\mediapipe\model.tflite"), max_results=5, running_mode=VisionRunningMode.IMAGE) with ImageClassifier.create_from_options(options) as classifier: # The classifier...

Gestures and WebRTC Hi everyone, I am implementing an application that can make video calls over WebRTC and recognise gestures to launch 'shortcuts'. The problem is that I can't manage...

Failed to parse source map from '/node_modules/@mediapipe/tasks-vision/vision_bundle_mjs.js.map' file: Error: ENOENT: no such file or directory, open '/node_modules/@mediapipe/tasks-vision/vision_bundle_mjs.js.map' Failed to parse source map from '/node_modules/@react-three/drei/node_modules/@mediapipe/tasks-vision/vision_bundle_mjs.js.map' file: Error: ENOENT: no such file...

Hello everyone, I am trying to debug the segmentation mask result of PoseLandmarker, but the result texture is blank. I initialize my vision task as the following ``` js const...

I am trying to run Mediapipe Pose in livestream mode ``` options = PoseLandmarkerOptions( base_options=BaseOptions(model_asset_path='pose_landmarker_full.task'), running_mode=VisionRunningMode.LIVE_STREAM, output_segmentation_masks=True, result_callback=print_result) with PoseLandmarker.create_from_options(options) as pose: cap = cv2.VideoCapture(0) i = 0 while (1):...

I generated embeddings for same image in Python and Andorid. Both gives different values. Image: american_pizza.jpg ![american_pizza](https://github.com/googlesamples/mediapipe/assets/33931003/e62ff80c-1a23-4865-8786-b6b657731ec6) Android: ``` [40, -19, 0, -47, -48, -48, 49, -14, 47, -45, 127,...

On the documentation page: https://developers.google.com/mediapipe/solutions/vision/image_segmenter/web_js it is mentioned that segmentForVideo() can also be run in a worker in order to improve performance: ![image](https://github.com/googlesamples/mediapipe/assets/28842661/14814537-c768-48d5-b834-b94d7dedc714) I couldn't find a working example for...