00001 // -*- c-basic-offset: 4 -*- 00009 /* This is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU General Public 00011 * License as published by the Free Software Foundation; either 00012 * version 2 of the License, or (at your option) any later version. 00013 * 00014 * This software is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * Lesser General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public 00020 * License along with this software; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 * 00023 */ 00024 00025 #ifndef _OPTSWITCHES_H 00026 #define _OPTSWITCHES_H 00027 00028 namespace HuginBase { 00029 00031 enum OptimizerSwitches 00032 { 00033 OPT_PAIR=0x0001, 00034 OPT_POSITION=0x0002, 00035 OPT_VIEW=0x0004, 00036 OPT_BARREL=0x0008, 00037 OPT_ALL=0x0010, 00038 OPT_TRANSLATION=0x0020, 00039 OPT_EXPOSURE=0x0001, 00040 OPT_WHITEBALANCE=0x0002, 00041 OPT_VIGNETTING=0x0004, 00042 OPT_VIGNETTING_CENTER=0x0008, 00043 OPT_RESPONSE=0x0010 00044 }; 00045 00046 } // namespace 00047 #endif // _OPTSWITCHES_H
1.3.9.1