Home > functions > tool_box > mri_toolbox > mri_point_select_dir > vb_define_mri_point_select.m

vb_define_mri_point_select

PURPOSE ^

define constant for vb_mri_point_select

SYNOPSIS ^

function [def] = vb_define_mri_point_select

DESCRIPTION ^

 define constant for vb_mri_point_select
 [USAGE]
    def = vb_define_mri_point_select;
 [IN]
    none
 [OUT]
    def : constant for vb_mri_point_select

 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 [def] = vb_define_mri_point_select
0002 % define constant for vb_mri_point_select
0003 % [USAGE]
0004 %    def = vb_define_mri_point_select;
0005 % [IN]
0006 %    none
0007 % [OUT]
0008 %    def : constant for vb_mri_point_select
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 
0014 def = struct;
0015 def.STR_NAS         = 'Nasion';
0016 def.STR_LPA         = 'Left PreAuricular';
0017 def.STR_RPA         = 'Right PreAuricular';
0018 def.STR_LEFT_EYE    = 'Left eye';
0019 def.STR_RIGHT_EYE   = 'Right eye';
0020 def.STR_NECK        = 'Neck center core';
0021 def.STR_OTHER       = 'Other point';
0022 
0023 def.POINT_NAME_LIST = {def.STR_NAS, def.STR_LPA, def.STR_RPA, ...
0024                        def.STR_LEFT_EYE, def.STR_RIGHT_EYE, def.STR_NECK, ...
0025                        def.STR_OTHER };

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