yifita / 3PU

Patch-base progressive 3D Point Set Upsampling
165 stars 23 forks source link

Train with custom data #3

Closed dima74 closed 5 years ago

dima74 commented 5 years ago

Hello! May I ask for some details about training with my own data (as described in this section).

I have dataset where each point cloud has 2048 points. And I want to train model to upsample from 512 points to 2048 points. As far as I understand I should change these lines to directories with my point clouds. But I have only one directory (with point clouds of size 2048).

yifita commented 5 years ago

Hi, you need to create 512 input points, we used poisson disc sampling to do so. After that you'll have two folders for 512 and 2048 points respectively. Change L35 to a list including these two folders and L41 to [512, 2048] points. Then you should be good to go.