?? perform_fast_marching_mesh.m.svn-base
字號:
function [D,S,Q] = perform_fast_marching_mesh(vertex, faces, start_points, options)% perform_fast_marching_mesh - launch the Fast Marching algorithm on a 3D mesh.%% [D,S,Q] = perform_fast_marching_mesh(vertex, faces, start_points, options)%% vertex, faces: a 3D mesh% start_points(i) is the index of the ith starting point .%% D is the distance function to the set of starting points.% S is the final state of the points : -1 for dead (ie the distance% has been computed), 0 for open (ie the distance is only a temporary% value), 1 for far (ie point not already computed). Distance function% for far points is Inf.% Q is the index of the closest point. Q is set to 0 for far points.% Q provide a Voronoi decomposition of the domain. %% Optional:% - You can provide non-uniform speed in options.W.% - You can provide special conditions for stop in options :% 'options.end_points' : stop when these points are reached% 'options.nb_iter_max' : stop when a given number of iterations is% reached.% - You can provide an heuristic in options.heuristic (typically that try to guess the distance% that remains from a given node to a given target).% This is an array of same size as W.% - You can provide a map L=options.constraint_map that reduce the set of% explored points. Only points with current distance smaller than L% will be expanded. Set some entries of L to -Inf to avoid any% exploration of these points.%% Copyright (c) 2004-2006 Gabriel Peyr?options.null = 0;nverts = max(size(vertex));end_points = getoptions(options, 'end_points', []);verbose = getoptions(options, 'verbose', 1);nb_iter_max = getoptions(options, 'nb_iter_max', Inf);W = getoptions(options, 'W', ones(nverts,1) );L = getoptions(options, 'constraint_map', []);H = getoptions(options, 'heuristic', []);values = getoptions(options, 'values', []);dmax = getoptions(options, 'dmax', 1e9);I = find(L==-Inf); L(I)=-1e9;I = find(L==Inf); L(I)=1e9;nb_iter_max = min(nb_iter_max, 1.2*max(size(W)));if size(vertex,1)>size(vertex,2) vertex = vertex';endif size(faces,1)>size(faces,2) faces = faces';endstart_points = start_points(:);end_points = end_points(:);% use fast C-coded version if possibleif exist('perform_front_propagation_2d')~=0 [D,S,Q] = perform_front_propagation_mesh(vertex, faces-1, W,start_points-1,end_points-1, nb_iter_max, H, L, values, dmax); Q = Q+1;else error('You have to run compiler_mex before.');end% replace C 'Inf' value (1e9) by Matlab Inf value.I = find( D>1e8 );D(I) = Inf;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -