You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
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
The text was updated successfully, but these errors were encountered: