


getSegInfoNames : names for the 19 parameters used to calculate the
segments' scores.
OUTPUT :
segInfoNames : names of parameters for segments' scorings.
Copyright (C) 2016 Wiggins Lab
Written by Stella Stylianidou
University of Washington, 2016
This file is part of SuperSegger.
SuperSegger is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
SuperSegger is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with SuperSegger. If not, see <http://www.gnu.org/licenses/>.

0001 function segInfoNames = getSegInfoNames() 0002 % getSegInfoNames : names for the 19 parameters used to calculate the 0003 % segments' scores. 0004 % 0005 % OUTPUT : 0006 % segInfoNames : names of parameters for segments' scorings. 0007 % 0008 % Copyright (C) 2016 Wiggins Lab 0009 % Written by Stella Stylianidou 0010 % University of Washington, 2016 0011 % This file is part of SuperSegger. 0012 % 0013 % SuperSegger is free software: you can redistribute it and/or modify 0014 % it under the terms of the GNU General Public License as published by 0015 % the Free Software Foundation, either version 3 of the License, or 0016 % (at your option) any later version. 0017 % 0018 % SuperSegger is distributed in the hope that it will be useful, 0019 % but WITHOUT ANY WARRANTY; without even the implied warranty of 0020 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0021 % GNU General Public License for more details. 0022 % 0023 % You should have received a copy of the GNU General Public License 0024 % along with SuperSegger. If not, see <http://www.gnu.org/licenses/>. 0025 0026 segInfoNames = { '1 : Minimum phase intensity on the segment', ... 0027 '2: Mean phase intensity on the segment', ... 0028 '3: Area of the segment', ... 0029 '4: Mean second d of the phase normal to the segment', ... 0030 '5: Second d of the phase normal to the segment at the min pixel', ... 0031 '6: Second d of the phase parallel to the segment at the min pixel', ... 0032 '7: min area of neighboring regions', ... 0033 '8: max area of neighboring regions',... 0034 '9: min length of the minor axis of the neighboring regions',... 0035 '10: max length of the minor axis of the neighboring regions',... 0036 '11: min length of the major axis of the neighboring regions', ... 0037 '12: max length of the major axis of the neighboring regions', ... 0038 '13: length of minor axis', ... 0039 '14: length of major axis', ... 0040 '15: square of length of major axis', ... 0041 '16: max length of region projected onto the major axis segment',... 0042 '17: min length of region projected onto the major axis segment', ... 0043 '18: max length of region projected onto the minor axis segment',... 0044 '19: min length of region projected onto the minor axis segment', ... 0045 }; 0046 0047 segInfoNames = segInfoNames' 0048 end