opening of cortex 2D-surface Iextract = vb_open_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_open_area(Jarea, R, nextIX, nextDD) 0002 % opening of cortex 2D-surface 0003 % Iextract = vb_open_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_cut_area(Jarea, R, nextIX, nextDD); 0015 Iextract = vb_fat_area(Iextract, R, nextIX, nextDD); 0016