Rana Hanocka
Rana Hanocka
Hi @Yuxiaoy , Yes, please continue to read to the next line in the [wiki](https://github.com/ranahanocka/MeshCNN/wiki/Segmentation#preparing-a-different-segmentation-dataset) . There is a link to the code and description how to do it -...
Hi @mia-minyoung , Thanks for the kind words. First of all , what is the task you are trying to solve? Classification, segmentation, or something else (e.g., regression?)? We handled...
Hi @yuvaramsingh94 , In general, there are a few Mesh data-structures you can look at, which give adjacency information. For example, the ["gemm_edges"](https://github.com/ranahanocka/MeshCNN/blob/15b83cc6a4db968baf6cf595df78995a9c2dcee3/models/layers/mesh_prepare.py#L116) or ["edge_points"](https://github.com/ranahanocka/MeshCNN/blob/15b83cc6a4db968baf6cf595df78995a9c2dcee3/models/layers/mesh_prepare.py#L356). This gives the four vertices...
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...
Hi @claell , For some reason, the code is complaining that the meshes are empty (i.e., edges is an empty sequence). Is it possible your mesh contains all non-manifold geometry?...
Hi @claell , I am not sure why slide_verts cause this problem (it simply perturbs the vertex location slightly). You can view the .obj files in [meshlab](http://www.meshlab.net/), and check for...
Hi @claell , Yes -- I recommend using subdivision to upsample the number of faces. The idea is that the network should see 3D models of roughly the same resolution....
Hi @claell -- I just took a look a couple meshes you sent. Some of them have very high genus -- (meaning a lot of holes). High genus shapes are...
Hi @claell , > However it is still weird and might also not be good that I have to set `ninput_edges` to `2000`. All shapes should have below 900 edges....
Hi @jay-thakur , I think you said you were looking for how to create the .edges file that the segmentation dataset prep code expects right? You should export the .edges...