Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rendering Video without editing #31

Open
brianneoberson opened this issue Apr 26, 2024 · 1 comment
Open

Rendering Video without editing #31

brianneoberson opened this issue Apr 26, 2024 · 1 comment

Comments

@brianneoberson
Copy link

Hello,

I am trying to render a spiral video after training and before doing any editing to the model. I am using the render_traj button, but I get the following error:
File "{path/to}/SC-GS/train_gui.py", line 1884, in <module> gui.render() File "{path/to}/SC-GS/train_gui.py", line 990, in render self.render_customized_trajectory(use_spiral=self.should_render_customized_trajectory_spiral) File "{path/to}/SC-GS/train_gui.py", line 1665, in render_customized_trajectory deform_keypoints, self.animation_time = load_obj(os.path.join(self.args.model_path, deform_keypoint_files[1])) IndexError: list index out of range

It seems like it is looking for deformation keypoints and there are none, but I don't want to deform the model. Any tips on how I can avoid this error?

Best regards,
Brianne

@yihua7
Copy link
Owner

yihua7 commented Apr 28, 2024

Hi,

Indeed, the code here:

rendering_animation = len(deform_keypoint_files) > 0
is that the program checks for the presence of saved handle points before deciding to render the deformation or not. If your intention is to prevent the animation from rendering, you can simply delete the file where these handle points are saved. Since you mentioned that the keypoints saved are None, deleting this file should not result in any loss of important data.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants