Closed brianneoberson closed 6 months ago
Hi, I am sorry, it was a bug with the --with_mask argument, it should be fixed now. Please use the '--use_mask 0' to try run without mask.
Hi, Ok now I only get the error when training with masks (--use_mask 1). It's is still the same error as above. Is there maybe a problem with my masks? They look fine visually but maybe you use a specific format for them?
This error may caused by rendering 0 points, I think the problem may be this mask_prune function. The mask_prune works for our object-centric testing scenes for initialization, but it might over-prune your points. Maybe you can try to comment out this line to see if it helps.
That worked, thanks!
Hello,
I am currently attempting to train your model on my own dataset using masks. I am using the colmap format and estimated the normals with your provided script. I first trained without the _--withmask argument and it worked well but the results are not satisfying. So I tried training with the _--withmask argument but it didn't seem to be using the masks. I realized in this line: https://github.com/turandai/gaussian_surfels/blob/5a6715b9f38176daed3e57f6b83e81419a4228c6/scene/dataset_readers.py#L141 that this was not the correct path to my mask data. My masks have exactly the same name as their corresponding images. So I changed this line to
mask = load_mask(f'{images_folder}/../mask/{image_name}.png')[None]
But now when training with the correct path to my masks and with (but also without) the _--withmask argument I get the following error:Would you have any suggestions as to why this is happening?