Add Hugin binaries

This commit is contained in:
yann64
2023-10-19 11:41:58 +02:00
parent 74829732ce
commit 7f3c404757
199 changed files with 55284 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,2 @@
App/Hugin
Data/settings Data/settings
*.exe *.exe

BIN
App/Hugin/bin/Iex-3_1.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
App/Hugin/bin/Imath-3_1.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
App/Hugin/bin/celeste.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/charset-1.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/exiv2.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/fftw3.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/glew32.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/gsl.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/gslcblas.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/huginbase.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
App/Hugin/bin/iconv-2.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
App/Hugin/bin/jpeg62.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/lcms2.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/libexpat.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/liblzma.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/libpng16.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
App/Hugin/bin/pano13.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/sqlite3.dll Normal file

Binary file not shown.

BIN
App/Hugin/bin/tiff.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
App/Hugin/bin/zlib1.dll Normal file

Binary file not shown.

View File

@@ -0,0 +1,47 @@
# File format for configure assistant of hugin_executor
# extension: .assistant
# Format: basically an ini file format
# each line is an own entry
# in form key=value
# no multi-line entries allowed
# comments start with # or ;
# grouped into several sections
# General section
[General]
# short description, displayed in GUI, required
Description=Short description
# help text, displayed in GUI
Help=A short help text
# number of steps to follow
StepCount=2
# for each step an own step section has to follow
[Step0]
# optional description
# is shown in progress window when running this step
Description=Searching control points...
# program name, can also include a full path
Program=cpfind
# arguments for the command, use placeholder %project%
# for project filename and %image0% for first image
# file, %imagelist% return a temporary file with
# all images (one filename per line)
Arguments=--multirow --output=%project% %project%
# Condition, if the step should be executed
# recognized are:
# no cp - project contains no control points
# not connected - images are not connected
# no line cp - no line control points
# single image - project contains only a single image
# keep in mind, that the condition is only evaluated at the start
# (it is not updated after running a command in the sequence)
Condition=not connected
[Step1]
Description=Optimizing...
Program=autooptimiser
Arguments=-a -m -l -s --output=%project% %project%

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,148 @@
# File format for configure output of hugin_executor
# extension: .executor
# Format: basically an ini file format
# each line is an own entry
# in form key=value
# no multi-line entries allowed
# comments start with # or ;
# grouped into several sections
# General section
[General]
# short description, displayed in GUI and as name for menu item
# it is required
Description=Short description
# help text, displayed in statusbar when selected in menu
Help=A short help text
# number of steps to follow
StepCount=2
# format of intermediate images: normally tif or exr
# if missing tif is assumed
IntermediateImageType=tif
# sets to 0 if one tool in the queue does not work with cropped tiff output
# this setting is only used when running from Hugin or hugin_stitch_project
SupportsCroppedTIFF=1
# for each step an own step section has to follow
[Step0]
# optional description
# is shown in progress window when running this step
Description=Remapping images
# type of command (required)
# specify which files are processed, only one per section
# valid values are remap|merge|stack|layer|modify|exiftool
Type=remap
# for "Type=remap" the following keys are supported
# arguments for running nona (required)
# "-o prefix project.pto" will be automatically appended
Arguments=-r ldr -m TIFF_m
# should exposure layers be saved? 0 - no (default), 1 - yes
# this automatically adds the switch "--create-exposure-layers"
OutputExposureLayers=0|1
# should the intermediate images be kept? 0 - no (default), 1 - yes
Keep=0
[Step1]
Description=Fusing all stacks
Type=stack
# for "Type=stack" and "Type=layer" the following keys are supported
# program to be run, can be with full path, it will be run for each
# stack or exposure layer (required)
# on Windows: use / or double backslash \\ as path separator
Program=enfuse
# argument for running merger (required)
# the following placeholders will be replaced:
# %output% - output filename (required)
# %input% - all input images (required)
# %size% - widthxheight+left+top
Arguments=--output=%output% %input%
# additional argument which is added for 360 deg output
WrapArgument=-w
# should the intermediate images be kept? 0 - no (default), 1 - yes
Keep=1
[Step2]
Description=Blending with enblend
Type=merge
# for "Type=merge" the following keys are supported
# which images are used as input: all|stacks|layers
Input=all|stacks|layers
# program to be run, can be with full path (required)
# on Windows: use / or double backslash \\ as path separator
Program=enblend
# specify which file will be created (required)
# keep in mind, that you have the specify the extension of the final image
# the placeholder %prefix% will be replace with the actual prefix
Result=%prefix%.tif
# argument for running merger (required)
# the following placeholders will be replaced:
# %result% - output filename (required)
# %input% - all remapped images (required)
# %size% - widthxheight+left+top
Arguments=--output=%result% %input%
# additional argument which is added for 360 deg output
WrapArgument=-w
# should the intermediate images be kept? 0 - no, 1 - yes (default)
Keep=1
[Step3]
Description=Modifying files
Type=modify
# for "Type=modify" the following keys are supported
# which images are used as input: all|stacks|layers|...
# all all remapped images will be modified (one after one)
# stacks all stack images will be modified
# layers all exposure layers images will be modfied
# or specify a image file created in previous step, e.g.
File=%prefix%.tif
# program to be run, can be with full path (required)
# on Windows: use / or double backslash \\ as path separator
Program=mogrify
# argument for running modifier (required)
# the following placeholders will be replaced:
# %file% - filename (required)
# %project% - project filename (optional)
# %prefix% - prefix as given (optional)
# %prefix,postfix% - prefix with given postfix (optional)
# %width%, %height% - width and height of final image (optional)
# %width*0.5% - both can be multiplied by a fixed factor
# %sourceimage% - filename of source image (optional, only valid when File=all)
Arguments=-posterize 8 %file%
[Step4]
Description=Updating metadata
Type=exiftool
# for "Type=exiftool" the following keys are supported
# specify which file will be modified by the exiftool command (required)
Result=%prefix%.tif
# argument for exiftool (required)
# the following placeholders will be replaced:
# %result% - filename (required)
# %image0% - filename of first image (optional)
Arguments=-overwrite_original -TagsFromFile %image0% -ImageDescription -Make -Model -Artist -WhitePoint -Copyright -GPS:all -DateTimeOriginal -CreateDate -UserComment -ColorSpace -OwnerName -SerialNumber %result%

122
App/Hugin/doc/fulla.html Normal file
View File

@@ -0,0 +1,122 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML><HEAD><TITLE>Man page of FULLA</TITLE>
</HEAD><BODY>
<H1>FULLA</H1>
<H2>NAME</H2>
fulla - Perform vignetting, radial distortion and chromatic aberration correction
<A NAME="lbAC">&nbsp;</A>
<H2>SYNOPSIS</H2>
<B>fulla</B>
<I>[options]</I>
<I>input files</I>
<A NAME="lbAD">&nbsp;</A>
<H2>DESCRIPTION</H2>
Apply radial or flatfield vignetting correction as well as geometrical radial
distortion and transversal chromatic aberration correction.
<P>
fulla can be used to batch correct a large number of files. Radial distortion coefficients can be read from a PTLens database (only database version 4.2 is supported).
<P>
Vignetting correction is done the same way as described in the nona script file documentation.
Vignetting correction can be done based on a flatfield or a radial scaling.
<P>
Vignetting correction by flatfield division:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I&nbsp;=&nbsp;I&nbsp;/&nbsp;c,&nbsp;&nbsp;&nbsp;&nbsp;c&nbsp;=&nbsp;flatfield&nbsp;/&nbsp;mean(flatfield)
<P>
Radial vignetting correction:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I&nbsp;=&nbsp;I&nbsp;/&nbsp;c,&nbsp;&nbsp;&nbsp;&nbsp;c&nbsp;=&nbsp;a&nbsp;+&nbsp;b*r^2&nbsp;+&nbsp;c*r^4&nbsp;+&nbsp;d*r^6
<P>
Correct vignetting by addition, rather than by division:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I&nbsp;=&nbsp;I&nbsp;+&nbsp;c
<P>
<P>
<P>
The radial correction is identical to the one implemented by panotools:
<P>
r_new = a*r^4 + b*r^3 + c*r^2 + d*r [1]
<P>
Since transversal chromatic aberrations (TCA) leads to differently scaled objects in the
red, green and blue channel, it can be corrected by scaling the red and blue channel
so that they match the green channel. Most applications, like Photoshop or Picture Window Pro
offer TCA correction by linear scaling. This is equal to varying the d parameter in equation [1].
<P>
See <A HREF="http://hugin.sf.net/tutorials/tca">http://hugin.sf.net/tutorials/tca</A> for a method to determine these parameters.
<P>
<A NAME="lbAE">&nbsp;</A>
<H2>OPTIONS</H2>
<DL COMPACT>
<DT>-o<DD>
Specify the output filename. If more than one input image is given, this string will be used as suffix (default: _corr)
<DT>-g<DD>
Radial distortion coefficient for all channels, (a, b, c, d).
By default no correction is done.
<DT>-b<DD>
Radial distortion coefficients for blue channel, (a, b, c, d).
this is applied after the global distortion correction(supplied by -g).
<DT>-r<DD>
Radial distortion coefficients for red channel, (a, b, c, d).
this is applied after the global distortion correction(supplied by -g).
<DT>-f<DD>
Filename of the flatfield image. Enables vignetting correction by flatfield
division
<DT>-c<DD>
radial vignetting correction by division:
<DT>-a<DD>
Correct vignetting by addition, rather than by division
I = I + c
<DT>-p<DD>
Try to read radial distortion coefficients (usually supplied
using -g) from the PTLens database. The environment variable PTLENS_PROFILE
should point to the profile.txt file. Since newer version of the PTLens database
are incompatible with fulla, download the PTLens database from the hugin sourceforge
website instead: <A HREF="http://www.sf.net/projects/hugin">http://www.sf.net/projects/hugin</A>
<DT>-m<DD>
Camera manufacturer, for PTLens database query. EXIF data inside jpg files is read, if this
option is not given
<DT>-n<DD>
Camera name, for PTLens database query. EXIF data inside jpg files is read, if this
option is not given.
<DT>-l<DD>
Lens name, for PTLens database query. If not specified, a list of
possible lenses is displayed
<DT>-t<DD>
Number of threads that should be used during processing
<DT>-v<DD>
Verbose execution
-h
Display help text
<P>
</DL>
<A NAME="lbAF">&nbsp;</A>
<H2>BUGS</H2>
No bugs known, if you find any, please send a bug report to me. I will try to
fix it.
<A NAME="lbAG">&nbsp;</A>
<H2>AUTHOR</H2>
Pablo d Angelo &lt;pablo dot dangelo at web dot de&gt;
<A NAME="lbAH">&nbsp;</A>
<H2>SEE ALSO</H2>
<P>
<HR>
<A NAME="index">&nbsp;</A><H2>Index</H2>
<DL>
<DT><A HREF="#lbAB">NAME</A><DD>
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
<DT><A HREF="#lbAE">OPTIONS</A><DD>
<DT><A HREF="#lbAF">BUGS</A><DD>
<DT><A HREF="#lbAG">AUTHOR</A><DD>
<DT><A HREF="#lbAH">SEE ALSO</A><DD>
</DL>
<HR>
</BODY>
</HTML>

View File

@@ -0,0 +1,6 @@
Main author:
Pablo d'Angelo <pablo.dangelo@web.de>
additional authors are listed in authors.txt
which is also parsed and displayed in the
"about dialog" in the GUI.

View File

@@ -0,0 +1,339 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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 program 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 program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.

265
App/Hugin/doc/nona.txt Normal file
View File

