ranahanocka / MeshCNN

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

Can i use models having non triangular polygons or mix of triangular and non triangular? #77

Open abdullahkhan-z opened 4 years ago

ranahanocka commented 4 years ago

Hi @abdullahkhan-z ,

the code currently only supports triangular meshes.

However, it is possible to modify the code to account for quad meshes, or quad-dominant meshes. For example, at least in terms of the convolution it is relatively straight-forward. But, the pooling / edge-collapse on quads/quad-dominant is a bit trickier :)