LIU-Yuxin / SyncMVD

Official PyTorch & Diffusers implementation of "Text-Guided Texturing by Synchronized Multi-View Diffusion"
MIT License
123 stars 8 forks source link

triangle faces #3

Closed YuzhiChen001 closed 6 months ago

YuzhiChen001 commented 6 months ago

nice work!I want to know why i should keep the number of triangle faces within around 40,000?

LIU-Yuxin commented 6 months ago

The pytorch3D module uses a set of rules to allocate the buffers, which might not be enough when the mesh has too many triangles. I have not investigated very much on how to refine the rules to support mesh with more triangles, but instead set it statically to a number that seemed to work well for mesh less than 40000, and at the same time don't hurt the speed. When the buffer is overwhelmed, you will see missing faces as the face list get truncated.

YuzhiChen001 commented 6 months ago

thanks a lot!