1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
=for
Copyright 2008 Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>
Licensed under the same terms as the hugin package itself.
=end
=head1 NAME
nona - Stitch a panorama image
=head1 SYNOPSIS
B<nona> [options] B<-o> I<output> I<project_file> (image files)
=head1 DESCRIPTION
B<nona> uses the transform function from PanoTools, the stitching
itself is quite simple, no seam feathering is done.
Only the non-antialiasing interpolators of PanoTools are supported.
The following output formats (B<n> option of PanoTools B<p> script
line) are supported:
=over
=item JPEG, TIFF, PNG : Single image formats without feathered blending
=item TIFF_m : multiple tiff files
=item TIFF_multilayer : Multilayer tiff files, readable by The Gimp 2.0
=back
=head1 OPTIONS
General options:
=over
=item B<-c>
Create coordinate images (only TIFF_m output)
=item B<-v>
Quiet, do not output progress indicators
=item B<-t> I<num>
Number of threads to be used (default: number of available cores)
=back
The following options can be used to override settings in the project file:
=over
=item B<-i> I<num>
Remap only image with number num (can be specified multiple times)
=item B<-m> I<str>
Set output file format (TIFF, TIFF_m, TIFF_multilayer, EXR, EXR_m)
=item B<-r> I<ldr>/I<hdr>
Set output mode:
=over
=item ldr - keep original bit depth and response
=item hdr - merge to hdr
=back
=for TODO: A blank line seems to be missing here.
=end
=item B<-e> I<exposure>
Set exposure for ldr mode
=item B<-p> I<TYPE>
Pixel type of the output. Can be one of:
=over
=item UINT8 8 bit unsigned integer
=item UINT16 16 bit unsigned integer
=item INT16 16 bit signed integer
=item UINT32 32 bit unsigned integer
=item INT32 32 bit signed integer
=item FLOAT 32 bit floating point
=back
=for TODO: A blank line seems to be missing here.
=end
=item B<-z>
Set compression type. Possible options for tiff output:
=over
=item NONE no compression
=item LZW LZW compression
=item DEFLATE deflate compression
=back
=head1 AUTHORS
Written by Pablo d'Angelo. Also contains contributions from Douglas Wilkins, Ippei Ukai, Ed Halley, Bruno Postle, Gerry Patterson and Brent Townshend.
This man page was written by Cyril Brulebois
<cyril.brulebois@enst-bretagne.fr> and is licensed under the same
terms as the hugin package itself.
|