meshless_curve_reconstruction.m

来自「A toolbox to handle 2D curve and multire」· M 代码 · 共 13 行

M
13
字号
function [I,t] = meshless_curve_reconstruction(c, phi,R)

% meshless_curve_reconstruction - reconstruct a curve from point cloud.
%
%   [I,t] = meshless_curve_reconstruction(c, phi, R);
%
%   I is the ordering of the points in c (a 2 x npts matrix).
%   t is the parameterization of the set of points, t(i) \in [0,1]
%   is the parameter for point c(:,i).
%   phi is a callback function eg. phi(x)=1/x if x<1 and 0 otherwise.
%   R is the locallity radius (the smaller, the sparser).
%
%   Copyright (c) 2004 Gabriel Peyr

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?