@@ -0,0 +1,265 @@
############# Example Script ##########################
# for nona
#
# This document describes the script supported by the nona stitcher.
#
# Based on the PTStitcher documentation
#
#
# Only lines starting with 'p','o', i', 'm' or 'k' are read,
# so you can add comments and info as you like by using
# other line starting characters.
# The stitcher script must contain:
# one 'p'-line describing the output image (eg Panorama)
# one 'i'-line for each input image
# one 'm'-line for global options
#
# 'p'-line options
# w1000 width in pixels
# h600 height in pixels
# f0 projection format,
# 0 - rectilinear (for printing and viewing)
# 1 - Cylindrical (for Printing and QTVR)
# 2 - Equirectangular ( for Spherical panos), default
# 3 - full-frame fisheye
# 4 - Stereographic
# 5 - Mercator
# 6 - Transverse Mercator
# 7 - Sinusoidal
# 8 - Lambert Cylindrical Equal Area
# 9 - Lambert Equal Area Azimuthal
# 10 - Albers Equal Area Conic
# 11 - Miller Cylindrical
# 12 - Panini
# 13 - Architectural
# 14 - Orthographic
# 15 - Equisolid
# 16 - Equirectangular Panini
# 17 - Biplane
# 18 - Triplane
# 19 - Panini General
# 20 - Thoby Projection
# 21 - Hammer-Aitoff Projection
# v360 horizontal field of view of panorama (default 360)
# nPICT Panorama file format, one of:
# PNG png-format, 8 & 16 bit supported
# PNG_m png-format, multi-file, one image per file
# alpha layer with non-feathered clip mask at image border
# TIFF tiff-format, all tiff types supported (8,16,32 bit int, float, double)
# TIFF_m tiff-format, multi-file, one image per file
# alpha layer with non-feathered clip mask at image border
# TIFF_multilayer tiff-format, multi-image-file, all files in one image
# alpha layer with non-feathered clip mask at image border
# This filetype is supported by The GIMP
# JPEG Panoramic image in jpeg-format.
# JPEG_m jpeg-format, multi-file, one image per file
# without alpha layer, not suitable for further blending or fusing
# some more supported file formats (mostly only 8 bit support)
# PNM, PGM, BMP, SUN, VIFF
#
# Special options for TIFF output:
# n"TIFF c:NONE"
# c - select TIFF compression, possible options: NONE, LZW, DEFLATE
#
# Special options for TIFF_m and TIFF_multilayer output:
# n"TIFF c:NONE r:CROP"
# c - TIFF compression, possible options NONE, LZW, DEFLATE
# r - output only used image area (cropped output). The crop offsets
# are stored in the POSITIONX and POSITONY tiff tags
# p1 - save coordinate images (useful for further programs, like vignetting correction)
#
# Special options for JPEG output:
# n"JPEG q95"
# q - jpeg quality
#
# E12.3 exposure value for final panorama
# R1 stitching mode: 0: normal LDR mode, 1: HDR mode
# T"UINT8" bitdepth of output images, possible values are
# UINT8 - 8 bit unsigned
# UINT16 - 16 bit unsigned
# FLOAT - 32 bit floating point
# By default the bit depth of the input images is use.
#
# S100,600,100,800 Selection(left,right,top,bottom), Only pixels inside the rectangle
# will be rendered. Images that do not contain pixels in this area
# are not rendered/created.
#
# k1 Image number of reference image for photometric correction
#
# P"100 12" Parameters for tuning projection, number of parameters depends on projection
#
p w1000 h600 f0 v360 E12.3
# The 'i' lines describe input images (nona also accepts 'o' line image descriptions)
#
# f0 projection format,
# 0 - rectilinear (normal lenses)
# 1 - Panoramic (Scanning cameras like Noblex)
# 2 - Circular fisheye
# 3 - full-frame fisheye
# 4 - Equirectangular (spherical panos)
# 8 - orthographic fisheye
# 10 - stereographic fisheye
# 21 - Equisolid fisheye
# 20 - Fisheye Thoby (Nikkor 10.5)
# v82 horizontal field of view of image (required)
# y0 yaw angle (required)
# p43 pitch angle (required)
# r0 roll angle (required)
# a,b,c lens correction coefficients (optional)
# (see http://www.fh-furtwangen.de/~dersch/barrel/barrel.html)
# d,e initial lens offset in pixels(defaults d0 e0, optional).
# Used to correct for offset from center of image
# d - horizontal offset,
# e - vertical offset
# g,t initial lens shear. Use to remove slight misalignment
# of the line scanner relative to the film transport
# g - horizontal shear
# t - vertical shear
#
# Eev exposure of image in EV (exposure values)
# Er white balance factor for red channel
# Eb white balance factor for blue channel
#
# Vm vignetting correction mode (default 5):
# 0: no vignetting correction
# 1: radial vignetting correction (see Va, Vb, Vc, Vd options)
# 2: flatfield vignetting correction (see Vf option)
# 4: proportional correction: i_new = i / corr.
#
# default is additive correction: i_new = i + corr
# Both radial and flatfield correction can be combined with the
# proportional correction by adding 4.
# Examples: Vm1 - radial polynomial correction by addition.
# The coefficients Va, Vb, Vc, Vd must be specified.
# Vm5 - radial polynomial correction by division.
# The coefficients Va, Vb, Vc, Vd must be specified.
# Vm6 - flatfield correction by division.
# The flatfield image should be specified with the Vf option
#
# Va,Vb,Vc,Vd vignetting correction coefficients. (defaults: 1,0,0,0)
# ( 0, 2, 4, 6 order polynomial coefficients):
# corr = ( i + j*r^2 + k*r^4 + l*r^6), where r is the distance from the image center
# The corrected pixel value is calculated with: i_new = i_old + corr
# if additive correction is used.
# for proportional correction (Vm5): i_new = i_old / corr;
#
# Vx,Vy radial vignetting correction offset in pixels (defaults Vx0 Vy0, optional).
# Used to correct for offset from center of image
# Vx - horizontal offset
# Vy - vertical offset
#
# Vf filename of flatfield image.
# For additive correction the image will be used as it is.
# In the case of correction by division, the flatfield will be divided by
# its mean value.
#
# Ra,Rb,Rc,Rd,Re EMoR photometric model parameters. (defaults: 0,0,0,0,0)
#
# TrX,TrY,TrZ mosaic mode translation offsets.
#
# Tpy, Tpp orientation of remapping plane for translation offsets.
# (have no effect if TrX, TrY and TrZ are zero)
#
# S100,600,100,800 Selection(l,r,t,b), Only pixels inside the rectangle will be used for conversion.
# Original image size is used for all image parameters
# (e.g. field-of-view) refer to the original image.
# Selection can be outside image dimension.
# The selection will be circular for circular fisheye images, and
# rectangular for all other projection formats
#
# j0 stack number
#
# nName file name of the input image.
#
# Parameters in different images can be linked using '='
# followed by the image number starting with 0.
# Example 'v=0' sets horizontal field of view as in
# image number 0. You can only refer to images before the
# current image.
i f2 r0 p0 y0 v183 a0 b-0.1 c0 S100,600,100,800 n"photo1.jpg"
i f2 r0 p0 y180 v183 a0 b-0.1 c0 S100,600,100,800 n"photo1.jpg"
# 'm'-line options
# ----------------
# Set mode for stitcher, not required
#
# i2 Set interpolator, See <http://www.fh-furtwangen.de/~dersch/interpolator/interpolator.html>
# one of:
# 0 - poly3 (default)
# 1 - spline16,
# 2 - spline36,
# 3 - sinc256,
# 4 - spline64,
# 5 - bilinear,
# 6 - nearest neighbor,
# 7 - sinc1024
#
m i2
# 'v'-line options
# ----------------
# Indicate i-line parameters to optimise
# nona ignores all 'v' lines, these lines are used by autooptimiser
# (a,b,c,d,e,v,r,p,y geometric parameters) and vig_optimize
# (Eev,Er,Eb,Va,Vb,Vc,Vd,Vx,Vy,Ra,Rb,Rc,Rd,Re photometric parameters)
#
# Optimization variables are listed together with the image number
# starting at 0. There can be several v-lines.
#
# y0 Optimize yaw in image 0
# p1 Optimize pitch in image 1
# r2 Optimize roll in image 2
# v0 Optimize field of view in image 0
#
# If a image has a parameter linked to another image only
# need to optimize the master.
#
v v0 r0 p0 r1 p1 y1
# 'k'-line options
# ----------------
# Optional image masks are described by a 'k' line
#
# i2 Set image number this mask applies to
#
# t0 Type for mask:
# 0 - negative (exclude region)
# 1 - positive (include region)
# 2 - negative, stack aware (exclude region from stack)
# 3 - positive, stack aware (include region from stack)
# 4 - negative, lens (exclude region from all images of same lens)
#
# p"1262 2159 1402 2065 1468 2003" List of node coordinates
# Coordinates are in pairs, at least three pairs are required
k i2 t0 p"1262 2159 1402 2065 1468 2003"
# 'c'-lines
# ----------------
# Control point lines
# nona ignores all 'c' lines, these lines are used by autooptimiser
#
# One line per point pair
# about one pair of points per image per variable being optimized.
# The more variables being optimized the more control points needed.
#
# n0 first image
# N1 second image
# x1066.5 first image x point position
# y844.333 first image y point position
# X239.52 second image x point position
# Y804.64 second image y point position
# t0 type of control point (optional)
# 0 - normal (default)
# 1 - optimize horizontally only
# 2 - optimize vertically only
# 3+ (all other numbers) - straight line
c n0 N1 x1066.5 y844.333 X239.52 Y804.64 t0

View File

@@ -0,0 +1,12 @@
Helmut Dersch, <der@fh-furtwangen.de>
Daniel M. German- http://turingmachine.org/
Kevin Kratzke - http://www.kekus.com/
Rik Littlefield - http://www.janrik.net/ptools/
Fulvio Senore - http://www.fsoft.it/panorama/pano12.htm
Jim Watters - http://photocreations.ca/panotools/
Thomas Rauscher - http://www.pano2qtvr.com/dll_patch/
Pablo d'Angelo - http://hugin.sf.net
Bret McKee -
Robert Platt -
Florian Königstein -

View File

@@ -0,0 +1,339 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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 program 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 program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.

View File

