SC-GS
                                
                                
                                
                                    SC-GS copied to clipboard
                            
                            
                            
                        met an issue with gui
Building Learnable Gaussians for Nodes! [15/04 14:13:21]
Loading trained model at iteration None [15/04 14:13:21]
Reading camera 1/125Traceback (most recent call last):
File "train_gui.py", line 2079, in 
Could you please give some hint about this error? Thank you! Best.
Hi,
As mentioned in the traceback:
File "/home/yucheng/PycharmProjects/SC-GS/scene/dataset_readers.py", line 165, in readColmapCameras fid = int(image_name) / (num_frames - 1).
The error is encountered when converting the image name frame_783 to an integer. Maybe you can use the counter variable idx  in https://github.com/yihua7/SC-GS/blob/26cd57d09598b2f5d951029808a5ac9f0ff4f626/scene/dataset_readers.py#L127 like fid = idx / (num_frames - 1) or change the conversion code to something like fid = int(image_name.split('_')[-1]) to determine the fid value, which means the timestep at the frame.