~ubuntu-branches/ubuntu/trusty/hugin/trusty-proposed

« back to all changes in this revision

Viewing changes to src/tools/pto2mk.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2011-01-06 14:28:24 UTC
  • mfrom: (1.1.9 upstream) (0.1.21 experimental)
  • Revision ID: james.westby@ubuntu.com-20110106142824-zn9lxylg5z44dynn
* Drop Cyril Brulebois from Uploaders. Thank you very much for your work.
* Bump package version. (rc3 was re-released as 2010.4.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
#include <hugin_basic.h>
47
47
#include <hugin_utils/platform.h>
48
 
#include <algorithms/panorama_makefile/PanoramaMakefileExport.h>
 
48
#include <algorithms/panorama_makefile/PanoramaMakefilelibExport.h>
49
49
 
50
50
#include <tiffio.h>
51
51
 
124
124
    }
125
125
 
126
126
    // todo: populate from user preferences?
127
 
    HuginBase::PanoramaMakefileExport::PTPrograms progs;
 
127
    HuginBase::PanoramaMakefilelibExport::PTPrograms progs;
128
128
 
129
129
    progs.exiftool_opts = HUGIN_EXIFTOOL_COPY_ARGS;
130
130
    // stitch only active images
139
139
    }
140
140
 
141
141
    std::vector<std::string> outputFiles;
142
 
    HuginBase::PanoramaMakefileExport::createMakefile(pano,
 
142
    HuginBase::PanoramaMakefilelibExport::createMakefile(pano,
143
143
            activeImgs,
144
144
            ptoFile,
145
145
            prefix,
148
148
            outputFiles,
149
149
            makeFileStream,
150
150
            "");
 
151
 
151
152
    return 0;
152
153
}