google-research / multinerf

A Code Release for Mip-NeRF 360, Ref-NeRF, and RawNeRF
Apache License 2.0
3.58k stars 339 forks source link

How can I generate the kind of continuous 360° poses video like on the website? #15

Closed zhangkai0425 closed 1 year ago

zhangkai0425 commented 1 year ago

Thank you for the code of mipnerf-360!I wonder if there is a way to generate a continuous 360° poses video like on the website?I found that the render_360.sh script can only generate images in the test dataset.

zhangkai0425 commented 1 year ago

Thank you!

bmild commented 1 year ago

Simply change the following flags to the render script to get a smoother video:

  --gin_bindings="Config.render_path_frames = 480" \
  --gin_bindings="Config.render_video_fps = 60" \
zhangkai0425 commented 1 year ago

Thank you bmild!You really solved my problem.