1 // -*- c-basic-offset: 4 -*-
2 /** @file panotools/PanoToolsUtils.h
3  *
4  *  @brief Utility calls into PanoTools using CPP interface
5  *
6  *  @author Gerry Patterson <thedeepvoice@gmail.com>
7  *
8  *  $Id: PanoToolsUtils.h 2510 2007-10-28 22:24:11Z dangelo $
9  *
10  *  This is free software; you can redistribute it and/or
11  *  modify it under the terms of the GNU General Public
12  *  License as published by the Free Software Foundation; either
13  *  version 2 of the License, or (at your option) any later version.
14  *
15  *  This software is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  *  Lesser General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public
21  *  License along with this software. If not, see
22  *  <http://www.gnu.org/licenses/>.
23  *
24  */
25 
26 #ifndef _PANOTOOLS_PTUTILS_H
27 #define _PANOTOOLS_PTUTILS_H
28 
29 #include <hugin_shared.h>
30 #include <panodata/PanoramaData.h>
31 
32 
33 namespace HuginBase
34 {
35 namespace PTools
36 {
37 
38     /** Update the Ctrl Point errors without optimizing
39      */
40     IMPEX void calcCtrlPointErrors(PanoramaData & pano);
41 
42 } // PTools namespace
43 } // HuginBase namespace
44 
45 #endif // _H
46