Stand on the shoulders of giants
记录学习,吐槽生活。
基于极大似然坐标的图像变形的MATLAB实现 基于极大似然坐标的图像变形的MATLAB实现
This is an implementation of the paper "Maximum likelihood coordinates". Usage Start by cloning this repository, making
2023-12-22
多维放缩MDS算法 多维放缩MDS算法
在线性代数中我们接触到embedding(嵌入)这一术语,表示从高维到低维空间。考虑一个高维空间中的样本集在低维空间中的形态。 “embedding”也应用在计算机图形学的参数化领域中。 问题 给定高维空间\(\mathbb{R}^n\
2020-11-09
三角网格曲面参数化 三角网格曲面参数化
本文介绍文章 Parametrization and smooth approximation of surface triangulations 中的保形参数化算法,并给出MATLAB程序 曲面参数化问题:对于给定的三角网格曲面\(\m
2020-10-31
均值重心坐标Mean Value Coordinates In 2D代码实现 均值重心坐标Mean Value Coordinates In 2D代码实现
c++实现2维多边形均值重心坐标(代码可能有冗余,未优化代码!): 关于3维中均值重心坐标的实现可参考我的另一篇博客:均值重心坐标Mean Value Coordinates In 3D代码实现 /* /// @brief
2019-10-06
均值重心坐标Mean Value Coordinates In 3D代码实现 均值重心坐标Mean Value Coordinates In 3D代码实现
c++实现: 关于2维中均值重心坐标的实现可参考我的另一篇博客:均值重心坐标Mean Value Coordinates In 2D代码实现 /* /// @brief mean value coordinates in 3
2019-05-09