@@ -0,0 +1,279 @@
############# Example Script ##########################
# to run PTOptimizer
#
#
# Only lines starting with 'p', 'v', 'i', or 'm' are read.
# So you can add comments and info as you like by using
# other line starting characters.
# Do not start a line with !, it is used by adjust plugin and scripts.
# the * character indicated the end of the script file.
# The script must contain:
# one 'p'- line describing the output image (eg Panorama)
# one 'i'-line for each input image
# one or several 'v'- lines listing the variables to be optimized.
# the 'm'-line is optional and allows you to specify modes for the optimization.
# one 'c'-line for each pair of control points
# 'p'-line options
# w1000 width in pixels
# h600 height in pixels (default: width/2)
# f0 projection format,
# 0 - Rectilinear (for printing and viewing)
# 1 - Cylindrical (for Printing and QTVR)
# 2 - Equirectangular ( for Spherical panos), default
# 3 - Fisheye Equidistance full-frame
# 4 - Fisheye Stereographic full-frame
# 5 - Mercator
# 6 - Transverse Mercator
# 7 - Sinusoidal
# 8 - Lambert Equal Area Cylindrical
# 9 - Lambert Azimuthal
# 10 - Albers Equal Area Conical
# 11 - Miller Cylindrical
# 12 - Panini (for wide angle printing and viewing)
# 13 - Architectural (combines Miller Cylindrical and Lambert Azimuthal)
# 14 - Fisheye Orthographic full-frame
# 15 - Fisheye Equisolid full-frame
#
# P"p1 p2 ..." Optional parameters for some projections
#
# for f10 - 0, 1 or 2 parameters corresponding to the
# standard parallels. If no parms specified
# defaults to <20,60>. If one given P1 == P2
#
# v360 horizontal field of view of panorama (default 360)
# nPICT Panorama file format, one of:
# PICT pict-file on macs, bmp-file on win (default)
# PSD single layer Photoshop file, 48bits supported
# PNG png-format, 48bits supported
# TIFF tiff-format, 48bits supported
# PSD_mask Photoshop file, one image per layer
# + shape mask & feathered clip mask at overlap center
# PSD_nomask Photoshop file, one image per layer,
# TIFF_mask tiff-format, multi-file, one image per file, 48bit supported
# alpha layer with feathered clip mask at overlap center
# TIFF_m tiff-format, multi-file, one image per file, 48bit supported
# alpha layer with non-feathered clip mask at image border
# + shape mask & non-feathered clip mask at image border
# JPEG Panoramic image in jpeg-format. Use with f1
# for IBM Hotmedia panoramas.
# PAN SmoothMove movie. Use only with f2.
# IVR LivePicture IVR movie
# cylindrical (format f1) or spherical (format f2)
# IVR_java LivePicture Java Panorama,
# cylindrical (format f1) or spherical (format f2)
# VRML VRML background node, use only with f2 for panoramas, or
# VRML-object for PTStereo
# QTVR Apple QTVR-panomovie. Use only with f1
# 3DMF 3DMF-object (PTStereo).
#
# n"QTVR w400 h300 c1" additional viewer options in a quoted string together with format
# the following options are recognized:
# w(width) and h(height) of viewer window (only QTVR on Macs)
# c(codec: 0-JPEG, 1-Cinepak, 2-Sorenson) (only QTVR on Macs)
# q(codec quality):
# 0-high,1-normal,2-low QTVR on Macs
# 0-100(highest) on other jpeg-formats (PAN, IVR, IVR_java, VRML)
# g progressive jpeg (0-no, 1-yes) (PAN, IVR, IVR_java, VRML)
# Optimized JPEG (0-on(default), 2-disabled), (3-progressive with optimized disabled)
# p initial pan angle ( QTVR on Macs, VRML, IVR)
# v field of view (QTVR, VRML, IVR)
#
# n"TIFF_m c:LZW r:CROP" additional viewer options in a quoted string together with format
# the following options are recognized for TIFF_m:
# c:LZW enable LZW compression
# r:CROP enable cropping to ROI (default)
# r:UNCROP disable cropping to ROI
#
# Many more options can be set by editing the viewer scripts
#
# -buf suppress buffer commands in the stitcher script generated by PTOptimizer.
# (buffer commands are now obsolete, -buf and +buf on i lines are now
# ignored when stitching) This option should be set if you wish
# to edit the final panoramic image, eg for the two PSD formats.
# a0.0 b1.0 c0.04 Options to create multiple images in PTInterpolate and PTMorpher.
# a denotes starting value,
# b end value
# c increment. 0 is left, 1 is right image.
# The above command interpolates/morphs two images and
# creates 25 intermediate frames.
# u10 width of feather for stitching all images. default:10
# k1 attempt color & brightness correction using image number as anchor
# b1 attempt brightness correction with no color change using image number as anchor
# d1 attempt color correction with no brightness change using image number as anchor
# Do not use more than one of k, d, b.This is new method of correcting
p w800 nPSD_mask -buf
# The 'i' lines describe input images. One line per image is required
# unneeded paramiters for optimizing but needed for stitching can be
# set here and the optimizer will automaticaly add them to the o lines
# ----------------
# f0 projection format,
# 0 - Rectilinear (normal lenses)
# 1 - Panoramic (Scanning cameras like Noblex)
# 2 - Fisheye Equidistance Circular
# 3 - Fisheye Equidistance full-frame
# 4 - Equirectangular (Spherical panos)
# 7 - Mirror
# 8 - Fisheye Orthographic (This is only allowed in PTStereo and
# for the first image. This indicates a map or ground plan)
# 10 - Fisheye Stereographic
# 19 - Fisheye Equisolid
# w600 width in pixels
# h1000 height in pixels
# v82 horizontal field of view of image (required, but ignored for f8)
# y0 initial yaw angle (required)
# p43 initial pitch angle (required)
# r0 initial roll angle (required)
# a,b,c initial lens correction coefficients (defaults a0 b0 c0, optional)
# (see http://www.fh-furtwangen.de/~dersch/barrel/barrel.html)
# d,e initial lens offset in pixels(defaults d0 e0, optional).
# Used to correct for offset from center of image
# d - horizontal offset,
# e - vertical offset
# g,t initial lens shear. Use to remove slight misalignment
# of the line scanner relative to the film transport
# g - horizontal shear
# t - vertical shear
# TiX,TiY,TiZ,TiS initial tilt. Use to correct for off NPP nadir images
# TiX the x offset of the camera (default TiX0)
# TiY the y offset of the camera (default TiY0)
# TiZ the z offset of the camera (default TiZ0)
# TiS the scale offset of the camera (default TiS1, valid for values > 0)
# TrX,TrY,TrZ initial mosaic mode translation offsets, alternative to Ti
# parameters
# Te0,Te1,Te2,Te3 Test parameters
# S100,600,100,800 Selection(l,r,t,b), Only pixels inside the rectangle will be used for conversion.
# Original image size is used for all image parameters
# (e.g. field-of-view) refer to the original image.
# C100,600,100,800 Crop(l,r,t,b), Only pixels inside the rectangle will be used for conversion.
# Cropped image size is used for all image parameters
# (e.g. field-of-view) refer to the cropped part of the image.
# m20 (obsolete, use S & C) ignore a frame 20 pixels wide. default: 0
# mx100 (obsolete, use S & C) crop to brightest rectangle with size 100x200;
# my200 (obsolete, use S & C) used only for circular fisheye images (f2)
# s0 (obsolete, ignored, always blend) specify placement of seam between buffer and image:
# 0-middle of overlap('blend' ,default)
# 1- at edge of image ('paste').
# o (the small letter). Morph-to-fit using control points.
# X10 World coordinates of camera position, only used for PTStereo
# Y200 If the camera is aligned (yaw = pitch = roll = 0.0),
# Z-13.5 X is coordinate to the right, Y vertically up and
# -Z is forward viewing direction.
# nName Name of image (ignored by PTOptimizer used in PTStitcher)
#
# Parameters in different images can be linked using '='
# followed by the image number starting with 0.
# Example 'v=0' sets horizontal field of view as in
# image number 0. This feature works for the variables
# v, a, b, c, (r, p, y with caution) d, e, g, and t
i f2 r0 p0 y0 v183 a0 b-0.1 c0 mx400 my400
i f2 r-0.5 p1 y182 v=0 a0 b-0.1 c0 mx400 my400
# 'v'-line options:
# -----------------
# Please note: the 'v'-line must come after the the 'i'-lines.
# Optimization variables are listed together with the image number
# starting at 0. There can be several v-lines.
#
# y0 Optimize yaw in image 0
# p1 Optimize pitch in image 1
# r2 Optimize roll in image 2
# v0 Optimize field of view in image 0
# a2 Optimize lens correction parameter 'a' in image 2
# b and c can be equally optimized.
# X1 Optimize x-coordinate of image 1, only for PTStereo
# Y2 Optimize y-coordinate of image 2, only for PTStereo
# Z6 Optimize z-coordinate of image 6, only for PTStereo
#
# If a image has a parameter linked to another image only
# need to optimize the master.
v v0 r0 p0 r1 p1 y1
#
# 'm'-line options
# ----------------
# Set mode for stitcher, not required
#
# g2.5 Set gamma value for internal computations (default 1.0)
# See <http://www.fh-furtwangen.de/~dersch/gamma/gamma.html>
# i2 Set interpolator, See <http://www.fh-furtwangen.de/~dersch/interpolator/interpolator.html>
# one of:
# 0 - poly3 (default)
# 1 - spline16,
# 2 - spline36,
# 3 - sinc256,
# 4 - spline64,
# 5 - bilinear,
# 6 - nearest neighbor,
# 7 - sinc1024
# \/ antialiasing filters \/ See <http://www.pano2qtvr.com/dll_patch/>
# 8 - Box
# 9 - Bartlett/Triangle
# 10 - Hermite
# 11 - Hanning
# 12 - Hamming
# 13 - Blackmann
# 14 - Gaussian 1/sqrt(2)
# 15 - Gaussian 1/2
# 16 - Quadardic
# 17 - Cubic
# 18 - Catmull-Rom
# 19 - Mitchell
# 20 - Lanczos2
# 21 - Lanczos3
# 22 - Blackman/Bessel
# 23 - Blackman/sinc
#
# p0 Create panorama after optimizing control points
# 0 no(default), 1 yes
#
# m0 use Huber m-estimator during second optimisation pass.
# This will reduce the weight of control points with higher errors
# It might help a little if a pano contains a few inaccurate or
# completely wrong control points.
# 0: no m-estimator (as in previous versions)
# Any other number is the sigma parameter of the huber m-estimator.
# Control points with errors higher than sigma will have less
# influence during the optimisation.
# A good value for sigma might be 2.
#
m g1.5 i6
#
# 'c' lines
# ----------------
# Control point lines
# One line per point pair
# about one pair of points per image per variable being optimized.
# The more variables being optimized the more control points needed.
#
# n0 first image
# N1 second image
# x1066.5 first image x point position
# y844.333 first image y point position
# X239.52 second image x point position
# Y804.64 second image y point position
# t0 type of control point (optional)
# 0 - normal (default)
# 1 - optimize horizontally only
# 2 - optimize vertically only
# 3+ (all other numbers) - straight line
*
Every thing after * is ignored.

View File

@@ -0,0 +1,100 @@
RGB mode:
--------
k type correction (color): I fixed minor rounding errors that should
reduce the error. The change might not be very noticeable in most
cases.
HSV mode:
--------
b type correction (brightness): Fully supported and seems to work
well and better thar k type.
d type correction (saturation): In PTstitcher d is used for Hue and
Saturation but I have decided to use it only for Saturation. The
reason is that in highly saturated areas (such as polarized photos)
this shifts completely the colours (from blue to green, in my
tests). Saturation seems to work well instead.
Other types of correction (H and S, H only might be added to PTblender
when I find out how to add new keywords to the parser).
USING Colour Correction
----------------------------------------------------------------------
I think it is important to understand the way colour is corrected in
PTmender (and PTblender) and how it is different from enblend
(PTblender can be used as a "replacement" for enblend to fix colour
differences). Let us assume 2 images:
* Enblend (as its name implies) smooths transitions between the
2 images, and leaves the rest of the image unaltered (this might
result in strong banding).
* PTblender, on the other hand changes the entire second image so that
the histograms of the areas of overlap of both images are as close
as possible to each other
PTblender fails miserably in the following three situations:
1. When the areas of overlap are very different in content. Because it
assumes the histograms should be as close to each other as possible
you really need images that overlap well (and have few or no
ghosts).
2. When the lens has strong vignetting. Same reason. Usually images
overlap in the area of vignetting. Please use software to correct
vignetting before using PTblender. In fact, experiment with and
without it to notice the (big) difference.
3. When the chain of correction is large. In PTblender you select an
"anchor" image, that is, the one that is not to be corrected. We
will call this the corrected area.
The algorithm finds the to-be-correted image with the largest
overlap to the corrected area. It then corrects it and adds it to
the area of overlap. This happens recursively until no more images
are corrected.
The farther "away" an image (in terms of the chain-of-correction)
is from the anchor, the bigger the potential for error.
As Helmut once explained, if you have a "cap" image (a zenith), it
can help to reduce the length of the largest chain-of-correction.
So, when is PTblender useful. These are some examples:
* Panoramas with few images
* Images with very strong changes in brightness (automatic exposure,
for example)
* Panoramas to be displayed flat (no need to blend around the edges)
My recommendations on how to use PTblender:
* FIX vignetting before you map the images (use fulla for it, or
photoshop)
* Experiment with the 3 outputs (RGB, saturation, intensity).
* Choose an anchor in such a way that it minimizes the
chain-of-correction. ( experiment with different anchors)
* Experiment with using the 3 types of outputs plus uncorrected as 4
different layers in photoshop and mask/unmask areas as you see
fit. This might prove to be very useful (similar to enblend).
Another option is to use enblend and PTblender in the same pano, each
dealing with different types of corrections. I have not tried this
myself. PTblender accept TIFFs with alpha channel and can output TIFFs
or PSDs.
There is lots of room for improvement in colour correction, but at the
very least we (panotools) are now where Helmut left it (approx 5 year
ago).

View File

