BaowenZ / RaDe-GS

RaDe-GS: Rasterizing Depth in Gaussian Splatting
Other
328 stars 7 forks source link

Error in mesh_extract.py #5

Closed adou0426 closed 1 week ago

adou0426 commented 1 week ago

Loaded gaussians from zrr_train/dtu_scan24/point_cloud/iteration_30000/point_cloud.ply Reading camera 49/49 cameras extent: 6.516932153701783 段错误 (核心已转储)

BaowenZ commented 1 week ago

It seems the marching cube function will throw this when memory is not sufficient. Please increase voxel size for marching cube.

MELANCHOLY828 commented 1 week ago

I have the same problem, did you solve it?thanks

adou0426 commented 1 week ago

I have the same problem, did you solve it?thanks

mesh_extract.py line 59,increase voxel size is ok

voxel_size = 0.002

voxel_size = 0.01

MELANCHOLY828 commented 1 week ago

thanks!!