// -*- c-basic-offset: 4 -*- /** @file * * @author Ippei UKAI * * $Id: $ * * This 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 2 of the License, or (at your option) any later version. * * This software 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 this software; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. * * Hereby the author, Ippei UKAI, grant the license of this particular file to * be relaxed to the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. Please note however that when the file is linked to or * compiled with other files in this library, the GNU General Public License as * mentioned above is likely to restrict the terms of use further. * */ #ifndef _NONAFILESTITCHER_H #define _NONAFILESTITCHER_H #include #include namespace HuginBase { /** This class will use the stitchPanorama function of nona. The filename * may be automatically modified preserving only the basename. */ class IMPEX NonaFileOutputStitcher : public FileOutputStitcherAlgorithm { public: /// NonaFileOutputStitcher(PanoramaData& panoramaData, AppBase::ProgressDisplay* progressDisplay, const PanoramaOptions& options, const UIntSet& usedImages, const String& filename) : FileOutputStitcherAlgorithm(panoramaData, progressDisplay, options, usedImages, filename, true) {}; /// ~NonaFileOutputStitcher() {}; protected: /// virtual bool runStitcher(); // uses Nona::stitchPanorama() }; } #endif //_H