@@ -0,0 +1,43 @@
PTmender
--------
This is a program that implements the mapping of panoramas similar to
PTStitcher
----------------------------------------------------------------------
WHAT IS NOT GOING TO BE SUPPORTED
* PTremap only preforms the remapping of the input images and creates
a set of cropped TIFFs, one for each input image.
* It does NOT create any other type of output and it does not flatten the output.
----------------------------------------------------------------------
COMMAND LINE OPTIONS
PTremap [options] <script filename>
Options:
-o <prefix> Prefix for output filename, defaults to pano
-q Quiet run
-h Show this mes
----------------------------------------------------------------------
----------------------------------------------------------------------
If you select circular fisheye a mask is created around a circle:
* The image is always assumed to be in portrait mode.
* if no crop region is specified then the circle is assumed to be
bounded by the horizontal axis. A mask is created with a circle of
horizontal_width/2 radious, centered in the middle of the image
* If a crop region is specified then a mask is created such that the
circle is enclosed (in the horizontal axis) by the crop region.

View File

@@ -0,0 +1,41 @@
This is the pano13 library, part of the Panorama Tools by Helmut
Dersch of the University of Applied Sciences Furtwangen.
http://panotools.sourceforge.net/
Also included with the library are:
- PToptimizer a command-line tool for optimizing control points.
- PTmender a command-line tool for reprojecting images.
Usage
----
The typical workflow would be:
- PTmender maps the pano files, outputs cropped TIFFS
- PTblender* fixes colour shifts in TIFFs, outputs cropped TIFFS (8 bit only)
- PTmasker* creates stitching masks in TIFFs, outputs cropped TIFFS
- PTroller creates a single TIFF from set of TIFFs
- PTcrop recropps a TIFF to a tight bounding box, creates a cropped TIFF
* Optional step.
Other tools:
- PTtiff2psd Combines a set of tiffs into one PSD file with multiple
layers (including stacking feature) and the ability to
specify blending mode (8 bit only)
- PTuncrop Uncrops a cropped TIFF.
- panoinfo a command-line tool for querying the library version.
- PTAInterpolate Interpolate intermediate images between stereo photos
- PTinfo Display information about a panotools-generated image
- PTtiffdump Compare two TIFF images
- panoinfo List details about the libpano13 library

View File

@@ -0,0 +1,261 @@
############# Example Script ##########################
# to run PTStitcher
#
#
# Only lines starting with 'p', 'v','o', i', or 'm' are read,
# so you can add comments and info as you like by using
# other line starting characters.
# The * character at the first of a line indicated the end of the script file.
# The stitcher script must contain:
# one 'p'- line describing the output image (eg Panorama)
# one 'o'-line for each input image
# one 'i' line for each input image that is optional
# the 'm'-line is optional and allows you to specify modes for the optimization.
# the 'C'-line is optional and allows morphing of control points.
# if a v line is present it is read and verified that the parameters match images but is not used.
# 'p'-line options
# w1000 width in pixels
# h600 height in pixels (default: width/2)
# f0 projection format,
# 0 - Rectilinear (for printing and viewing)
# 1 - Cylindrical (for Printing and QTVR)
# 2 - Equirectangular ( for Spherical panos), default
# 3 - Fisheye Equidistance full-frame
# 4 - Fisheye Stereographic full-frame
# 5 - Mercator
# 6 - Transverse Mercator
# 7 - Sinusoidal
# 8 - Lambert Equal Area Cylindrical
# 9 - Lambert Azimuthal
# 10 - Albers Equal Area Conical
# 11 - Miller Cylindrical
# 12 - Panini (for wide angle printing and viewing)
# 13 - Architectural (combines Miller Cylindrical and Lambert Azimuthal)
# 14 - Fisheye Orthographic full-frame
# 15 - Fisheye Equisolid full-frame
#
# P"p1 p2 ..." Optional parameters for some projections
#
# for f10 - 0, 1 or 2 parameters corresponding to the
# standard parallels. If no parms specified
# defaults to <20,60>. If one given P1 == P2
#
# v360 horizontal field of view of panorama (default 360)
# nPICT Panorama file format, one of:
# PICT pict-file on macs, bmp-file on win (default)
# PSD single layer Photoshop file, 48bits supported
# PNG png-format, 48bits supported
# TIFF tiff-format, 48bits supported
# PSD_mask Photoshop file, one image per layer
# + shape mask & feathered clip mask at overlap center
# PSD_nomask Photoshop file, one image per layer,
# TIFF_mask tiff-format, multi-file, one image per file, 48bit supported
# alpha layer with feathered clip mask at overlap center
# TIFF_m tiff-format, multi-file, one image per file, 48bit supported
# alpha layer with non-feathered clip mask at image border
# + shape mask & non-feathered clip mask at image border
# JPEG Panoramic image in jpeg-format. Use with f1
# for IBM Hotmedia panoramas.
# PAN SmoothMove movie. Use only with f2.
# IVR LivePicture IVR movie
# cylindrical (format f1) or spherical (format f2)
# IVR_java LivePicture Java Panorama,
# cylindrical (format f1) or spherical (format f2)
# VRML VRML background node, use only with f2 for panoramas, or
# VRML-object for PTStereo
# QTVR Apple QTVR-panomovie. Use only with f1
# 3DMF 3DMF-object (PTStereo).
#
# n"QTVR w400 h300 c1" additional viewer options in a quoted string together with format
# the following options are recognized:
# w(width) and h(height) of viewer window (only QTVR on Macs)
# c(codec: 0-JPEG, 1-Cinepak, 2-Sorenson) (only QTVR on Macs)
# q(codec quality):
# 0-high,1-normal,2-low QTVR on Macs
# 0-100(highest) on other jpeg-formats (PAN, IVR, IVR_java, VRML)
# g progressive jpeg (0-no, 1-yes) (PAN, IVR, IVR_java, VRML)
# Optimized JPEG (0-on(default), 2-disabled), (3-progressive with optimized disabled)
# p initial pan angle ( QTVR on Macs, VRML, IVR)
# v field of view (QTVR, VRML, IVR)
#
# n"TIFF_m c:LZW r:CROP" additional viewer options in a quoted string together with format
# the following options are recognized for TIFF_m:
# c:LZW enable LZW compression
# r:CROP enable cropping to ROI (default)
# r:UNCROP disable cropping to ROI
#
# Many more options can be set by editing the viewer scripts
#
# u10 width of feather for stitching all images. default:10
# k1 attempt color & brightness correction using image number as anchor
# b1 attempt brightness correction with no color change using image number as anchor
# d1 attempt color correction with no brightness change using image number as anchor
# Do not use more than one of k, d, b.This is new method of correcting
p w800 nPSD_mask
# The 'i' lines describe input images and is optional
# nName file name of the input image.
# over ridable with command line parameters to PTStitcher
i n"photo1.jpg"
# The 'o' lines describe input images. One line per image is required
# The width and height of the image is obtained from image
# f0 projection format,
# 0 - Rectilinear (normal lenses)
# 1 - Panoramic (Scanning cameras like Noblex)
# 2 - Fisheye Equidistance Circular
# 3 - Fisheye Equidistance full-frame
# 4 - Equirectangular (Spherical panos)
# 7 - Mirror
# 8 - Fisheye Orthographic (This is only allowed in PTStereo and
# for the first image. This indicates a map or ground plan)
# 10 - Fisheye Stereographic
# 20 - Thoby Projection (rho = THOBY_K1_PARM * sin(
# theta * THOBY_K2_PARM), defaults to Nikkor 10.5
# 21 - Fisheye Equisolid
# v82 horizontal field of view of image (required)
# y0 yaw angle (required)
# p43 pitch angle (required)
# r0 roll angle (required)
# a,b,c lens correction coefficients (optional)
# (see http://www.fh-furtwangen.de/~dersch/barrel/barrel.html)
# d,e initial lens offset in pixels(defaults d0 e0, optional).
# Used to correct for offset from center of image
# d - horizontal offset,
# e - vertical offset
# g,t initial lens shear. Use to remove slight misalignment
# of the line scanner relative to the film transport
# g - horizontal shear
# t - vertical shear
# TiX,TiY,TiZ,TiS initial tilt. Use to correct for off NPP nadir images
# TiX the x offset of the camera (default TiX0)
# TiY the y offset of the camera (default TiY0)
# TiZ the z offset of the camera (default TiZ0)
# TiS the scale offset of the camera (default TiS1, valid for
# values > 0)
# TrX,TrY,TrZ initial mosaic mode translation offsets, alternative to Ti
# parameters
# Te0,Te1,Te2,Te3 Test parameters
# +buf (obsolete, -buf and +buf are now ignored when stitching)
# load and merge image with buffer
# -buf (obsolete, -buf and +buf are now ignored when stitching)
# save result to buffer. The first 'o' line should
# contain one '-buf' command, the last line one '+buf'
# command, and all other lines both '+buf -buf'
# Exception: remove all 'buf' commands when
# creating Photoshop-files to preserve the original images.
# S100,600,100,800 Selection(l,r,t,b), Only pixels inside the rectangle will be used for conversion.
# Original image size is used for all image parameters
# (e.g. field-of-view) refer to the original image.
# Selection can be outside image dimension.
# C100,600,100,800 Crop(l,r,t,b), Only pixels inside the rectangle will be used for conversion.
# Cropped image size is used for all image parameters
# (e.g. field-of-view) refer to the cropped part of the image.
# m20 (obsolete, use S & C) ignore a frame 20 pixels wide. default: 0
# mx100 (obsolete, use S & C) crop to brightest rectangle with size 100x200;
# my200 (obsolete, use S & C) used only for circular fisheye images (f2)
# s0 (obsolete, ignored, always blend) specify placement of seam between buffer and image:
# 0-middle of overlap('blend' ,default)
# 1- at edge of image ('paste').
# o (the small letter). Morph-to-fit using control points.
o f2 r0 p0 y0 v183 a0 b-0.1 c0 S100,600,100,800
o f2 r0 p0 y180 v183 a0 b-0.1 c0 S100,600,100,800
# 'm'-line options
# ----------------
# Set mode for stitcher, not required
#
# g2.5 Set gamma value for internal computations (default 1.0)
# See <http://www.fh-furtwangen.de/~dersch/gamma/gamma.html>
# i2 Set interpolator, See <http://www.fh-furtwangen.de/~dersch/interpolator/interpolator.html>
# one of:
# 0 - poly3 (default)
# 1 - spline16,
# 2 - spline36,
# 3 - sinc256,
# 4 - spline64,
# 5 - bilinear,
# 6 - nearest neighbor,
# 7 - sinc1024
# \/ antialiasing filters \/ See <http://www.pano2qtvr.com/dll_patch/>
# 8 - Box
# 9 - Bartlett/Triangle
# 10 - Hermite
# 11 - Hanning
# 12 - Hamming
# 13 - Blackmann
# 14 - Gaussian 1/sqrt(2)
# 15 - Gaussian 1/2
# 16 - Quadardic
# 17 - Cubic
# 18 - Catmull-Rom
# 19 - Mitchell
# 20 - Lanczos2
# 21 - Lanczos3
# 22 - Blackman/Bessel
# 23 - Blackman/sinc
#
# f0 Invoke Faster Transformation. Increase the speed of transformation with the side effect a little distortion
# 0 Fastest speed, some distortion
# 1 Some speed, little distortion
# - anything else turns off Faster Transformation (default)
m g1.5 i6 f0
#
# 'z'-lines options
# ----------------
# Extended Depth-Of-Field, not required
#
# Automatically determine, for every point in a picture, which of mumerous overlapping
# images has best focus. Masks are generated to reveale the best focused parts of
# each image. Feathering must be selected. Used with PSD_mask or TIFF_mask file format
# to edit the mask or with flattened file formats for flattened final result. Does not
# work if color and/or brightness correction are invoked.
#
# m2 mask type
# m0 hard-edged masks, mutually exclusive
# m1 hard-edged masks, stack of nested masks
# m2 blended masks, stack of nested masks (default & strongly recommended)
# (this option includes a smoothing computation that seems to help a lot.)
# fN focus estimation window size, N = halfwidth of window.
# Recommended value is 0.5% of image width, e.g. 4 pixels for an 800-pixel image.
# Computation cost for focus estimation increases proportional to N^2. Default f4.
# sN smoothing window size, N = halfwidth of window.
# Recommended value is 0.5% of image width, e.g. 4 pixels for an 800-pixel image.
# Computation cost for smoothing increases proportional to N^2. Default s4.
z m2 f4 s4
#
# 'C' lines
# ----------------
# Morphing of control point lines
# One line per point
# Created automatically by optimizer
#
# i0 image
# x363.726 starting x point position
# y125.738 starting y point position
# X363.838 morphed x point position
# Y125.618 morphed y point position
C i0 x363.726 y125.738 X363.838 Y125.618
*
Every thing after * is ignored.

