1zb / 3DILG

3DILG: Irregular Latent Grids for 3D Generative Modeling
https://1zb.github.io/3DILG/
Other
88 stars 6 forks source link

How to get [near_points] in the datasets #12

Open Frreed opened 1 year ago

Frreed commented 1 year ago

Hi, very thanks for your amazing work. i want to ask how to generate near_pionts myself ?

1zb commented 1 year ago

This is how I preprocess the dataset

    near_points = [
        surface_points + np.random.normal(scale=0.005, size=(N_near, 3)),
        surface_points + np.random.normal(scale=0.05, size=(N_near, 3)),
    ]
    near_points = np.concatenate(near_points)

Given a surface point cloud ( surface_points ), we jitter the point cloud with Gaussian noise.

Frreed commented 1 year ago

@1zb Hi, very thanks for your reply, good luck to you!