from lib.colab_util import generate_video_from_obj, set_renderer, video
renderer = set_renderer() generate_video_from_obj(obj_path, out_img_path, video_path, renderer)
we cannot play a mp4 video generated by cv2
!ffmpeg -i $video_path -vcodec libx264 $video_display_path -y -loglevel quiet video(video_display_path)
ImportError Traceback (most recent call last) in () ----> 1 from lib.colab_util import generate_video_from_obj, set_renderer, video 2 3 renderer = set_renderer() 4 generate_video_from_obj(obj_path, out_img_path, video_path, renderer) 5
4 frames
/usr/local/lib/python3.7/dist-packages/pytorch3d/renderer/blending.py in ()
7
8 # pyre-fixme[21]: Could not find name _C
in pytorch3d
.
----> 9 from pytorch3d import _C
10
11
ImportError: /usr/local/lib/python3.7/dist-packages/pytorch3d/_C.cpython-37m-x86_64-linux-gnu.so: undefined symbol: _ZNK2at6Tensor7is_cudaEv
I found the same problem for Google Colab. Then I solved it from this documentation https://github.com/facebookresearch/pytorch3d/blob/main/INSTALL.md
In general, from inside IPython, or in Google Colab or a Jupyter notebook, you can install with
You have to restart your runtime environment after installing this. In my case, it worked perfectly in Google Colab with GPU instance.