View File

@@ -0,0 +1,55 @@
[General]
Description=Assistant for dual lens images
Help=Assistant for images shot with dual lens camera/one shot panoramic cameras
StepCount=9
[Step0]
Description=Prepare initial pto file
Condition=single image
Program=pto_gen
Arguments=--output=%project% --projection=2 --fov=393 %image0% %image0%
[Step1]
Description=Setting advanced settings
Condition=single image
Program=pto_var
Arguments=--output=%project% --unlink=v0,d0,e0 --set=y1=180,d0=-0.25*width,d1=0.25*width,e=0 --crop=50%,94% %project%
[Step2]
Description=Searching control points
Condition=not connected
Program=cpfind
Arguments=-v --output=%project% %project%
[Step3]
Description=Check result
Condition=not connected
Program=checkpto
Arguments=%project%
[Step4]
Description=Cleaning control points
Condition=not connected
Program=cpclean
Arguments=--output=%project% %project%
[Step5]
Description=Searching line cp
Condition=no line cp
Program=linefind
Arguments=--output=%project% %project%
[Step6]
Description=Setting advanced settings
Program=pto_var
Arguments=--output=%project% --opt=y,p,r,v,d,e %project%
[Step7]
Description=Optimizing
Program=autooptimiser
Arguments=-n --output=%project% %project%
[Step8]
Description=Searching for best crop
Program=pano_modify
Arguments=--projection=2 --fov=360x180 --canvas=70% --crop=AUTO --output=%project% %project%

View File

@@ -0,0 +1,44 @@
[General]
Description=Multi-row (2 rows)
Help=Assistant for multi-row panorama (2 rows, handles orphaned images)
StepCount=7
[Step0]
Description=Assign rough positions
Condition=not connected
Program=pto_var
Arguments=--set nrRows=2,overlap=20,imagesPerRow=ceil((imax+1)/nrRows),y=(i%(imagesPerRow)-(imagesPerRow-1)/2)*hfov*(1-overlap/100),p=-(floor(i/imagesPerRow)-(nrRows-1)/2)*deg(atan(2*height/width*tan(rad(hfov/2))))*(1-overlap/100),r=0 --output=%project% %project%
[Step1]
Description=Searching control points
Condition=not connected
Program=cpfind
Arguments=--prealigned -v --output=%project% %project%
[Step2]
Description=Cleaning control points
Condition=not connected
Program=cpclean
Arguments=--output=%project% %project%
[Step3]
Description=Connect orphaned images
Condition=not connected
Program=geocpset
Arguments=--output=%project% %project%
[Step4]
Description=Searching line cp
Condition=no line cp
Program=linefind
Arguments=--output=%project% %project%
[Step5]
Description=Optimizing
Program=autooptimiser
Arguments=-a -m -l -s --output=%project% %project%
[Step6]
Description=Searching for best crop
Program=pano_modify
Arguments=--canvas=70% --crop=AUTO --output=%project% %project%

View File

@@ -0,0 +1,38 @@
[General]
Description=User defined assistant
Help=Assistant for normal panorama
StepCount=6
[Step0]
Description=Searching control points
Condition=not connected
Program=cpfind
Arguments=--celeste --multirow -v --output=%project% %project%
[Step1]
Description=Check result
Condition=not connected
Program=checkpto
Arguments=%project%
[Step2]
Description=Cleaning control points
Condition=not connected
Program=cpclean
Arguments=--output=%project% %project%
[Step3]
Description=Searching line cp
Condition=no line cp
Program=linefind
Arguments=--output=%project% %project%
[Step4]
Description=Optimizing
Program=autooptimiser
Arguments=-a -m -l -s --output=%project% %project%
[Step5]
Description=Searching for best crop
Program=pano_modify
Arguments=--canvas=70% --crop=AUTO --output=%project% %project%

View File

@@ -0,0 +1,54 @@
[General]
Description=Scanned images
Help=Assistant for scanned images
StepCount=9
[Step0]
Description=Setting initial values
Program=pano_modify
Arguments=--projection=0 --fov=20x20 --output=%project% %project%
[Step1]
Description=Reset initial positions
Condition=not connected
Program=pto_var
Arguments=--set=y=0,p=0 --output=%project% %project%
[Step2]
Description=Searching control points
Condition=not connected
Program=cpfind
Arguments=--multirow --output=%project% %project%
[Step3]
Description=Check result
Condition=not connected
Program=checkpto
Arguments=%project%
[Step4]
Description=Cleaning control points
Condition=not connected
Program=cpclean
Arguments=--output=%project% %project%
[Step5]
Description=Searching line cp
Condition=no line cp
Program=linefind
Arguments=--output=%project% %project%
[Step6]
Description=Setting optimizer variables
Program=pto_var
Arguments=--unlink v0,d0,e0 --opt v,r,d,e,!r0,!d0,!e0,!v0 --output=%project% %project%
[Step7]
Description=Optimizing
Program=autooptimiser
Arguments=-n -m -l --output=%project% %project%
[Step8]
Description=Searching for best crop
Program=pano_modify
Arguments=--fov=AUTO --canvas=70% --crop=AUTO --output=%project% %project%

View File

@@ -0,0 +1,54 @@
[General]
Description=Scanned images (TrXYZ)
Help=Assistant for scanned images, using translation parameters
StepCount=9
[Step0]
Description=Setting initial values
Program=pano_modify
Arguments=--projection=0 --fov=20x20 --output=%project% %project%
[Step1]
Description=Reset initial positions
Condition=not connected
Program=pto_var
Arguments=--set=y=0,p=0 --output=%project% %project%
[Step2]
Description=Searching control points
Condition=not connected
Program=cpfind
Arguments=--multirow --output=%project% %project%
[Step3]
Description=Check result
Condition=not connected
Program=checkpto
Arguments=%project%
[Step4]
Description=Cleaning control points
Condition=not connected
Program=cpclean
Arguments=--output=%project% %project%
[Step5]
Description=Searching line cp
Condition=no line cp
Program=linefind
Arguments=--output=%project% %project%
[Step6]
Description=Setting optimizer variables
Program=pto_var
Arguments=--opt r,TrX,TrY,TrZ,!TrX0,!TrY0,!TrZ0 --output=%project% %project%
[Step7]
Description=Optimizing
Program=autooptimiser
Arguments=-n -m -l --output=%project% %project%
[Step8]
Description=Searching for best crop
Program=pano_modify
Arguments=--fov=AUTO --canvas=70% --crop=AUTO --output=%project% %project%

View File

@@ -0,0 +1,31 @@
[General]
Description=Align image stack assistant
Help=Assistant for alignment of a single stack
StepCount=5
[Step0]
Description=Searching control points
Condition=not connected
Program=cpfind
Arguments=--linearmatch -v --output=%project% %project%
[Step1]
Description=Checking result
Condition=not connected
Program=checkpto
Arguments=%project%
[Step2]
Description=Setting optimizer variables
Program=pto_var
Arguments=--opt=y,p,r --output=%project% %project%
[Step3]
Description=Optimizing
Program=autooptimiser
Arguments=-n --output=%project% %project%
[Step4]
Description=Searching for best crop
Program=pano_modify
Arguments=--projection=0 --fov=AUTO --canvas=100% --crop=AUTOHDR --output-type=REMAPORIG --output=%project% %project%

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,40 @@
[AutoPano]
AutoPanoCount=6
Default=0
[AutoPano/AutoPano_0]
Type=1
Description=Hugin's CPFind
Program=cpfind.exe
Arguments=--multirow -o %o %s
[AutoPano/AutoPano_1]
Type=1
Description=Hugin's CPFind + Celeste (slower, but no cps on clouds)
Program=cpfind.exe
Arguments=--celeste --multirow -o %o %s
[AutoPano/AutoPano_2]
Type=1
Description=Align image stack
Program=align_image_stack.exe
Arguments=-f %v -v -p %o %i
[AutoPano/AutoPano_3]
Type=1
Description=Align image stack Full Frame Fisheye
Program=align_image_stack
Arguments=-f %v -e -p %o %i
[AutoPano/AutoPano_4]
Type=1
Description=Vertical lines
Program=linefind.exe
Arguments=-o %o %s
[AutoPano/AutoPano_5]
Type=1
Description=Hugin's CPFind (prealigned)
Program=cpfind.exe
Arguments=--prealigned -o %o %s

View File

@@ -0,0 +1,10 @@
[Linear\ (left\ to\ right\,\ 20\ %\ Overlap)]
Expression=# this is a comment\n# update yaw of all images\ny=(i-imax/2)*hfov*(1-0.2)\n# set pitch and roll to 0\np=0\nr=0
[Fisheye\ (4\+Z\+N)]
Expression=# fisheye pano: 4 images in middle (pitch 0) + zenit + nadir\ny=i<4?90*i:0\np=(i==4)?90:(i==5?-90:0)\nr=0
[Fisheye\ (4\+Z\+N)-2]
Expression=# fisheye pano: 4 images in middle (pitch 0) + zenit + nadir\n# middle row\ny0=0, p0=0\ny1=90, p1=0\ny2=180, p2=0\ny3=270, p3=0\n# zenit\ny4=0, p4=90\n# nadir image\ny5=0, p5=-90\n# for all images roll=0\nr=0\n
[Multi-row\,\ 2\ rows\,\ zick zack]
Expression=# example for multi-row arrangement: 2 rows, with 20 % overlap\n# left to right, top to bottom, zick zack\nnrRows=2\noverlap=20\n# calculate some constants for further calculations\n# calculate number of images per row\nimagesPerRow=ceil((imax+1)/nrRows)\n# calculate vfov\nvfov=deg(atan(2*height/width*tan(rad(hfov/2))))\n# set yaw\ny=(i%(imagesPerRow)-(imagesPerRow-1)/2)*hfov*(1-overlap/100)\n# set pitch\np=-(floor(i/imagesPerRow)-(nrRows-1)/2)*vfov*(1-overlap/100)\n# set roll to 0\nr=0
[Multi-row\,\ 2\ rows\,\ snake]
Expression=# example for multi-row arrangement: 2 rows, with 20 % overlap\n# left to right, bottom to top , snake\nnrRows=2\noverlap=20\n# calculate some constants for further calculations\n# calculate number of images per row\nimagesPerRow=ceil((imax+1)/nrRows)\n# calculate vfov\nvfov=deg(atan(2*height/width*tan(rad(hfov/2))))\n# set yaw\ny=(((floor(i/imagesPerRow)%2==1)?(imagesPerRow-i%imagesPerRow-1):i%imagesPerRow)%(imagesPerRow)-(imagesPerRow-1)/2)*hfov*(1-overlap/100)\n# set pitch\np=(floor(i/imagesPerRow)-(nrRows-1)/2)*vfov*(1-overlap/100)\n# set roll to 0\nr=0

View File

@@ -0,0 +1,10 @@
-ImageDescription
-Make
-Model
-Artist
-Copyright
-GPS:all
-AllDates
-UserComment
-OwnerName
-SerialNumber

View File

@@ -0,0 +1,11 @@
# this is a comment
# copy a tag to final panorama
-Make
-Model
# add a text to a tag
-Creator=Your Name
# multi-line text with usage of placeholder (on Windows use &#xd;&#xa; instead of &#xa; for linebreak)
-Description=Panorama, projection: %projection&#xa;stitched from %nrImages images
# an example for list type tags, adding panorama and prevent duplication
-Subject-=Panorama
-Subject+=Panorama

View File

@@ -0,0 +1,20 @@
[Crop]
Enabled=false
[Coarse Transformation]
Rotate=0
HorizontalFlip=false
VerticalFlip=false
[Resize]
Enabled=false
[Rotation]
Degree=0
[Perspective]
Horizontal=0
Vertical=0
[MetaData]
Mode=0

View File

