oppo-us-research / SpacetimeGaussians

[CVPR 2024] Spacetime Gaussian Feature Splatting for Real-Time Dynamic View Synthesis
https://oppo-us-research.github.io/SpacetimeGaussians-website/
Other
616 stars 45 forks source link

"OSError Too many open files" on custom dataset #31

Closed bnwei425 closed 8 months ago

bnwei425 commented 8 months ago

Hello, thank you for the excellent work!

I try to train our custom dataset with the configuration of "techni_lite". The scene is captured by 28 cameras, and 50 frames of images and COLMAP sparse model are prepared.

I got an error in function "readColmapCamerasTechnicolor" as " OSError: [Errno 24] Too many open files: 'data/colmap_10/images/CAMP23.png' ", for line "image = Image.open(image_path)". Have you ever met a similar error as this? (I have trained the coffee_martini in Neural3D with our machine and it worked.)

lizhan17 commented 8 months ago

Hi, for "OS error, too many opens" please input like "ulimit -n 4096" in terminal, then you can run the code. (increase 4096 if you have many images)

bnwei425 commented 8 months ago

Thank you for the reponse!