-
Notifications
You must be signed in to change notification settings - Fork 46
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
Something wrong when trying my own dataset #37
Comments
I found the shape of K is 3. |
Please ensure that your dataset format is consistent with the format processed by colmap. |
@hanhantie233 same problem here,i strictly used colmap to process my dataset and generate the sparse floder and mask floder,but it still had the same issue like you. if i want to process the dataset without mask,what should i do?i simply just delete “--sky_seg” in waymo.sh, it went wrong. but if i provide mask , it have the same problem above... could u tell me how to run the code with the dataset without mask? Thanks again for your amazing work ! @kcheng1021 |
I remember setting the camera model in COLMAP to 'PINHOLE' and removing '--sky_seg' to solve my problem. |
that truly works, thanks!!! but i try to run my indoor dataset it got bad result. wonder it might cause by the lack of nums of the input images?(my dataset just have 14 images..) or it might cause by the lack of use of the loss function(without sky_seg it may not use some part of the loss function) |
I believe the most likely reason is that the camera mode you used to capture your dataset was not "PINHOLE." You can check this in COLMAP. Generate sparse point clouds using both "OPENCV" and "PINHOLE" modes and compare their results. If the "PINHOLE" result is poor, it indicates that camera distortion was not disabled when capturing the dataset. |
that really help me,thanks a lot my friend! @hanhantie233 |
File "train.py", line 372, in <module> training(lp.extract(args), op.extract(args), pp.extract(args), args.test_iterations, args.save_iterations, args.checkpoint_iterations, args.start_checkpoint, args.debug_from) File "train.py", line 41, in training scene = Scene(dataset, gaussians) File "D:\01ZPS_data\models\GaussianPro\scene\__init__.py", line 74, in __init__ self.train_cameras[resolution_scale] = cameraList_from_camInfos(scene_info.train_cameras, resolution_scale, args) File "D:\01ZPS_data\models\GaussianPro\utils\camera_utils.py", line 77, in cameraList_from_camInfos camera_list.append(loadCam(args, id, c, resolution_scale)) File "D:\01ZPS_data\models\GaussianPro\utils\camera_utils.py", line 71, in loadCam sky_mask=resized_sky_mask, normal=resized_normal, depth=resized_depth) File "D:\01ZPS_data\models\GaussianPro\scene\cameras.py", line 53, in __init__ [0, K[1], K[3]], IndexError: index 3 is out of bounds for axis 0 with size 3
I encountered this error when using my own dataset and I'm wondering why.
The text was updated successfully, but these errors were encountered: