ranahanocka / MeshCNN

Convolutional Neural Network for 3D meshes in PyTorch
MIT License
1.56k stars 314 forks source link

The size of convolution kernel of different ResConv layers in MeshCNN #96

Open lsj1211 opened 3 years ago

lsj1211 commented 3 years ago

Hello, I want to know that in the mesh segmentation task, what is the size of convolution kernel of different ResConv layers? Thank you very much.

ranahanocka commented 3 years ago

Hi,

All the convolutional kernels have the same size (5). There are 4 values applied for the 1 ring neighbors, and 1 value applied on the edge itself. In the case of a residual connection, this is the same. image

lsj1211 commented 3 years ago

OK, thanks for your reply very much.