paulguerrero / pcpnet

Pytorch implementation of PCPNet
Other
169 stars 41 forks source link

For dressing #3

Closed MulinYu closed 5 years ago

MulinYu commented 5 years ago

Hello, Thank u for ur sharing.

I want to know how do you dressing the 3D images which have different color in different place with different properties.

best, mulin

paulguerrero commented 5 years ago

Hi Mulin, to handle points with rgb color values, you could, for example, multiply the the n-dimensional features vectors just before the sum with the colors to get 3n-dimensional feature vectors (then the point functions would act as continuous kernel functions over 3d space), or you could augment the position of the points with the color values to get 6-dimensional input points.

hope that helps, Paul

MulinYu commented 5 years ago

Thanks a lot. best