VIBE icon indicating copy to clipboard operation
VIBE copied to clipboard

it runed slowly on win10 system only 6+ FPS

Open rocky-DJY opened this issue 4 years ago • 5 comments

rocky-DJY avatar Dec 15 '20 02:12 rocky-DJY

Do you have any hints on how to get it to run on Windows?

tin2tin avatar Dec 18 '20 07:12 tin2tin

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 avatar Dec 18 '20 10:12 carlosedubarreto

@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?

I8Robot avatar Dec 23 '20 01:12 I8Robot

@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.

I8Robot avatar Dec 23 '20 01:12 I8Robot

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 😊

carlosedubarreto avatar Dec 23 '20 14:12 carlosedubarreto