Paparazzi
Paparazzi copied to clipboard
Paparazzi: Surface Editing by way of Multi-view Image Processing
According to the different vertex number of the two meshes in /mesh, it is not computed by adding a fixed distance vertex-wise. So how can I process vertexes and faces...
https://github.com/HTDerekLiu/Paparazzi/blob/5ae4ff6375d78152e0798fd222b4f701833909c0/utils/computedNdV.py#L33 Hi 👋 I noticed this line in the code: `dndvVal = np.einsum('ijk,ikl->ijl', bcrossn, minusndivAexpand)` This can be simplified and optimized as: `dndvVal = np.matmul(bcrossn, minusndivAexpand)` - np.matmul uses high-performance...