Home > functions > job > job_edit_area_dir > job_edit_area_dilation.m

job_edit_area_dilation

PURPOSE ^

SYNOPSIS ^

function job_edit_area_dilation(inst_id)

DESCRIPTION ^

 Dilation


 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function job_edit_area_dilation(inst_id)
0002 %
0003 % Dilation
0004 %
0005 %
0006 % Copyright (C) 2011, ATR All Rights Reserved.
0007 % License : New BSD License(see VBMEG_LICENSE.txt)
0008 
0009 global vbmeg_inst; 
0010 
0011 % Stack
0012 job_edit_area_stack(inst_id);
0013 
0014 % Global variables
0015 Iextract = vbmeg_inst.editarea{inst_id}.Iextract;
0016 nextDD = vbmeg_inst.editarea{inst_id}.nextDD;
0017 nextIX = vbmeg_inst.editarea{inst_id}.nextIX;
0018 ed1 = vbmeg_inst.editarea{inst_id}.ed1;
0019 ed3 = vbmeg_inst.editarea{inst_id}.ed3;
0020 
0021 % Dilation
0022 Rfilt = 1e-3*str2num(get(ed1,'String'));
0023 Iextract{1} = vb_fat_area(Iextract{1},Rfilt,nextIX,nextDD);
0024 vbmeg_inst.editarea{inst_id}.Iextract = Iextract;
0025 
0026 % Update screen and vertex number
0027 job_edit_area_update_spatialpattern(inst_id);
0028 set(ed3,'String',num2str(length(Iextract{1})));
0029

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005