closing of cortical 2D-surface Iextract = vb_close_area(Jarea, R, nextIX, nextDD) 穴を埋める Iextract : 新しい頂点リスト Jarea : 頂点リスト R : 近傍点の半径 ( m ) Made by M. Sato 2004-3-28 Copyright (C) 2011, ATR All Rights Reserved. License : New BSD License(see VBMEG_LICENSE.txt)
0001 function Iextract = vb_close_area(Jarea, R, nextIX, nextDD) 0002 % closing of cortical 2D-surface 0003 % Iextract = vb_close_area(Jarea, R, nextIX, nextDD) 0004 % 穴を埋める 0005 % Iextract : 新しい頂点リスト 0006 % Jarea : 頂点リスト 0007 % R : 近傍点の半径 ( m ) 0008 % 0009 % Made by M. Sato 2004-3-28 0010 % 0011 % Copyright (C) 2011, ATR All Rights Reserved. 0012 % License : New BSD License(see VBMEG_LICENSE.txt) 0013 0014 Iextract = vb_fat_area(Jarea, R, nextIX, nextDD); 0015 Iextract = vb_cut_area(Iextract, R, nextIX, nextDD); 0016