mediapipe

Problem with installing mediapipe using pip on windows

Problem with installing mediapipe using pip on windows Question: So when i am trying pip install mediapipe i see error like that ERROR: Could not find a version that satisfies the requirement mediapipe (from versions: none) ERROR: No matching distribution found for mediapipe image Here is image of error and pip and python version I …

Total answers: 1

Cannot import mediapipe – "ModuleNotFoundError: No module named 'mediapipe'"

Cannot import mediapipe – "ModuleNotFoundError: No module named 'mediapipe'" Question: I have installed mediapipe , but I can’t import it. pip3 install mediapipe==0.8.4.0 pip3 list mediapipe == 0.8.4 numpy == 1.23.3 opencv-contrib-python == 4.6.0.66 tensorflow == 2.10.0 python –version Python 3.9.6 I try to runn this in the VS Code editor on Mac(Intel) import cv2 …

Total answers: 1

mediapipe real time 3D coordinate printing

mediapipe real time 3D coordinate printing Question: i would like to print a real time 3D Plot of the mediapipe 3D Landmarks. I am able to get the holistic as shown below in real time from a Video File: Now i would like to plot the real time 3D Plot like this: The code i …

Total answers: 2

MediaPipe pose estimator with multiprocessing hangs on its process function

MediaPipe pose estimator with multiprocessing hangs on its process function Question: I am currently trying to implement MediaPipe pose estimator as an independent event-based process with Python’s multiprocessing library, but it hangs on the MediaPipe’s Pose.process() function. I input the frame with another process (readFrames). Whenever a frame is captured, it is written into a …

Total answers: 2

OpenCV(4.5.5) :-1: error: (-5:Bad argument) in function 'cvtColor'

OpenCV(4.5.5) :-1: error: (-5:Bad argument) in function 'cvtColor' Question: Can you guys help me? I’m trying to use my own data (path = data) to create a dataset by applying the mediapipe on my videos. The processed vid (.ny) will be in output folder (path = O_Video) which I have declared previously. No of seq …

Total answers: 2

Transform image from a side to front face view

Transform image from a side to front face view Question: I’m continiously working with face recognition issues and finally decided to try to solve the main one: how to transform face image from partial / side view to front view? The similar issue raised here at Stackoverflow but the only proposals are not working / …

Total answers: 1

Issues compiling mediapipe with pyinstaller on macos

Issues compiling mediapipe with pyinstaller on macos Question: I have issues compiling a project with mediapipe via pyinstaller on macos so far I tried: pyinstaller –windowed –noconsole pose_edge.py pyinstaller –onefile –windowed –noconsole pose_edge.py pyinstaller –noconsole pose_edge.py The .app does not open, and if I try the unix exec, I get Traceback (most recent call last): …

Total answers: 2