1 // -*- c-basic-offset: 4 -*- 2 /** @file 3 * 4 * @author Ippei UKAI <ippei_ukai@mac.com> 5 * 6 * $Id: $ 7 * 8 * This is free software; you can redistribute it and/or 9 * modify it under the terms of the GNU General Public 10 * License as published by the Free Software Foundation; either 11 * version 2 of the License, or (at your option) any later version. 12 * 13 * This software is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * General Public License for more details. 17 * 18 * You should have received a copy of the GNU General Public License 19 * along with this software; if not, write to the Free Software 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. 21 * 22 * Hereby the author, Ippei UKAI, grant the license of this particular file to 23 * be relaxed to the GNU Lesser General Public License as published by the Free 24 * Software Foundation; either version 2 of the License, or (at your option) 25 * any later version. Please note however that when the file is linked to or 26 * compiled with other files in this library, the GNU General Public License as 27 * mentioned above is likely to restrict the terms of use further. 28 * 29 */ 30 31 #include "NonaFileStitcher.h" 32 33 #include <nona/Stitcher.h> 34 35 namespace HuginBase { 36 runStitcher()37 bool NonaFileOutputStitcher::runStitcher() 38 { 39 Nona::stitchPanorama(o_panorama, 40 o_panoramaOptions, 41 getProgressDisplay(), 42 o_filename, 43 o_usedImages, 44 m_advOptions); 45 46 return true; 47 } 48 49 50 } //namespace 51 52