vid2densepose icon indicating copy to clipboard operation
vid2densepose copied to clipboard

Convert your videos to densepose and use it on MagicAnimate

Results 13 vid2densepose issues
Sort by recently updated
recently updated
newest added

Don't understand what is the issue. Followed the steps mentioned in Readme ``` (venv) C:\tut\vid2densepose>pip install git+https://github.com/facebookresearch/detectron2@main#subdirectory=projects/DensePose Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com Collecting git+https://github.com/facebookresearch/detectron2@main#subdirectory=projects/DensePose Cloning https://github.com/facebookresearch/detectron2 (to revision main) to...

The Process runs, however when complete there is a black screen in the wrong aspect-ratio and the vid won't playback. I am able to successfully download the Densepose mp4, but...

i can run the main.py without any error information output, and the output.mp4 exists. But it seems that the mp4 is damaged. how to solve it?

pip install git+https://github.com/facebookresearch/[email protected]#subdirectory=projects/DensePose 选择v0.6,而不是main,main在linux下没问题。但是windows下无法编译。 其次,提醒大家,cv2的typing目录下的__init__.py文件要修改严谨。 如:D:\anaconda3\Lib\site-packages\cv2\typing\__init__.py 第68-83行所有的赋值都缺了单引号‘‘,不严谨,会报错,应该改成: if numpy.lib.NumpyVersion(numpy.__version__) > "1.20.0" and sys.version_info >= (3, 9): NumPyArrayGeneric = 'numpy.ndarray[typing.Any, numpy.dtype[numpy.generic]]' else: NumPyArrayGeneric = 'numpy.ndarray' if numpy.lib.NumpyVersion(numpy.__version__) > "1.20.0" and sys.version_info...

question

Hi I have a error when I use the "py main.py" command, the error : File "C:\vid2densepose\main.py", line 1, in from detectron2.config import get_cfg ModuleNotFoundError: No module named 'detectron2.config' Please...

bug
question

"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\bin\HostX86\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Users\llpcx\AppData\Local\Temp\pip-install-nrfen3i0\detectron2_2c20f9532f7d4f15a2d3dfb350083550\detectron2\layers\csrc -IC:\Users\llpcx\anaconda3\Lib\site-packages\torch\include -IC:\Users\llpcx\anaconda3\Lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\llpcx\anaconda3\Lib\site-packages\torch\include\TH -IC:\Users\llpcx\anaconda3\Lib\site-packages\torch\include\THC -IC:\Users\llpcx\anaconda3\include -IC:\Users\llpcx\anaconda3\Include "-IC:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\include" "-IC:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\ATLMFC\include" "-IC:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\VS\include"...

question

Hi! I've tried to launch the Gradio app from Google Colab and allow users to control it from the web UI. Could you accept this modification? Thank you!

Dear Vid2DensePose Maintainers, I hope this message finds you well. I am reaching out to report an issue I've encountered while utilising the Vid2DensePose tool for a project aimed at...

Adding tqdm progress bar for more accurate completion time

Adding a progress bar that is more accurate and informative than the gradio one. ``` from tqdm import tqdm # Import tqdm # Process each frame with tqdm total_frames =...

enhancement