@@ -0,0 +1,26 @@
[General]
Description=Blended stacks
Help=Fuse all stacks with enfuse, then blend them with enblend
StepCount=3
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-r ldr -m TIFF_m --ignore-exposure
[Step1]
Description=Fusing all stacks with enfuse
Type=stack
Program=enfuse
Arguments=-f%size% --output=%output% %input%
WrapArgument=-w
[Step2]
Description=Blending stacks with enblend
Type=merge
Input=stacks
Program=enblend
Result=%prefix%_fused.tif
Arguments=-f%size% --output=%result% %input%
WrapArgument=-w

View File

@@ -0,0 +1,19 @@
[General]
Description=Focus stacked images
Help=Output image of focus stacked images
StepCount=2
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-v -r ldr -m TIFF_m
Keep=0
[Step1]
Description=Focus stacking
Type=merge
Input=all
Program=enfuse
Result=%prefix%.tif
Arguments=--output=%result% --exposure-weight=0 --saturation-weight=0 --contrast-weight=1 --hard-mask %input%

View File

@@ -0,0 +1,26 @@
[General]
Description=Fused layers
Help=Blend all exposure layers, then fuse them with enfuse
StepCount=3
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-r ldr -m TIFF_m --ignore-exposure
[Step1]
Description=Blending all exposure layers
Type=layer
Program=enblend
Arguments=-f%size% --output=%output% %input%
WrapArgument=-w
[Step2]
Description=Fusing all exposure layers
Type=merge
Input=layers
Program=enfuse
Result=%prefix%_blended_fused.tif
Arguments=-f%size% --output=%result% %input%
WrapArgument=-w

View File

@@ -0,0 +1,25 @@
[General]
Description=HDR panorama
Help=Generate a HDR panorama
StepCount=3
IntermediateImageType=exr
[Step0]
Description=Remapping images
Type=remap
Arguments=-r hdr -m EXR_m
[Step1]
Description=Merging hdr stacks
Type=stack
Program=hugin_hdrmerge
Arguments=-o %output% %input%
[Step2]
Description=Blending all hdr stacks
Type=merge
Input=stacks
Program=enblend
Result=%prefix%.exr
Arguments=-f%size% --output=%result% %input%
WrapArgument=-w

View File

@@ -0,0 +1,19 @@
[General]
Description=Median of stacked images
Help=Output median image of stacked images
StepCount=2
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-v -r ldr -m TIFF_m
Keep=0
[Step1]
Description=Calculating median
Type=merge
Input=all
Program=hugin_stacker
Result=%prefix%.tif
Arguments=--output=%result% --mode=median %input%

View File

@@ -0,0 +1,25 @@
[General]
Description=Normal panorama with enblend
Help=Generate normal panorama (TIF file)
StepCount=3
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-r ldr -m TIFF_m
[Step1]
Description=Blending with enblend
Type=merge
Input=all
Program=enblend
Result=%prefix%.tif
Arguments=-f%size% --output=%result% %input%
WrapArgument=-w
[Step2]
Description=Updating metadata
Type=exiftool
Result=%prefix%.tif
Arguments=-overwrite_original -TagsFromFile %image0% -ImageDescription -Make -Model -Artist -WhitePoint -Copyright -GPS:all -DateTimeOriginal -CreateDate -UserComment -ColorSpace -OwnerName -SerialNumber %result%

View File

@@ -0,0 +1,54 @@
[General]
Description=Equi and cubic
Help=Creates an equirectangular and the cube faces for given project
StepCount=7
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-r ldr -m TIFF_m
[Step1]
Description=Blending with enblend
Type=merge
Input=all
Program=enblend
Result=%prefix%.tif
Arguments=-f%size% --output=%result% %input%
WrapArgument=-w
[Step2]
Description=Updating metadata
Type=exiftool
Result=%prefix%.tif
Arguments=-overwrite_original -TagsFromFile %image0% -ImageDescription -Make -Model -Artist -WhitePoint -Copyright -GPS:all -DateTimeOriginal -CreateDate -UserComment -ColorSpace -OwnerName -SerialNumber %result%
[Step3]
Description=Create project file for cubic reprojection
Type=modify
File=%prefix%.tif
Program=pto_gen
Arguments=-o %prefix,_cubic.pto% %file% %file% %file% %file% %file% %file%
[Step4]
Description=Set positions for reprojection
Type=modify
File=%prefix%_cubic.pto
Program=pto_var
Arguments=-o %file% --set=y1=90,y2=180,y3=270,p4=-90,p5=90 %file%
[Step5]
Description=Set output size for reprojection
Type=modify
File=%prefix%_cubic.pto
Program=pano_modify
Arguments=-o %file% --projection=0 --fov=90 --canvas=%width*0.3183%x%width*0.3183% %file%
[Step6]
Description=Create cube faces
Type=modify
File=%prefix%_cubic.pto
Program=nona
Arguments=-m TIFF_m -o %prefix,_cube% %file%

View File

@@ -0,0 +1,16 @@
[General]
Description=Normal panorama with layered TIFF output
Help=Output a panorama with layered TIFF output for manual blending
StepCount=2
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-r ldr -m TIFF_multilayer
[Step1]
Description=Updating metadata
Type=exiftool
Result=%prefix%.tif
Arguments=-overwrite_original -TagsFromFile %image0% -ImageDescription -Make -Model -Artist -WhitePoint -Copyright -GPS:all -DateTimeOriginal -CreateDate -UserComment -ColorSpace -OwnerName -SerialNumber %result%

View File

@@ -0,0 +1,20 @@
[General]
Description=Normal panorama with smartblend
Help=Output a normal panorama, using smartblend for blending
StepCount=2
IntermediateImageType=tif
SupportsCroppedTIFF=0
[Step0]
Description=Remapping images
Type=remap
Arguments=-r ldr -m TIFF_m
[Step1]
Description=Blending with smartblend
Type=merge
Input=all
Program=smartblend
Result=%prefix%.tif
Arguments=-o %result% %input%
WrapArgument=

View File

@@ -0,0 +1,19 @@
[General]
Description=Zero-noise output
Help=Use with a single stack (with different exposures) to reduce noise
StepCount=2
IntermediateImageType=tif
[Step0]
Description=Remapping images
Type=remap
Arguments=-r ldr -m TIFF_m --clip-exposure
[Step1]
Description=Merge all exposures
Type=merge
Input=all
Program=enfuse
Result=%prefix%.tif
Arguments=-f%size% --output=%result% %input%
WrapArgument=-w

View File

@@ -0,0 +1,206 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
<object class="wxDialog" name="about_dlg">
<title>About Hugin</title>
<centered>1</centered>
<size>535,535</size>
<style>wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER</style>
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxPanel">
<bg>#FFFFFF</bg>
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxStaticBitmap" name="about_logo">
<bitmap>data/splash.png</bitmap>
</object>
<flag>wxALL|wxALIGN_CENTER_HORIZONTAL</flag>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="about_version">
<value>version</value>
<bg>#FFFFFF</bg>
<style>wxNO_BORDER|wxTE_READONLY|wxTE_RIGHT</style>
</object>
<flag>wxLEFT|wxRIGHT|wxEXPAND</flag>
<border>3</border>
</object>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxStaticLine"/>
<flag>wxLEFT|wxRIGHT|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxNotebook" name="about_notebook">
<object class="notebookpage">
<object class="wxPanel" name="about_tab">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="HtmlWindow" name="intro_html">
<borders>0</borders>
<style platform="win">wxSUNKEN_BORDER</style>
<url>data/intro.htm</url>
<bg>#FFFFFF</bg>
</object>
<flag>wxALL|wxEXPAND</flag>
<option>1</option>
<border platform="unix|mac">0</border>
</object>
</object>
</object>
<label>About</label>
</object>
<object class="notebookpage">
<object class="wxPanel" name="authors_tab">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxHtmlWindow" name="about_html">
<borders>0</borders>
<style platform="win">wxSUNKEN_BORDER</style>
<url>data/about.htm</url>
<bg>#FFFFFF</bg>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border platform="unix|mac">0</border>
</object>
<flag>wxEXPAND</flag>
<option>1</option>
</object>
</object>
<label>Authors</label>
</object>
<object class="notebookpage">
<object class="wxPanel" name="sponsors_tab">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxHtmlWindow" name="sponsors_html">
<borders>0</borders>
<style platform="win">wxSUNKEN_BORDER</style>
<url>data/sponsors.htm</url>
<bg>#FFFFFF</bg>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border platform="unix|mac">0</border>
</object>
<flag>wxEXPAND</flag>
<option>1</option>
</object>
</object>
<label>Sponsors</label>
</object>
<object class="notebookpage">
<object class="wxPanel" name="upstream_tab">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="upstream_txt">
<font>
<size>8</size>
<size platform="mac">10</size>
<family>modern</family>
</font>
<style platform="win">wxTE_MULTILINE|wxTE_READONLY</style>
<style platform="unix|mac">wxTE_MULTILINE|wxTE_READONLY|wxNO_BORDER</style>
</object>
<flag>wxALL|wxEXPAND</flag>
<option>1</option>
<border platform="unix|mac">0</border>
</object>
</object>
</object>
<label>Upstream</label>
</object>
<object class="notebookpage">
<object class="wxPanel" name="license_tab">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="license_txt">
<font>
<size>8</size>
<size platform="mac">10</size>
<family>modern</family>
</font>
<style platform="win">wxTE_MULTILINE|wxTE_READONLY</style>
<style platform="unix|mac">wxTE_MULTILINE|wxTE_READONLY|wxNO_BORDER</style>
</object>
<flag>wxALL|wxEXPAND</flag>
<option>1</option>
<border platform="unix|mac">0</border>
</object>
</object>
</object>
<label>License</label>
</object>
<object class="notebookpage">
<label>System</label>
<object class="wxPanel" name="system_tab">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="system_txt">
<font>
<size>8</size>
<size platform="mac">10</size>
<family>modern</family>
</font>
<style platform="win">wxTE_MULTILINE|wxTE_READONLY</style>
<style platform="unix|mac">wxTE_MULTILINE|wxTE_READONLY|wxNO_BORDER</style>
</object>
<flag>wxALL|wxEXPAND</flag>
<option>1</option>
<border platform="unix|mac">0</border>
</object>
</object>
</object>
</object>
<!-- dedication tab no longer in use
<object class="notebookpage">
<object class="wxPanel" name="dedication_tab">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="HtmlWindow" name="dedication_html">
<borders>0</borders>
<style platform="win">wxSUNKEN_BORDER</style>
<url>data/dedication.htm</url>
<bg>#FFFFFF</bg>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border platform="unix|mac">0</border>
</object>
<flag>wxEXPAND</flag>
<option>1</option>
</object>
</object>
<label>Dedication</label>
</object>
-->
</object>
<flag>wxALL|wxEXPAND</flag>
<border>8</border>
<option>1</option>
</object>
<object class="sizeritem">
<object class="wxButton" name="wxID_OK">
<label>OK</label>
<default>1</default>
</object>
<flag>wxALL|wxALIGN_RIGHT</flag>
<border>12</border>
</object>
</object>
</object>
</resource>

View File

