iscas3dv / deformshape

Self-supervised Learning of Implicit Shape Representation with Dense Correspondence for Deformable Objects (ICCV2023)
Other
15 stars 2 forks source link

Generate Dataset #3

Open Frreed opened 8 months ago

Frreed commented 8 months ago

Hi, thank you very much for your excellent work. Can you provide a download link about your dataset. The speed in generating data is very slow, it needs around 1 mins over to generate 1 data.(ever i comment out the geodestic part).

BaowenZ commented 8 months ago

Hi, we recommend to reduce the number and resolutions of depth cameras in dataprocess_DeformingThings4D.py

cloud = get_surface_point_cloud(mesh_scale, surface_point_method='scan', scan_count=100, scan_resolution=1600,
                                        bounding_radius=1, )

Please set scan_count=20 and scan_resolution=400. The function will generate lower-quality SDFs, but our method still works.

Frreed commented 8 months ago

Hi, we recommend to reduce the number and resolutions of depth cameras in dataprocess_DeformingThings4D.py

cloud = get_surface_point_cloud(mesh_scale, surface_point_method='scan', scan_count=100, scan_resolution=1600,
                                        bounding_radius=1, )

Please set scan_count=20 and scan_resolution=400. The function will generate lower-quality SDFs, but our method still works.

ok, thanks, does this method also fit to DHaust dataset ?

BaowenZ commented 8 months ago

Yes, it works.

Frreed commented 8 months ago

Yes, it works.

ok, thank you very much !