Xrvitd / CWF

Code of CWF: Consolidating Weak Features in High-quality Mesh Simplification, ACM Transactions on Graphics, SIGGRAPH 2024
https://ruixu.me/html/CWF/index.html
GNU Affero General Public License v3.0
224 stars 14 forks source link

CPD / CVT #15

Closed JianlayWang closed 1 month ago

JianlayWang commented 1 month ago

我在阅读您的代码时发现,代码中在实现RVD的时候对于每个site添加了权重,同时您代码中优化部分有CPD和CVT两种方法,我想问一下,您为什么选择最后基于质心Voronoi图来实现,而不是CPD来实现?CPD有了站点权重后的自由度应该会更高吧?

Xrvitd commented 1 month ago

CPD本身的solver不太稳定,而且也很难去给每个点定义一个合理的weight,所以就没有使用。

JianlayWang commented 1 month ago

好的,感谢回复。