00001 /*!@file Neuro/ShapeEstimatorModes.H definition of the shape estimator modes */ 00002 00003 // //////////////////////////////////////////////////////////////////// // 00004 // The iLab Neuromorphic Vision C++ Toolkit - Copyright (C) 2000-2003 // 00005 // by the University of Southern California (USC) and the iLab at USC. // 00006 // See http://iLab.usc.edu for information about this project. // 00007 // //////////////////////////////////////////////////////////////////// // 00008 // Major portions of the iLab Neuromorphic Vision Toolkit are protected // 00009 // under the U.S. patent ``Computation of Intrinsic Perceptual Saliency // 00010 // in Visual Environments, and Applications'' by Christof Koch and // 00011 // Laurent Itti, California Institute of Technology, 2001 (patent // 00012 // pending; application number 09/912,225 filed July 23, 2001; see // 00013 // http://pair.uspto.gov/cgi-bin/final/home.pl for current status). // 00014 // //////////////////////////////////////////////////////////////////// // 00015 // This file is part of the iLab Neuromorphic Vision C++ Toolkit. // 00016 // // 00017 // The iLab Neuromorphic Vision C++ Toolkit is free software; you can // 00018 // redistribute it and/or modify it under the terms of the GNU General // 00019 // Public License as published by the Free Software Foundation; either // 00020 // version 2 of the License, or (at your option) any later version. // 00021 // // 00022 // The iLab Neuromorphic Vision C++ Toolkit is distributed in the hope // 00023 // that it will be useful, but WITHOUT ANY WARRANTY; without even the // 00024 // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // 00025 // PURPOSE. See the GNU General Public License for more details. // 00026 // // 00027 // You should have received a copy of the GNU General Public License // 00028 // along with the iLab Neuromorphic Vision C++ Toolkit; if not, write // 00029 // to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, // 00030 // Boston, MA 02111-1307 USA. // 00031 // //////////////////////////////////////////////////////////////////// // 00032 // 00033 // Primary maintainer for this file: Laurent Itti <itti@usc.edu> 00034 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/Neuro/ShapeEstimatorModes.H $ 00035 // $Id: ShapeEstimatorModes.H 14762 2011-05-03 01:13:16Z siagian $ 00036 // 00037 00038 #ifndef SHAPEESTIMATORMODES_H_DEFINED 00039 #define SHAPEESTIMATORMODES_H_DEFINED 00040 00041 #include <string> 00042 00043 //! Possible ShapeEstimator modes 00044 enum ShapeEstimatorMode { 00045 SEMnone = 0, //! No shape estimation 00046 SEMfeatureMap = 1, //! Based on winning feature map 00047 SEMconspicuityMap = 2, //! Based on winning conspicuity map 00048 SEMsaliencyMap = 3, //! Based on saliency map 00049 SEMMTfeatureMap = 4 //! Based of MT feature map 00050 // if you add a new mode here, also update the names in the function below! 00051 }; 00052 00053 //! number of known ShapeEstimator modes: 00054 #define NBSHAPEESTIMATORMODES 5 00055 00056 //! Returns name of given mode 00057 inline const char* shapeEstimatorModeName(const ShapeEstimatorMode p) 00058 { 00059 static const char n[NBSHAPEESTIMATORMODES][15] = { 00060 "None", "FeatureMap", "ConspicuityMap", "SaliencyMap", "MTfeatureMap" }; 00061 return n[int(p)]; 00062 } 00063 00064 00065 //! Possible ShapeEstimator smooth methods 00066 enum ShapeEstimatorSmoothMethod { 00067 SESMnone = 0, //! Don't smooth at all 00068 SESMgaussian = 1, //! smooth by convolving with a Gaussian 00069 SESMchamfer = 2 //! smooth using opening and chamfering 00070 // if you add a new mode here, also update the names in the function below! 00071 }; 00072 00073 //! number of known ShapeEstimator smooth methods 00074 #define NBSHAPEESTIMATORSMOOTHMETHODS 3 00075 00076 //! Returns name of given smooth method 00077 inline const char* shapeEstimatorSmoothMethodName(const ShapeEstimatorSmoothMethod p) 00078 { 00079 static const char n[NBSHAPEESTIMATORSMOOTHMETHODS][15] = { 00080 "None", "Gaussian", "Chamfer" }; 00081 return n[int(p)]; 00082 } 00083 00084 00085 //! ShapeEstimatorMode overload 00086 /*! Format is "name" as defined in ShapeEstimatorModes.H */ 00087 std::string convertToString(const ShapeEstimatorMode val); 00088 //! ShapeEstimatorMode overload 00089 /*! Format is "name" as defined in ShapeEstimatorModes.H */ 00090 void convertFromString(const std::string& str, ShapeEstimatorMode& val); 00091 00092 //! ShapeEstimatorSmoothType overload 00093 /*! Format is "name" as defined in ShapeEstimatorModes.H */ 00094 std::string convertToString(const ShapeEstimatorSmoothMethod val); 00095 00096 //! ShapeEstimatorSmoothType overload 00097 /*! Format is "name" as defined in ShapeEstimatorModes.H */ 00098 void convertFromString(const std::string& str, 00099 ShapeEstimatorSmoothMethod& val); 00100 00101 00102 #endif 00103 00104 // ###################################################################### 00105 /* So things look consistent in everyone's emacs... */ 00106 /* Local Variables: */ 00107 /* indent-tabs-mode: nil */ 00108 /* End: */