Mediapipe was successfully install via PyCharm, OpenCV was successfully install. However, I get this error:
from mediapipe.python._framework_bindings import resource_util
ImportError: DLL load failed: The specified module could not be found.
Mediapipe was successfully install via PyCharm, OpenCV was successfully install. However, I get this error:
from mediapipe.python._framework_bindings import resource_util
ImportError: DLL load failed: The specified module could not be found.
I have eventually solved the problem by installing msvc-runtime.
pip install msvc-runtime
when using python 3.7 it would throw that error, installing msvc-runtime
did not fix the error but somehow downgrading to the earliest version of mediapipe did fix it. (mediapipe 0.8.0)
I had this problem and found out it was caused by running through VScode and using Conda env. I just run it in terminal and the DLL error disappears.