charlesq34 / pointnet

PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation
Other
4.71k stars 1.44k forks source link

Generate input format using .off or .obj files #135

Open hjsg1010 opened 5 years ago

hjsg1010 commented 5 years ago

Can I generate .h5 train/test files using modelnet_dataset.py or data_prep_util.py ( in pointnet ) code such as dataset that can be downloaded at http://modelnet.cs.princeton.edu/ModelNet40.zip ??

I really want to test my own dataset that has vertices and edges information such as .off format.

can someone help me?

I would really appreciate it if someone reply me or give me a link with relevant code or information.

Sorry for my poor english skills.

fsbashiri commented 5 years ago

same problem here!

kavnat commented 5 years ago

input format only has xyz data for points and associated labels. if the contents of your data file is simply an array use numpy library to read the contents of the file and declare them as an array into the program. use python libraries for h5 file creation.