mediapipe icon indicating copy to clipboard operation
mediapipe copied to clipboard

GPU Delegate is not yet supported for Windows

Open maxmelichov opened this issue 1 year ago • 2 comments

Have I written custom code (as opposed to using a stock example script provided in MediaPipe)

No

OS Platform and Distribution

Windows 10

Mobile device if the issue happens on mobile device

No response

Browser and version if the issue happens on browser

No response

Programming Language and version

Python

MediaPipe version

0.10.9

Bazel version

No response

Solution

face_landmarker

Android Studio, NDK, SDK versions (if issue is related to building in Android environment)

No response

Xcode & Tulsi version (if issue is related to building for iOS)

No response

Describe the actual behavior

Just trying to use mediapipe with GPU on windows

Describe the expected behaviour

to work...

Standalone code/steps you may have used to try to get what you need

`
# STEP 1: Import the necessary modules.
import mediapipe as mp
from mediapipe.tasks import python
from mediapipe.tasks.python import vision
import time

# STEP 2: Create an FaceLandmarker object.
base_options = python.BaseOptions(model_asset_path='face_landmarker.task')
options = vision.FaceLandmarkerOptions(base_options=base_options,
                                       output_face_blendshapes=True,
                                       output_facial_transformation_matrixes=True,
                                       num_faces=1)

detector = vision.FaceLandmarker.create_from_options(options)

# STEP 3: Load the input image.
image = mp.Image.create_from_file("business-person.png")
start_time = time.time()
# STEP 4: Detect face landmarks from the input image.
detection_result = detector.detect(image)
end_time = time.time()
print(end_time - start_time)
# STEP 5: Process the detection result. In this case, visualize it.
annotated_image = draw_landmarks_on_image(image.numpy_view(), detection_result)
plt.imshow(cv2.cvtColor(annotated_image, cv2.COLOR_RGB2BGR))`


Error:
`NotImplementedError: GPU Delegate is not yet supported for Windows`

Other info / Complete Logs

No response

maxmelichov avatar Feb 08 '24 14:02 maxmelichov

Hi @maxmelichov,

Currently, GPU support in Python is available for Regular Linux and macOS from version 0.10.8 onwards. Unfortunately, Windows support is not yet available. For additional information, please refer to our release page Python update section.

Thank you

kuaashish avatar Feb 09 '24 05:02 kuaashish

This issue has been marked stale because it has no recent activity since 7 days. It will be closed if no further activity occurs. Thank you.

github-actions[bot] avatar Feb 17 '24 01:02 github-actions[bot]

This issue was closed due to lack of activity after being marked stale for past 7 days.

github-actions[bot] avatar Feb 25 '24 01:02 github-actions[bot]