NAME
Panotools::Script - Panorama Tools scripting
SYNOPSIS
Read, write and manipulate hugin script files.
DESCRIPTION
Panorama Tools script files are used by several tools, including PTStitcher, PTOptimizer, autooptimiser, nona and PTmender.
There are GUI tools to help create them: hugin, PTGui, PTAssembler, autopano-sift and PTMac.
USAGE
my $p = new Panotools::Script;
$p->Read ('/path/to/script.txt');
$p->Write ('/path/to/script.txt');
File paths in a Panorama Tools script file are generally relative to the directory containing the script. Modify this or otherwise prefix the filenames by supplying an optional second argument:
$p->Write ('/path/to/script.txt', '../path/to/prefix/tofiles');
Clone a script object
$clone = $p->Clone;
Access various sections of the scriptfile:
$p->Mode; # a L<Panotools::Script::Line::Mode> object
$p->Panorama; # a L<Panotools::Script::Line::Panorama> object
$p->Variable; # a L<Panotools::Script::Line::Variable> object
$p->Image; # an array of L<Panotools::Script::Line::Image> objects
$p->Output; # an array of L<Panotools::Script::Line::Output> objects
$p->Control; # an array of L<Panotools::Script::Line::Control> objects
$p->ControlMorph; # an array of L<Panotools::Script::Line::ControlMorph> objects
Rotate transform all the images in a project, angles in degrees:
$p->Transform ($roll, $pitch, $yaw);
'o' output lines are generated by PTOptimizer and contain stitching parameters for each input image. 'i' image lines provide parameters for optimisation as well as stitching.
Update the 'image' lines based on 'output' lines and vice-versa like so:
$p->Output2Image;
$p->Image2Output;
COPYRIGHT
Copyright (c) 2001 Bruno Postle <bruno@postle.net>. All Rights Reserved.
This program 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA