?? perform_front_propagation_3d.cpp.svn-base
字號:
/*=================================================================
% perform_front_propagation_3d - perform a Fast Marching front propagation.
%
% OLD : [D,S] = perform_front_propagation_2d(W,start_points,end_points,nb_iter_max,H);
% [D,S,Q] = perform_front_propagation_3d(W,start_points,end_points,nb_iter_max, H, L);
%
% 'D' is a 2D array containing the value of the distance function to seed.
% 'S' is a 2D array containing the state of each point :
% -1 : dead, distance have been computed.
% 0 : open, distance is being computed but not set.
% 1 : far, distance not already computed.
% 'W' is the weight matrix (inverse of the speed).
% 'start_points' is a 3 x num_start_points matrix where k is the number of starting points.
% 'H' is an heuristic (distance that remains to goal). This is a 2D matrix.
%
% Copyright (c) 2004 Gabriel Peyr
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -