VIBE
VIBE copied to clipboard
it runed slowly on win10 system only 6+ FPS
Do you have any hints on how to get it to run on Windows?
You can get the orientations given to linux, and convert the sh file to equivalent on windows.
probably youll have problems instaling torch 1.4.0, you can solve that upgrading pip to the last version you mayb have problems with intalling tensorboard, but you can remove it from the requirements file, it worked for me.
I sugest you to see this issue https://github.com/mkocabas/VIBE/issues/155 , I followed it and helped me a lot to install in windows.
you may also download ffmpeg and add the bin directory (where the ffmep.exe file is) to the system path.
and when you run the demo.py, run it in cmd with administrator privilege. I guess these were the most important things I did to be able to use it on windows.
Oh, if you have problems saying that you have low memory on you GPU, try changing these parameters inside the demo.py
parser.add_argument('--tracker_batch_size', type=int, default=3, parser.add_argument('--vibe_batch_size', type=int, default=16,
@carlosedubarreto I got this error"self._handle = _dlopen(self._name, mode) OSError: [WinError 126]" and "ImportError: ('Unable to load EGL library'" , when I install on Windows10. Have you ever meet?
@carlosedubarreto I got this error"self._handle = _dlopen(self._name, mode) OSError: [WinError 126]" and "ImportError: ('Unable to load EGL library'" , when I install on Windows10. Have you ever meet?
This issue #101 is help. I followed it and solve my problem.
Great @I8Robot . I really forgot about that part. But I'll add bellow.
The error "Unable to load EGL library" on windows is solved commenting
os.environ['PYOPENGL_PLATFORM'] = 'egl' in demo.py
And that issue was also where I ´ve found the solution 😊