@@ -0,0 +1,547 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
<object class="wxFrame" name="batch_frame">
<title>Batch Processor</title>
<centered>1</centered>
<style>wxDEFAULT_FRAME_STYLE|wxCAPTION|wxSYSTEM_MENU|wxRESIZE_BORDER|wxMINIMIZE_BOX|wxMAXIMIZE_BOX|wxFULL_REPAINT_ON_RESIZE</style>
<object class="wxBoxSizer">
<object class="sizeritem">
<object class="wxPanel" name="panel_main">
<style>wxTAB_TRAVERSAL</style>
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="ProjectListBox" name="project_listbox">
<style>wxLC_REPORT</style>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
<minsize>200,100</minsize>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxButton" name="button_addcommand">
<label>Add application...</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="button_remove">
<label>Remove completed</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="button_prefix">
<label>Change prefix...</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="button_reset">
<label>Reset project</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="button_resetall">
<label>Reset all</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="button_edit">
<label>Edit with Hugin...</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="button_move_up">
<label>Move project up</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="button_move_down">
<label>Move project down</label>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="spacer">
<size>0,12</size>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cb_overwrite">
<label>Overwrite always</label>
<tooltip>Overwrite existing image files without further notice</tooltip>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cb_autoremove">
<label>Remove finished project</label>
<tooltip>Automatically remove successfully finished projects from queue</tooltip>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cb_autostitch">
<label>Automatic stitch after assistant</label>
<tooltip>Automatically stitch projects after (successfully) running assistant</tooltip>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<object class="sizeritem">
<object class="wxStaticText">
<label>When done</label>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
<object class="spacer">
<size>6,-1</size>
</object>
<object class="sizeritem">
<object class="wxChoice" name="choice_end"/>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
<orient>wxHORIZONTAL</orient>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cb_verbose">
<label>Verbose output</label>
<tooltip>Show detailed output in separate window</tooltip>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cb_savelog">
<label>Always save log</label>
<tooltip>Saves always the log of the stitching process. Otherwise it is only saved for failed stitches</tooltip>
</object>
<flag>wxEXPAND</flag>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
</object>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
</object>
<orient>wxHORIZONTAL</orient>
</object>
</object>
<object class="wxDialog" name="find_pano_dialog">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxPanel">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxNotebook">
<object class="notebookpage">
<object class="wxPanel">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<object class="sizeritem">
<object class="wxGridBagSizer">
<object class="sizeritem">
<object class="wxStaticText" name="find_pano_label_dir">
<label>Directory:</label>
</object>
<flag>wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>0,0</cellpos>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="find_pano_dir"/>
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>0,1</cellpos>
</object>
<object class="sizeritem">
<object class="wxButton" name="find_pano_select_dir">
<label>Choose...</label>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>0,2</cellpos>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="find_pano_subdir">
<label>include sub-directories</label>
</object>
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>1,1</cellpos>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Naming:</label>
</object>
<flag>wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>2,0</cellpos>
</object>
<object class="sizeritem">
<object class="wxChoice" name="find_pano_naming">
<content>
<item>PanoramaXX.pto</item>
<item>First file - last file.pto</item>
<item>Foldername.pto</item>
<item>Template from preferences</item>
</content>
<selection>0</selection>
</object>
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>2,1</cellpos>
</object>
<vgap>6</vgap>
<hgap>12</hgap>
<growablecols>1</growablecols>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>12</border>
</object>
<object class="spacer">
<size>-1,12</size>
</object>
<object class="sizeritem">
<object class="wxButton" name="find_pano_start_stop">
<label>Start</label>
</object>
<flag>wxALL|wxALIGN_CENTRE_HORIZONTAL</flag>
<border>6</border>
</object>
<orient>wxVERTICAL</orient>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>6</border>
</object>
<object class="sizeritem">
<object class="wxStaticText" name="find_pano_label"/>
<flag>wxALL|wxEXPAND</flag>
<border>6</border>
</object>
</object>
</object>
<label>Directories</label>
</object>
<object class="notebookpage">
<object class="wxPanel">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxGridBagSizer">
<object class="sizeritem">
<object class="wxStaticText">
<label>Minimum number of images:</label>
</object>
<flag>wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>0,0</cellpos>
</object>
<object class="sizeritem">
<object class="wxSpinCtrl" name="find_pano_min_number_images">
<size>80,-1</size>
<value>2</value>
<min>2</min>
<max>100</max>
<tooltip>Minimum number of images a panorama should contain</tooltip>
</object>
<cellpos>0,1</cellpos>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Maximum time difference:</label>
</object>
<flag>wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>1,0</cellpos>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<object class="sizeritem">
<object class="wxSpinCtrl" name="find_pano_max_time_diff">
<size>80,-1</size>
<value>30</value>
<min>1</min>
<max>3600</max>
<tooltip>Maximal time difference in seconds between two consecutive images belonging to one panorama</tooltip>
</object>
</object>
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxStaticText">
<label translate="0">s</label>
</object>
<flag>wxLEFT|wxALIGN_CENTRE_VERTICAL</flag>
<border>6</border>
</object>
</object>
<cellpos>1,1</cellpos>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Stacks:</label>
</object>
<flag>wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>2,0</cellpos>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="find_pano_create_links">
<label>Create links</label>
<tooltip>Check if the stacks were shot on a tripod</tooltip>
</object>
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>2,1</cellpos>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Lens database:</label>
</object>
<flag>wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>3,0</cellpos>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="find_pano_load_distortion">
<label>Load distortion data</label>
<tooltip>Tries to load distortion data from lens database if checked</tooltip>
</object>
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>3,1</cellpos>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="find_pano_load_vignetting">
<label>Load vignetting data</label>
<tooltip>Tries to load vignetting data from lens database if checked</tooltip>
</object>
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>4,1</cellpos>
</object>
<vgap>6</vgap>
<hgap>12</hgap>
<growablecols>1</growablecols>
<object class="sizeritem">
<object class="wxStaticText">
<label>Blender:</label>
</object>
<flag>wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>5,0</cellpos>
</object>
<object class="sizeritem">
<object class="wxChoice" name="find_pano_default_blender">
<content>
<item/>
</content>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
<cellpos>5,1</cellpos>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>12</border>
</object>
</object>
</object>
<label>Options</label>
</object>
</object>
<flag>wxALL|wxEXPAND|wxADJUST_MINSIZE</flag>
<border>6</border>
</object>
<object class="sizeritem">
<object class="wxStaticBoxSizer">
<label>Found panoramas</label>
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxSplitterWindow" name="find_pano_splitter">
<object class="wxCheckListBox" name="find_pano_list">
<size>200,-1</size>
<style>wxLB_SINGLE|wxLB_HSCROLL|wxLB_NEEDED_SB</style>
</object>
<object class="wxPanel">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxGridSizer">
<object class="sizeritem">
<object class="wxStaticText">
<label>Camera:</label>
</object>
</object>
<object class="sizeritem">
<object class="wxStaticText" name="find_pano_selected_cam"/>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Lens:</label>
</object>
</object>
<object class="sizeritem">
<object class="wxStaticText" name="find_pano_selected_lens"/>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Focal length:</label>
</object>
</object>
<object class="sizeritem">
<object class="wxStaticText" name="find_pano_selected_focallength"/>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Start date (duration):</label>
</object>
</object>
<object class="sizeritem">
<object class="wxStaticText" name="find_pano_selected_date_time"/>
</object>
<cols>2</cols>
<rows>4</rows>
<hgap>5</hgap>
</object>
<flag>wxALL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxListCtrl" name="find_pano_selected_thumbslist">
<style>wxLC_ICON|wxLC_AUTOARRANGE|wxLC_SINGLE_SEL</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
</object>
</object>
</object>
<orientation>vertical</orientation>
<style>wxSP_NOBORDER</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="spacer">
<option>1</option>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="find_pano_add_queue">
<label>Send selected panoramas to queue</label>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
</object>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
</object>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>6</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="spacer">
<size>0,0</size>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxButton" name="find_pano_close">
<label>Close</label>
</object>
<flag>wxALL|wxALIGN_RIGHT</flag>
<border>6</border>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
</object>
</object>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>6</border>
</object>
</object>
<title>Searching panoramas</title>
<style>wxDEFAULT_DIALOG_STYLE|wxSYSTEM_MENU|wxRESIZE_BORDER|wxCLOSE_BOX</style>
</object>
<object class="wxDialog" name="failed_project_dialog">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxSplitterWindow" name="failed_splitter">
<object class="wxPanel">
<object class="wxStaticBoxSizer">
<label>Failed projects</label>
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxListBox" name="failed_list">
<content/>
<style>wxLB_SINGLE</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>6</border>
</object>
</object>
</object>
<object class="wxPanel">
<object class="wxStaticBoxSizer">
<label>Output</label>
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="failed_log">
<style>wxTE_MULTILINE|wxTE_READONLY</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>6</border>
</object>
</object>
</object>
<orientation>vertical</orientation>
<style>wxSP_NOBORDER|wxSP_NO_XP_THEME</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
</object>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxStdDialogButtonSizer">
<object class="button">
<object class="wxButton" name="wxID_OK">
<label>&amp;Close</label>
<default>1</default>
</object>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>6</border>
</object>
</object>
<title>Status report</title>
<style>wxDEFAULT_DIALOG_STYLE|wxSYSTEM_MENU|wxRESIZE_BORDER|wxCLOSE_BOX</style>
</object>
</resource>

View File

@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
<object class="wxMenuBar" name="batch_menu">
<object class="wxMenu" name="file_menu">
<label>&amp;File</label>
<object class="wxMenuItem" name="menu_add">
<label>Add project to stitching &amp;queue...</label>
<help>Adds a project to the stitching queue</help>
</object>
<object class="wxMenuItem" name="menu_add_assistant">
<label>Add project to &amp;assistant queue...</label>
<help>Adds a project to the assistant queue</help>
</object>
<object class="wxMenuItem" name="menu_remove">
<label>&amp;Remove project</label>
<help>Removes selected project from the batch list</help>
</object>
<object class="wxMenu" name="search_dir_menu">
<object class="wxMenuItem" name="menu_adddir">
<label>&amp;Project files...</label>
<help>Appends all project files from a directory and subdirectories</help>
</object>
<object class="wxMenuItem" name="menu_searchpano">
<label>&amp;Images...</label>
<help>Searches in directories for image files suitable for panoramas</help>
</object>
<label>Search &amp;directory for...</label>
<help>Searches in directories for existing projects or for images</help>
</object>
<object class="separator"/>
<object class="wxMenuItem" name="menu_open">
<label>&amp;Open batch</label>
<help>Opens a batch file with a list of projects</help>
</object>
<object class="wxMenuItem" name="menu_save">
<label>&amp;Save batch</label>
<help>Saves a batch file with a list of projects</help>
</object>
<object class="wxMenuItem" name="menu_clear">
<label>&amp;Clear batch</label>
<help>Clears the batch list</help>
</object>
<object class="separator"/>
<object class="wxMenuItem" name="menu_tray">
<label>&amp;Minimize to tray</label>
<checkable>1</checkable>
<enabled>0</enabled>
</object>
<object class="separator"/>
<object class="wxMenuItem" name="menu_exit">
<label>&amp;Quit</label>
<help>Exit program</help>
</object>
</object>
<object class="wxMenu" name="help_menu">
<label>&amp;Help</label>
<object class="wxMenuItem" name="menu_help">
<label>Batch Stitcher &amp;help</label>
<accel>F1</accel>
<help>Open Batch Stitcher help</help>
</object>
</object>
</object>
</resource>

View File

@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
<object class="wxToolBar" name="batch_toolbar">
<style>wxTB_FLAT</style>
<object class="tool" name="tool_clear">
<bitmap>data/filenew.png</bitmap>
<tooltip>Clear batch</tooltip>
<longhelp>Clears the batch list</longhelp>
<label>clear</label>
</object>
<object class="tool" name="tool_open">
<bitmap>data/fileopen.png</bitmap>
<tooltip>Open batch</tooltip>
<longhelp>Opens a batch file with a list of projects</longhelp>
<label>open</label>
</object>
<object class="tool" name="tool_save">
<bitmap>data/filesave.png</bitmap>
<tooltip>Save batch</tooltip>
<longhelp>Saves a batch file with a list of projects</longhelp>
<label>save</label>
</object>
<object class="separator"/>
<object class="tool" name="tool_start">
<bitmap>data/start.png</bitmap>
<tooltip>Start batch</tooltip>
<longhelp>Starts batch execution</longhelp>
<label>start</label>
</object>
<object class="tool" name="tool_skip">
<bitmap>data/skip.png</bitmap>
<tooltip>Skip project(s)</tooltip>
<longhelp>Skips execution of currently running project(s)</longhelp>
<label>skip</label>
</object>
<object class="tool" name="tool_pause">
<bitmap>data/pause.png</bitmap>
<toggle>1</toggle>
<tooltip>Pause batch</tooltip>
<longhelp>Pauses batch execution</longhelp>
<label>pause</label>
</object>
<object class="tool" name="tool_cancel">
<bitmap>data/stop.png</bitmap>
<tooltip>Cancel batch</tooltip>
<longhelp>Cancels batch execution</longhelp>
<label>cancel</label>
</object>
<object class="separator"/>
<object class="tool" name="tool_add">
<bitmap>data/add_project.png</bitmap>
<tooltip>Add project(s)</tooltip>
<longhelp>Appends project file(s) to the batch list</longhelp>
<label>add</label>
</object>
<object class="tool" name="tool_remove">
<bitmap>data/remove_project.png</bitmap>
<tooltip>Remove project</tooltip>
<longhelp>Removes selected project from the batch list</longhelp>
<label>remove</label>
</object>
<object class="tool" name="tool_adddir">
<bitmap>data/add_projects.png</bitmap>
<tooltip>Search directory</tooltip>
<longhelp>Appends all project files from a directory and subdirectories</longhelp>
<label>adddir</label>
</object>
</object>
</resource>

