Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 C++ 中插入球体/半球上的数据?
我有一堆与密度值相关的 theta、phi 球坐标。[西塔 | 披 | 密度] 约 100 点。
如果我对一个新数据点进行采样,而不是在数据中而是在球体上捕获,我如何才能从数据点中找到插值密度值?
样条曲线,RBF,还有什么?
您可以使用类似 Voronoi 细分的方法从现有点创建一组(最好是凸面)面,然后根据与每个顶点的接近程度在这些面内进行插值。
这个答案可能会提供一些有用的指示:
在球体上计算 Voronoi 图的算法?