View File

@@ -0,0 +1,346 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
<object class="wxPanel" name="cp_editor_panel">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxScrolledWindow" name="cp_controls_panel">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxPanel" name="cp_editor_split_img_left">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="CPImagesComboBox" name="cp_editor_left_choice">
<content/>
<style>wxCB_READONLY</style>
</object>
<option>1</option>
<flag>wxALL|wxADJUST_MINSIZE</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxBitmapButton" name="cp_editor_previous_img">
<bitmap stock_id="wxART_GO_BACK"></bitmap>
<tooltip>previous image pair</tooltip>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
</object>
<option>0</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="CPImageCtrl" name="cp_editor_left_img"/>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
<minsize>300,150</minsize>
</object>
</object>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxPanel" name="cp_editor_split_img_right">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxBitmapButton" name="cp_editor_next_img">
<bitmap stock_id="wxART_GO_FORWARD"></bitmap>
<tooltip>next image pair</tooltip>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="CPImagesComboBox" name="cp_editor_right_choice">
<content/>
<style>wxCB_READONLY</style>
</object>
<option>1</option>
<flag>wxALL|wxADJUST_MINSIZE</flag>
<border>3</border>
</object>
</object>
<option>0</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="CPImageCtrl" name="cp_editor_right_img"/>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
<minsize>300,150</minsize>
</object>
</object>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
</object>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxListCtrl" name="cp_editor_cp_list">
<style>wxLC_REPORT|wxLC_SINGLE_SEL</style>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxStaticText">
<label translate="0">x:</label>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="cp_editor_x1">
<size>50,-1</size>
<style>wxTE_PROCESS_ENTER</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label translate="0">y:</label>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="cp_editor_y1">
<size>50,-1</size>
<style>wxTE_PROCESS_ENTER</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label translate="0">x:</label>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="cp_editor_x2">
<size>50,-1</size>
<style>wxTE_PROCESS_ENTER</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label translate="0">y:</label>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="cp_editor_y2">
<size>50,-1</size>
<style>wxTE_PROCESS_ENTER</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>mode:</label>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
<object class="sizeritem">
<object class="wxChoice" name="cp_editor_mode">
<size>100,-1</size>
<content>
<item>normal</item>
<item>vertical line</item>
<item>horizontal line</item>
</content>
</object>
<option>2</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
</object>
<flag>wxEXPAND</flag>
</object>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxStaticText">
<label>Zoom:</label>
</object>
<flag>wxALL|wxALIGN_CENTRE</flag>
<border>3</border>
</object>
<object class="sizeritem">
<option>1</option>
<object class="wxChoice" name="cp_editor_choice_zoom">
<content>
<item translate="0">100%</item>
<item>fit to window</item>
<item translate="0">200%</item>
<item translate="0">150%</item>
<item translate="0">75%</item>
<item translate="0">50%</item>
<item translate="0">25%</item>
</content>
<selection>1</selection>
</object>
<flag>wxALIGN_CENTRE_VERTICAL</flag>
</object>
</object>
<flag>wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxButton" name="cp_editor_finetune_button">
<label>Fine-tune</label>
<tooltip>Tries to optimize the currently active point</tooltip>
</object>
<flag>wxALL|wxALIGN_CENTRE_VERTICAL</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="cp_editor_action_button">
</object>
<flag>wxALL|wxALIGN_CENTRE_VERTICAL</flag>
<border>3</border>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxCheckBox" name="cp_editor_fine_tune_check">
<label>auto fine-&amp;tune</label>
</object>
<flag>wxALL|wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cp_editor_auto_add">
<label>auto add</label>
<tooltip>immediately add control point when selecting a second point</tooltip>
</object>
<flag>wxALL|wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cp_editor_auto_estimate">
<label>auto-estimate</label>
<tooltip>tries to estimate the shift between the images and use it while placing control points</tooltip>
</object>
<flag>wxALL|wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxCheckBox" name="cp_editor_show_lines">
<label>draw line cp</label>
<tooltip>show line cp as a separate line</tooltip>
</object>
<flag>wxALL|wxEXPAND</flag>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxButton" name="cp_editor_delete">
<label>&amp;Delete</label>
</object>
<flag>wxALL|wxALIGN_CENTRE_VERTICAL</flag>
<border>3</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="cp_editor_add">
<label>&amp;Add</label>
<tooltip>add a new Point</tooltip>
</object>
<flag>wxALL|wxALIGN_CENTRE_VERTICAL</flag>
<border>3</border>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>3</border>
</object>
</object>
<flag>wxEXPAND</flag>
</object>
</object>
<style>wxTAB_TRAVERSAL</style>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
</object>
</object>
<style>wxTAB_TRAVERSAL|wxWANTS_CHARS</style>
</object>
<object class="wxMenu" name="cp_menu_action">
<object class="wxMenuItem" name="cp_menu_create_cp">
<label>Create control points</label>
<help>Create control points for current image pair</help>
<radio>1</radio>
</object>
<object class="wxMenuItem" name="cp_menu_celeste">
<label>Celeste</label>
<help>Remove control points in clouds</help>
<radio>1</radio>
<checked>1</checked>
</object>
<object class="wxMenuItem" name="cp_menu_clean_cp">
<label>Clean control points</label>
<radio>1</radio>
<help>Remove worst control points</help>
</object>
</object>
</resource>

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
<object class="wxFrame" name="cp_list_frame">
<title>Control Points</title>
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="CPListCtrl" name="cp_list_frame_list">
<style>wxLC_REPORT|wxLC_VIRTUAL</style>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="cp_list_delete">
<label>Delete</label>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="cp_list_select">
<label>Select by Distance</label>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
</object>
<style>wxDEFAULT_FRAME_STYLE|wxCAPTION|wxSYSTEM_MENU|wxRESIZE_BORDER|wxMINIMIZE_BOX|wxMAXIMIZE_BOX|wxFRAME_NO_TASKBAR|wxFRAME_FLOAT_ON_PARENT</style>
</object>
</resource>

View File

@@ -0,0 +1,345 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
<object class="wxDialog" name="cpdetector_dialog">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxFlexGridSizer">
<cols>2</cols>
<object class="sizeritem">
<object class="wxStaticText">
<label>Description:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_desc"/>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Type:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxChoice" name="prefs_cpdetector_type">
<content>
<item translate="0">Autopano (by A. Jenny)</item>
<item>All images at once</item>
<item>Panorama with stacks</item>
<item>Multi-row panorama</item>
<item>Multi-row panorama with stacks</item>
<item>Prealigned panorama</item>
</content>
</object>
<flag>wxALL</flag>
<border>5</border>
</object>
<growablecols>1</growablecols>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxNotebook" name="notebook_detector">
<object class="notebookpage">
<label>Detector</label>
<object class="wxPanel" name="panel_detector">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxChoicebook" name="choicebook_steps">
<object class="choicebookpage">
<label>One step detector</label>
<object class="wxPanel">
<object class="wxFlexGridSizer">
<cols>2</cols>
<object class="sizeritem">
<object class="wxStaticText">
<label>Program:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_program"/>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="prefs_cpdetector_program_select">
<label>Choose...</label>
</object>
<flag>wxRIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Arguments:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_args"/>
<flag>wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<growablecols>1</growablecols>
<object class="sizeritem">
<object class="wxStaticText" name="prefs_cpdetector_args_label_cleanup">
<label>Cleanup arguments:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_args_cleanup"/>
<flag>wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
</object>
</object>
</object>
<object class="choicebookpage">
<label>Two step detector</label>
<object class="wxPanel">
<object class="wxFlexGridSizer">
<cols>2</cols>
<object class="sizeritem">
<object class="wxStaticText">
<label>Feature descriptor:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_program_descriptor"/>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="prefs_cpdetector_program_descriptor_select">
<label>Choose...</label>
</object>
<flag>wxRIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Arguments:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_args_descriptor"/>
<flag>wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<growablecols>1</growablecols>
<object class="sizeritem">
<object class="wxStaticText">
<label>Feature matcher:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_program_matcher"/>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="prefs_cpdetector_program_matcher_select">
<label>Choose...</label>
</object>
<flag>wxRIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Arguments:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_args_matcher"/>
<flag>wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
</object>
</object>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
</object>
</object>
</object>
<object class="notebookpage">
<label>Detector for stacks</label>
<object class="wxPanel" name="panel_stack">
<object class="wxBoxSizer">
<object class="sizeritem">
<object class="wxStaticText">
<label>Leave empty when no control point detector should run on stacks.</label>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxFlexGridSizer">
<object class="sizeritem">
<object class="wxStaticText">
<label>Program:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxBoxSizer">
<orient>wxHORIZONTAL</orient>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_program_stack"/>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxButton" name="prefs_cpdetector_program_stack_select">
<label>Choose...</label>
</object>
<flag>wxRIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
</object>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>Arguments:</label>
</object>
<flag>wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxTextCtrl" name="prefs_cpdetector_args_stack"/>
<flag>wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
<border>5</border>
</object>
<cols>2</cols>
<growablecols>1</growablecols>
</object>
<flag>wxEXPAND</flag>
</object>
<orient>wxVERTICAL</orient>
</object>
</object>
</object>
<object class="notebookpage">
<label>Advanced option</label>
<object class="wxPanel" name="panel_option">
<object class="wxBoxSizer">
<orient>wxVERTICAL</orient>
<object class="sizeritem">
<object class="wxCheckBox" name="prefs_cpdetector_option">
<label></label>
<checked>1</checked>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>10</border>
</object>
<object class="sizeritem">
<object class="wxStaticText" name="prefs_cpdetector_no_option">
<label>This setting has no advanced options.</label>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>10</border>
</object>
</object>
</object>
</object>
<style></style>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
<object class="sizeritem">
<object class="wxStaticText">
<label>The following patterns will be substituted before running:
%o -- output project (0.oto will be appended when using Autopano)
%p -- number of control points between each pair
%v -- HFOV of first image
%f -- projection of first image (0-4, as in panotools)
%i -- image files
%namefile -- file that contains image filenames
%s -- input panotools script
%k -- intermediate key file(s)</label>
</object>
<flag>wxALL|wxEXPAND|wxADJUST_MINSIZE</flag>
<border>5</border>
</object>
</object>
<option>1</option>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
</object>
<option>1</option>
<flag>wxEXPAND</flag>
</object>
<object class="sizeritem">
<object class="wxStdDialogButtonSizer">
<object class="button">
<object class="wxButton" name="wxID_OK">
<label>OK</label>
<default>1</default>
</object>
</object>
<object class="button">
<object class="wxButton" name="wxID_CANCEL">
<label>Cancel</label>
</object>
</object>
</object>
<flag>wxALL|wxEXPAND</flag>
<border>5</border>
</object>
</object>
<title>Parameters for Control Point Detectors</title>
<style>wxDEFAULT_DIALOG_STYLE|wxCAPTION|wxRESIZE_BORDER|wxTAB_TRAVERSAL</style>
</object>
</resource>

View File

@@ -0,0 +1,339 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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 program 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 program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 985 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 720 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 527 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 466 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 738 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

View File

@@ -0,0 +1,23 @@
<html>
<head>
<title>Dedication</title>
</head>
<body bgcolor="#FFFFFF">
<p>
This is a place holder for the dedication of this edition of</p>
<center>
<p>
<font size= +1>
Hugin
</font>
</p>
<p>2011.0, planned for sometimes in April 2011
</p>
</center>
<p>Edit this file as a normal HTML file.
</p>
<p>URLs in this document should open in the system browser. Try <a href="http://hugin.sourceforge.net/">this</a>.
</p>
<p><b>TODO: substitute hard coded html file reference with a localized one.</p>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 463 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 710 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Some files were not shown because too many files have changed in this diff Show More