Difference between revisions of "Enblend reference manual"

From PanoTools.org Wiki
Jump to navigation Jump to search
(restored internal linking, cosmetics)
(inserted link to old revision)
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{anchor|Top}} {{anchor|SEC_Top}}
+
==The [[Enblend]] reference manual for the most recent version in different formats can be found on http://panorama.dyndns.org/EandE-documentation/==
  
This manual is for Enblend (version 3.2-cvs, Thu Sep 25 07:35:10 UTC 2008), a tool for compositing images in such a way that the seam between the images is invisible, or at least very difficult to see.
+
The wiki version of this manual was for [[enblend]] version 3.2 which is outdated since 2008. It is still available in this wiki as [http://wiki.panotools.org/index.php?title=Enblend_reference_manual&oldid=13483 older revision]
 
 
{{anchor|Overview}} {{anchor|SEC1}}
 
 
 
=={{NotTOC|1. }}Overview==
 
 
 
Enblend overlays multiple TIFF images using the Burt-Adelson multiresolution spline algorithm.{{anchor|DOCF1}} [[#FOOT1|(1)]] This technique tries to make the seams between the input images invisible. The basic idea is that image features should be blended across a transition zone proportional in size to the spatial frequency of the features. For example, objects like trees and windowpanes have rapid changes in color. By blending these features in a narrow zone, you will not be able to see the seam because the eye already expects to see color changes at the edge of these features. Clouds and sky are the opposite. These features have to be blended across a wide transition zone because any sudden change in color will be immediately noticeable.
 
 
 
Enblend expects each input file to have an alpha channel. The alpha channel should indicate the region of the file that has valid image data. Enblend compares the alpha regions in the input files to find the areas where images overlap. Alpha channels can be used to indicate to Enblend that certain portions of an input image should not contribute to the final image.
 
 
 
{{anchor|IDX1}} {{anchor|IDX2}}
 
 
 
Enblend does ''not'' align images. Use a tool as <code>hugin</code> or PanoTools to do this. The TIFF files produced by these programs are exactly what Enblend is designed to work with. Sometimes these GUIs allow you to select feathering for the edges of your images. This treatment is detrimental to Enblend. Turn off feathering by deselecting it or setting the feather width to zero.
 
 
 
Enblend blends the images in the order they are specified on the command line. You should order your images according to the way that they overlap, for example from left-to-right across the panorama. If you are making a multi-row panorama, we recommend blending each horizontal row individually, and then running Enblend a last time to blend all of the rows together vertically.
 
 
 
Find out more about Enblend on its [http://enblend.sourceforge.net/ webpage].
 
 
 
----
 
 
 
{{anchor|Invocation}} {{anchor|SEC2}}
 
 
 
=={{NotTOC|2. }}Invocation==
 
 
 
<code>enblend</code> [<var>OPTIONS</var>] <code>-o</code> <var>OUTPUT-FILE</var> <var>INPUT-FILES</var><small class="enddots">....</small>
 
 
 
Assemble the sequence of images <var>INPUT-FILES</var><small class="enddots">....</small> into <var>OUTPUT-FILE</var>.
 
 
 
{| class="menu"
 
| align="left" |
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
| align="left" | General options
 
|-
 
| align="left" |
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
| align="left" | Memory and GPU control
 
|-
 
| align="left" |
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
| align="left" | Mask generation control
 
|}
 
 
 
----
 
 
 
{{anchor|Common-Options}} {{anchor|SEC3}}
 
 
 
==={{NotTOC|2.1 }}Common Options===
 
 
 
Common options control some overall features of Enblend.
 
 
 
; <code>-a</code>
 
: {{anchor|IDX3}} Pre-assemble non-overlapping images before each blending iteration.This overrides the default behavior which is to blend the images sequentially in the order given on the command line. Enblend will use fewer blending iterations, but it will do more work in each iteration.
 
; <code>--compression=<var>COMPRESSION</var></code>
 
: {{anchor|IDX4}} Write a compressed output file.Depending on the output file format Enblend accepts different values for <var>COMPRESSION</var>.
 
;; JPEG
 
:: <var>COMPRESSION</var> is a JPEG quality level ranging from 0–100.
 
;; TIFF
 
:: <var>COMPRESSION</var> is one of the keywords:
 
;;; ‘NONE’
 
::: Do not compress. This is the default.
 
;;; ‘DEFLATE’
 
::: {{anchor|IDX5}} {{anchor|IDX6}} Use the Deflate compression scheme also called ZIP-in-TIFF. Deflate is a lossless data compression algorithm that uses a combination of the LZ77 algorithm and Huffman coding.
 
;;; ‘LZW’
 
::: {{anchor|IDX7}} {{anchor|IDX8}} Use Lempel-Ziv-Welch (LZW) adaptive compression scheme. LZW compression is lossless.
 
;;; ‘PACKBITS’
 
::: {{anchor|IDX9}} {{anchor|IDX10}} Use PackBits compression scheme. PackBits is particular variant of run-length compression. It is lossless.
 
;; Any other format
 
:: Other formats like the PNG do not accept a <var>COMPRESSION</var> setting.
 
; <code>-h</code>
 
; <code>--help</code>
 
: {{anchor|IDX11}} {{anchor|IDX12}} Print information on the available options and exit.
 
; <code>-l <var>LEVELS</var></code>
 
: {{anchor|IDX13}} Use exactly this many <var>LEVELS</var> for pyramid blending.This trades off quality of results for shorter execution time and lower memory usage. The default is to use as many levels as is possible given the size of the overlap regions. Enblend may still use a smaller number of levels if the geometry of the images demands.
 
; <code>-o <var>OUTPUT-FILE</var></code>
 
: {{anchor|IDX14}} Required option that specifies the name of the <var>OUTPUT-FILE</var>.
 
; <code>-v</code>
 
; <code>--verbose</code>
 
: {{anchor|IDX15}} {{anchor|IDX16}} Increase the verbosity of progress reporting. Giving one or more ‘-v’ options will make Enblend more verbose.
 
; <code>-V</code>
 
; <code>--version</code>
 
: {{anchor|IDX17}} {{anchor|IDX18}} Output information on the Enblend version and some configuration details like extra features that have been compiled in.
 
; <code>-w</code>
 
: {{anchor|IDX19}} Blend around the ± 180° boundary. Useful for full 360° panoramas. Version 3.2-cvs of Enblend, the one described here, does not blend neither zenith nor or nadir, so you may still see some seams in these areas.
 
; <code>-x</code>
 
: {{anchor|IDX20}} Checkpoint partial results to the output file after each blending step.
 
; <code>-z</code>
 
: {{anchor|IDX21}} This option has been deprecated. It is kept for backward compatability with older scripts. Use ‘--compression=LZW’ instead.
 
 
 
----
 
 
 
{{anchor|Extended-Options}} {{anchor|SEC4}}
 
 
 
==={{NotTOC|2.2 }}Extended Options===
 
 
 
Extended options control the image cache, the color model, and the cropping of the output image.
 
 
 
; <code>-b <var>BLOCKSIZE</var></code>
 
: {{anchor|IDX22}} {{anchor|IDX23}} Set the <var>BLOCKSIZE</var> in kilobytes (KB) of Enblend's image cache.This is the amount of data that Enblend will move to and from the disk in one go. The default is 2048KB, which should be ok for most systems.
 
; <code>-c</code>
 
: {{anchor|IDX24}} {{anchor|IDX25}} {{anchor|IDX26}} Use the CIECAM02 color appearance model for blending colors.The input files should have embedded ICC profiles if this option is specified. If no ICC profile is present, Enblend will assume that the image uses the sRGB color space. The difference between this option and Enblend's default color blending algorithm is very slight and will be only noticeable when areas of different primary colors are blended together.
 
; <code>-d</code>
 
; <code>--depth=<var>DEPTH</var></code>
 
: {{anchor|IDX27}} {{anchor|IDX28}} {{anchor|IDX29}} Force the number of bits per channel and the numeric format of the output image.All <var>DEPTH</var> specifications are valid in lowercase as well as uppercase letters. For integer format use
 
;; <code>8</code>, <code>uint8</code>
 
:: Unsigned 8 bit; range: 0..255
 
;; <code>int16</code>
 
:: Signed 16 bit; range: -32768..32767
 
;; <code>16</code>, <code>uint16</code>
 
:: Unsigned 16 bit; range: 0..65536
 
;; <code>int32</code>
 
:: Signed 32 bit; range: -2147483648..2147483647
 
;; <code>32</code>, <code>uint32</code>
 
:: Unsigned 32 bit; range: 0..4294967295For floating-point format use
 
;; <code>r32</code>, <code>real32</code>, <code>float</code>
 
:: IEEE754 single precision floating-point, 32 bits wide, 24 bit significant
 
::* - Minimal normalized value:  1.2 ×  10 -38
 
::* - Epsilon:  1.2 ×  10 -7
 
::* - Maximal finite value:  3.4 ×  10 38
 
;; <code>r64</code>, <code>real64</code>, <code>double</code>
 
:: IEEE754 double precision floating-point, 64 bits wide, 53 bit significant
 
::* - Minimal normalized value:  2.2 ×  10 -308
 
::* - Epsilon:  2.2 ×  10 -16
 
::* - Maximal finite value:  1.8 ×  10 308  If the requested <var>DEPTH</var> is not supported by the output file format, Enblend warns and chooses the <var>DEPTH</var> that matches best.
 
; <code>-g</code>
 
: {{anchor|IDX30}} {{anchor|IDX31}} {{anchor|IDX32}} {{anchor|IDX33}} Gimp (before version 2.0) and Cinepaint (see section [[#SEC10|Helpful Additional Programs]]) exhibit unusual behavior when loading images with unassociated alpha channels. Use option ‘-g’ to work around this problem. With this flag Enblend creates the output image with the associated alpha tag set, even though the image is really unassociated alpha.
 
; <code>--gpu</code>
 
: {{anchor|IDX34}} Use the graphics card to accelerate some computations.This is an experimental feature that may not work on all systems. In this version of Enblend, 3.2-cvs, only mask optimization strategy 1 benefits from this option.
 
; <code>-f <var>WIDTH</var>x<var>HEIGHT</var></code>
 
; <code>-f <var>WIDTH</var>x<var>HEIGHT</var>+x<var>XOFFSET</var>+y<var>YOFFSET</var></code>
 
: {{anchor|IDX35}} {{anchor|IDX36}} Set the size of the output image manually to <var>WIDTH</var>× <var>HEIGHT</var>. Optionally specify the <var>X-OFFSET</var> and <var>Y-OFFSET</var>, too. {{anchor|IDX37}} {{anchor|IDX38}} This option is useful when the input images are cropped TIFF files, such as those produced by <code>nona</code>. The stitcher <code>nona</code> is part of Hugin. See section [[#SEC10|Helpful Additional Programs]].
 
; <code>-m <var>CACHESIZE</var></code>
 
: {{anchor|IDX39}} {{anchor|IDX40}} Set the <var>CACHESIZE</var> in megabytes (MB) of Enblend's image cache.This is the amount of memory Enblend will use for storing image data before swapping to disk. The default is 1024MB which is good for systems with 3–4gigabytes (GB) of RAM.
 
; <code>--visualize=<var>IMAGE-FILE</var></code>
 
: {{anchor|IDX41}} {{anchor|IDX42}} Create an <var>IMAGE-FILE</var> that visualizes the mask optimization process.This shows Enblend's view of the overlap region and how it decided to route the seam line. If you are experiencing artifacts or unexpected output, it may be useful to include this visualization image in your bug report.
 
 
 
----
 
 
 
{{anchor|Mask-Generation-Options}} {{anchor|SEC5}}
 
 
 
==={{NotTOC|2.3 }}Mask Generation Options===
 
 
 
These options control the generation and the usage of masks.
 
 
 
; <code>--coarse-mask</code>
 
: {{anchor|IDX43}} {{anchor|IDX44}} {{anchor|IDX45}} Use a scaled-down version of the input images to create the seam line. This is the default.
 
; <code>--fine-mask</code>
 
: {{anchor|IDX46}} {{anchor|IDX47}} {{anchor|IDX48}} Use the full-size images to create the seam line. This can be slow. Use ‘--fine-mask’ if you have very narrow overlap regions.
 
; <code>--load-mask=<var>IMAGE-FILE</var></code>
 
: {{anchor|IDX49}} {{anchor|IDX50}} {{anchor|IDX51}} Instead of generating a mask, use the one in <var>IMAGE-FILE</var>.
 
; <code>--no-optimize</code>
 
: {{anchor|IDX52}} {{anchor|IDX53}} {{anchor|IDX54}} Turn off seam line optimization. Combined with ‘--fine-mask’ this will produce the same type of mask as Enblend version 2.5.
 
; <code>--optimize</code>
 
: {{anchor|IDX55}} {{anchor|IDX56}} {{anchor|IDX57}} Use a two-strategy approach to route the seam line around mismatches in the overlap region. This is the default.
 
; <code>--save-mask=<var>IMAGE-FILE</var></code>
 
: {{anchor|IDX58}} {{anchor|IDX59}} {{anchor|IDX60}} Save the generated mask to <var>IMAGE-FILE</var>.Use this option if you wish to edit the location of the seam line by hand. This will give you a template of the right size that you can edit to make your changes. Later, use ‘--load-mask’ to blend the project with your custom seam line.
 
 
 
----
 
 
 
{{anchor|Understanding-Masks}} {{anchor|SEC6}}
 
 
 
=={{NotTOC|3. }}Understanding Masks==
 
 
 
A ''binary mask'' indicates for every pixel of an image if this pixel must be considered in further processing or ignored. For a ''weight mask'', the value of the mask determines how much the pixel contributes, zero again meaning “no contribution”.
 
 
 
Masks arise in two places: as part of the input files and as separate files, showing the actual pixel weights prior to image blendung or fusion. We shall explore both occurrences in the next sections.
 
 
 
----
 
 
 
{{anchor|SEC7}}
 
 
 
==={{NotTOC|3.1 }}Masks in Input Files===
 
 
 
Each of the input files for Enfuse and Enblend can contain its own mask. Both applications interpret them as binary masks no matter how many bits per image pixel they contain.
 
 
 
{{anchor|IDX61}} {{anchor|IDX62}}
 
 
 
Use ImageMagick's <code>identify</code> or, for TIFF files, <code>tiffinfo</code> to inquire quickly whether a file contains a mask. [[#SEC10|Helpful Additional Programs]] shows where to find these programs on the web.
 
 
 
{|
 
|
 
$ identify -format "%f %m %wx%h %r %q-bit" remapped-0000.tif
 
remapped-0000.tif TIFF 800x533 DirectClassRGBMatte 8-bit
 
                                              ^^^^^ mask
 
|}
 
 
 
{|
 
|
 
$ tiffinfo remapped-0000.tif
 
TIFF Directory at offset 0x1a398a (1718666)
 
  Subfile Type: (0 = 0x0)
 
  Image Width: 800 Image Length: 533
 
  Resolution: 150, 150 pixels/inch
 
  Position: 0, 0
 
  Bits/Sample: 8
 
  Sample Format: unsigned integer
 
  Compression Scheme: PackBits
 
  Photometric Interpretation: RGB color
 
  Extra Samples: 1&lt;unassoc-alpha&gt;            &lt;&lt;&lt;&lt;&lt; mask
 
  Orientation: row 0 top, col 0 lhs
 
  Samples/Pixel: 4                          &lt;&lt;&lt;&lt;&lt; R, G, B, and mask
 
  Rows/Strip: 327
 
  Planar Configuration: single image plane
 
|}
 
 
 
The “Matte” part of the image class and the “Extra Samples” line tell us that the file features a mask. Also, many interactive image manipulation programs show the mask as a separate channel, sometimes called “Alpha”. There, the white (high mask value) parts of the mask enable pixels and black (low mask value) parts suppress them.
 
 
 
The multitude of terms all describing the concept of a mask is confusing.
 
 
 
; Mask
 
: A mask defines a selection of pixels. A value of zero represents an unselected pixel. The maximum value (“white”) represents a selected pixel and the values between zero and the maximum are partially selected pixels. See [http://gimp-savvy.com/BOOK/index.html$$$$node42.html Gimp-Savy].
 
; Alpha Channel
 
: The alpha channel stores the transpacency value for each pixel, typically in the range from zero to one. A value of zero means the pixel is completely transparent, thus does not contribute to the image. A value of one on the other hand means the pixel is completely opaque.
 
; Matte
 
: The notion “matte” as used by ImageMagick refers to an inverted alpha channel, more precisely: 1 - alpha. See [http://www.imagemagick.org/Usage/channels/#trans ImageMagick] for further explanations.
 
 
 
Enblend and Enfuse only consider pixels that have an associated mask value different from zero. If an input image does not have an alpha channel, Enblend warns and assumes a mask of all non-zero values, this is, it will use every pixel of the input image for fusion.
 
 
 
Stitchers like <code>nona</code> add a mask to their output images.
 
 
 
Sometimes it is helpful to manually modify a mask before fusion. For example to suppress unwanted objects (insects and cars come into mind) that moved across the scene during the exposures. If the masks of all input images are black at a certain position, the output image will have a hole there.
 
 
 
----
 
 
 
{{anchor|SEC8}}
 
 
 
==={{NotTOC|3.2 }}Weight Mask Files===
 
 
 
...
 
 
 
----
 
 
 
{{anchor|Tuning-Memory-Usage}} {{anchor|SEC9}}
 
 
 
=={{NotTOC|4. }}Tuning Memory Usage==
 
 
 
The default configuration of Enfuse assumes a system with 3–4GB of RAM.
 
 
 
{{anchor|IDX63}}
 
 
 
If Enfuse has been compiled with the C++-preprocessor symbol <code>ENBLEND_CACHE_IMAGES</code> it uses its own image cache, whose size is user configurable with the option ‘-m <var>CACHE-SIZE</var>’ (see section [[#SEC4|Extended Options]]). Furthermore, option ‘-b <var>BUFFER-SIZE</var>’ (see section [[#SEC4|Extended Options]]) allows for fine-tuning the size of a single buffer inside the image cache. Note that <var>CACHE-SIZE</var> is given in megabytes, whereas <var>BUFFER-SIZE</var> is given in kilobytes.
 
 
 
Usually the user lets the operating system take care of the memory management of all processes. However, a user of Enfuse might want to control the balance between the operating systems' Virtual Memory System and Enfuse's image cache for several reasons.
 
 
 
* Paging in or out parts of a process' image runs at kernel level and thus can make user processes appear unresponsive or “jumpy”. The caching mechanism of Enfuse of course runs as a user process, which is why it has less detrimental effects on the system's overall responsiveness.
 
* Enfuse's image cache has been optimized for accesses to image data. And all algorithms in Enfuse have been carefully arranged to play nice with the image cache. An operating system's cache has no knowledge of these particular memory access patterns.
 
* The disk access of the operating system to the swap device has been highly optimized. Enfuse on the other hand uses the standard IO-layer which is a slower interface.
 
* Limiting the amount of image cache prevents Enfuse from eating up most or all RAM, thereby forcing all user applications into the swap device.
 
 
 
The <var>CACHE-SIZE</var> should be set in a way as to reconcile all of the above aspects even for the biggest data sets (this is many images and large images).
 
 
 
Suggested cache- and buffer-sizes for different amounts of available RAM.
 
 
 
<div class="float">{{anchor|tab_003acache_002dsize_002dsettings}}
 
 
 
{| border="1"
 
! RAM
 
! ''CACHE-SIZE''
 
! ''BUFFER-SIZE''
 
! Comment
 
|-
 
! MB
 
! MB
 
! KB
 
|-
 
| 4096
 
| 1024
 
| 2048
 
| default
 
|-
 
| 2048
 
| 512–1024
 
| 1024
 
|-
 
| 1024
 
| 256–512
 
| 256–512
 
|}
 
 
 
</div>
 
 
 
'''Table 4.1: Suggested cache-size settings '''
 
 
 
----
 
 
 
{{anchor|Helpful-Programs}} {{anchor|SEC10}}
 
 
 
=={{NotTOC|5. }}Helpful Additional Programs==
 
 
 
Several libraries and programs have proven helpful when working with Enfuse and Enblend.
 
 
 
; '''Raw Image Conversion'''
 
 
 
:* {{anchor|IDX64}} {{anchor|IDX65}} [http://www.cybercom.net/~dcoffin/dcraw/ DCRaw] is a universal raw-converter.
 
:* {{anchor|IDX66}} {{anchor|IDX67}} {{anchor|IDX68}} [http://ufraw.sourceforge.net/ UFRaw], a raw converter based on DCRaw, adds a GUI (<code>ufraw</code>), versatile batch processing (<code>ufraw-batch</code>), and some additional features like, for example, cropping, noise reduction with wavelets, and automatic lens error correction.
 
 
 
; '''Image Alignment and Rendering'''
 
 
 
:* {{anchor|IDX69}} {{anchor|IDX70}} [http://auricle.dyndns.org/ALE/ ALE], David Hilvert's anti-lamenessing engine for the real die-hard command-line users aligns, filters, and renders images.
 
:* {{anchor|IDX71}} {{anchor|IDX72}} [http://hugin.sourceforge.net/ Hugin] is a GUI that aligns and stitches images. {{anchor|IDX73}} {{anchor|IDX74}} {{anchor|IDX75}} It comes with several command line tools, like <code>nona</code> to stitch panorama images, <code>align_image_stack</code> to align overlapping images for HDR or create focus stacks, and <code>fulla</code> to correct lens errors.
 
:* {{anchor|IDX76}} {{anchor|IDX77}} {{anchor|IDX78}} [http://panotools.sourceforge.net/ PanoTools] the successor of Helmut Dersch's [http://www.all-in-one.ee/~dersch/ original PanoTools] offers a set of command-line dirven applications to create panoramas. Most notable are <code>PTOptimizer</code> and <code>PTmender</code>.
 
 
 
; '''Image Manipulation'''
 
 
 
:* {{anchor|IDX79}} {{anchor|IDX80}} [http://www.cinepaint.org/ CinePaint] is a branch of an early Gimp forked off at version 1.0.4. It sports much less features than the current Gimp, but offers 8bit, 16bit and 32bit color channels, HDR (for example floating-point TIFF, and OpenEXR), and a tightly integrated color management system.
 
:* {{anchor|IDX81}} {{anchor|IDX82}} The [www.gimp.org/ Gimp] is a general purpose image manipulation program. At the time of this writing it is still limited to images with only 8bits per channel.
 
:* {{anchor|IDX83}} {{anchor|IDX84}} [http://www.imagemagick.org/ ImageMagick] and its clone [http://www.graphicsmagick.org/ GraphicsMagick] are general purpose command-line driven image manipulation programs.
 
 
 
; '''High Dynamic Range'''
 
 
 
:* {{anchor|IDX85}} [http://www.openexr.com/ OpenEXR] offers libraries and some programs to work with the EXR HDR format.
 
:* {{anchor|IDX86}} [http://pfstools.sourceforge.net/ PFSTools] create, modify, and tonemap high-dynamic range images.
 
 
 
; '''Libraries'''
 
 
 
:* {{anchor|IDX87}} [http://www.ijg.org/ LibJPEG] is a library for handling the JPEG (JFIF) image format.
 
:* {{anchor|IDX88}} [http://www.libpng.org/pub/png/libpng.html LibPNG] is a library that handles the Portable Network Graphics (PNG) image format.
 
:* {{anchor|IDX89}} [http://www.remotesensing.org/libtiff/ LibTIFF] offers a library and utility programs to manipulate the ubiquitous Tagged Image File Format, TIFF. {{anchor|IDX90}} The nifty <code>tiffinfo</code> command quickly inquires the properties of TIFF files.
 
 
 
; '''Meta-Data Handling'''
 
 
 
:* {{anchor|IDX91}} {{anchor|IDX92}} [http://www.sno.phy.queensu.ca/~phil/exiftool/ EXIFTool] reads and writes EXIF meta data. In particular it copies meta data from one image to another.
 
:* {{anchor|IDX93}} {{anchor|IDX94}} [http://www.littlecms.com/ LittleCMS] is the color management library used by Hugin, DCRaw, UFRaw, Enblend, and Enfuse. It supplies some binaries, too. <code>tifficc</code>, an ICC color profile applier, is of particular interest.
 
 
 
----
 
 
 
{{anchor|Authors}} {{anchor|SEC11}}
 
 
 
==A. Authors==
 
 
 
* Andrew Mihal [mailto:acmihal@users.sourceforge.net acmihal@users.sourceforge.net].
 
 
 
----
 
 
 
{{anchor|Program-Index}} {{anchor|SEC13}}
 
 
 
==Program Index==
 
 
 
{|
 
! Jump to:
 
|
 
[[#SEC13_0|'''A''']] [[#SEC13_1|'''C''']] [[#SEC13_2|'''D''']] [[#SEC13_3|'''E''']] [[#SEC13_4|'''F''']] [[#SEC13_5|'''G''']] [[#SEC13_6|'''H''']] [[#SEC13_7|'''I''']] [[#SEC13_8|'''L''']] [[#SEC13_9|'''N''']] [[#SEC13_10|'''O''']] [[#SEC13_11|'''P''']] [[#SEC13_12|'''T''']] [[#SEC13_13|'''U''']]
 
|}
 
 
 
{| class="index-pg"
 
! align="left" | Index Entry
 
! align="left" | Section
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_0}} A
 
|-
 
|
 
[[#IDX69|<code>ALE</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX74|<code>align_image_stack</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX70|<code>Anti-Lamenessing Engine</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_1}} C
 
|-
 
|
 
[[#IDX79|<code>CinePaint</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX80|<code>cinepaint</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_2}} D
 
|-
 
|
 
[[#IDX65|<code>dcraw</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX64|<code>DCRaw</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_3}} E
 
|-
 
|
 
[[#IDX92|<code>exiftool</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX91|<code>EXIFTool</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_4}} F
 
|-
 
|
 
[[#IDX75|<code>fulla</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_5}} G
 
|-
 
|
 
[[#IDX82|<code>gimp</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX81|<code>Gimp</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX84|<code>GraphicsMagick</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_6}} H
 
|-
 
|
 
[[#IDX1|<code>hugin</code>]]
 
|
 
[[#SEC1|{{NotTOC|1. }}Overview]]
 
|-
 
|
 
[[#IDX38|<code>Hugin</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX72|<code>hugin</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX71|<code>Hugin</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_7}} I
 
|-
 
|
 
[[#IDX61|<code>identify</code>]]
 
|
 
[[#SEC7|{{NotTOC|3.1 }}Masks in Input Files]]
 
|-
 
|
 
[[#IDX83|<code>ImageMagick</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_8}} L
 
|-
 
|
 
[[#IDX87|<code>LibJPEG</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX88|<code>LibPNG</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX89|<code>LibTIFF</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX93|<code>LittleCMS, TiffICC</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_9}} N
 
|-
 
|
 
[[#IDX37|<code>nona</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX73|<code>nona</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_10}} O
 
|-
 
|
 
[[#IDX85|<code>OpenEXR</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_11}} P
 
|-
 
|
 
[[#IDX2|<code>PanoTools</code>]]
 
|
 
[[#SEC1|{{NotTOC|1. }}Overview]]
 
|-
 
|
 
[[#IDX76|<code>PanoTools</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX86|<code>PFSTools</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX78|<code>PTmender</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX77|<code>PTOptimizer</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_12}} T
 
|-
 
|
 
[[#IDX94|<code>tifficc</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX62|<code>tiffinfo</code>]]
 
|
 
[[#SEC7|{{NotTOC|3.1 }}Masks in Input Files]]
 
|-
 
|
 
[[#IDX90|<code>tiffinfo</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC13_13}} U
 
|-
 
|
 
[[#IDX66|<code>UFRaw</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX67|<code>ufraw</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
|
 
[[#IDX68|<code>ufraw-batch</code>]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|}
 
 
 
{|
 
! Jump to:
 
|
 
[[#SEC13_0|'''A''']] [[#SEC13_1|'''C''']] [[#SEC13_2|'''D''']] [[#SEC13_3|'''E''']] [[#SEC13_4|'''F''']] [[#SEC13_5|'''G''']] [[#SEC13_6|'''H''']] [[#SEC13_7|'''I''']] [[#SEC13_8|'''L''']] [[#SEC13_9|'''N''']] [[#SEC13_10|'''O''']] [[#SEC13_11|'''P''']] [[#SEC13_12|'''T''']] [[#SEC13_13|'''U''']]
 
|}
 
 
 
----
 
 
 
{{anchor|Option-Index}} {{anchor|SEC14}}
 
 
 
==Option Index==
 
 
 
{| class="index-op"
 
! align="left" | Index Entry
 
! align="left" | Section
 
|-
 
| colspan="3" |
 
----
 
|-
 
|
 
[[#IDX3|<code>-a</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX22|<code>-b</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#SEC9|<code>-b</code>]]
 
|
 
[[#SEC9|{{NotTOC|4. }}Tuning Memory Usage]]
 
|-
 
|
 
[[#IDX24|<code>-c</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX43|<code>--coarse-mask</code>]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX4|<code>--compression</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX27|<code>-d</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX28|<code>--depth</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX35|<code>-f</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX46|<code>--fine-mask</code>]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX30|<code>-g</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX34|<code>--gpu</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX11|<code>-h</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX12|<code>--help</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX13|<code>-l</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX49|<code>--load-mask</code>]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX39|<code>-m</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#SEC9|<code>-m</code>]]
 
|
 
[[#SEC9|{{NotTOC|4. }}Tuning Memory Usage]]
 
|-
 
|
 
[[#IDX52|<code>--no-optimize</code>]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX14|<code>-o</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX55|<code>--optimize</code>]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX58|<code>--save-mask</code>]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX17|<code>-V</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX15|<code>-v</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX16|<code>--verbose</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX18|<code>--version</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX41|<code>--visualize</code>]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX19|<code>-w</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX20|<code>-x</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX21|<code>-z</code>]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
| colspan="3" |
 
----
 
|}
 
 
 
----
 
 
 
{{anchor|General-Index}} {{anchor|SEC15}}
 
 
 
==General Index==
 
 
 
{|
 
! Jump to:
 
|
 
[[#SEC15_0|'''A''']] [[#SEC15_1|'''B''']] [[#SEC15_2|'''C''']] [[#SEC15_3|'''D''']] [[#SEC15_4|'''E''']] [[#SEC15_5|'''F''']] [[#SEC15_6|'''G''']] [[#SEC15_7|'''H''']] [[#SEC15_8|'''I''']] [[#SEC15_9|'''L''']] [[#SEC15_10|'''M''']] [[#SEC15_11|'''O''']] [[#SEC15_12|'''P''']] [[#SEC15_13|'''S''']] [[#SEC15_14|'''U''']] [[#SEC15_15|'''W''']]
 
|}
 
 
 
{| class="index-cp"
 
! align="left" | Index Entry
 
! align="left" | Section
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_0}} A
 
|-
 
|
 
[[#IDX31|alpha channels, unassociated]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_1}} B
 
|-
 
|
 
[[#SEC6|binary mask]]
 
|
 
[[#SEC6|{{NotTOC|3. }}Understanding Masks]]
 
|-
 
|
 
[[#IDX29|bits per channel]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_2}} C
 
|-
 
|
 
[[#IDX26|CIECAM02]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX33|Cinepaint]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX45|coarse mask]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX25|color appearance model]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX6|compression, deflate]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX8|compression, LZW]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#IDX10|compression, packbits]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_3}} D
 
|-
 
|
 
[[#IDX5|deflate compression]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_4}} E
 
|-
 
|
 
[[#IDX63|<code>ENBLEND_CACHE_IMAGES</code> (preprocessor symbol)]]
 
|
 
[[#SEC9|{{NotTOC|4. }}Tuning Memory Usage]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_5}} F
 
|-
 
|
 
[[#IDX48|fine mask]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_6}} G
 
|-
 
|
 
[[#SEC15|general index]]
 
|
 
[[#SEC15|General Index]]
 
|-
 
|
 
[[#IDX32|Gimp]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_7}} H
 
|-
 
|
 
[[#SEC10|helpful programs]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_8}} I
 
|-
 
|
 
[[#IDX23|image cache, block size]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#IDX40|image cache, cache size]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#SEC15|index, general]]
 
|
 
[[#SEC15|General Index]]
 
|-
 
|
 
[[#SEC14|index, option]]
 
|
 
[[#SEC14|Option Index]]
 
|-
 
|
 
[[#SEC13|index, program]]
 
|
 
[[#SEC13|Program Index]]
 
|-
 
|
 
[[#SEC7|input masks]]
 
|
 
[[#SEC7|{{NotTOC|3.1 }}Masks in Input Files]]
 
|-
 
|
 
[[#SEC2|invocation]]
 
|
 
[[#SEC2|{{NotTOC|2. }}Invocation]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_9}} L
 
|-
 
|
 
[[#IDX51|load mask]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX7|LZW compression]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_10}} M
 
|-
 
|
 
[[#SEC6|mask, binary]]
 
|
 
[[#SEC6|{{NotTOC|3. }}Understanding Masks]]
 
|-
 
|
 
[[#IDX44|mask, coarse]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX47|mask, fine]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX50|mask, load]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX59|mask, save]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX42|mask, visualization]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#SEC6|mask, weight]]
 
|
 
[[#SEC6|{{NotTOC|3. }}Understanding Masks]]
 
|-
 
|
 
[[#SEC7|masks, input files]]
 
|
 
[[#SEC7|{{NotTOC|3.1 }}Masks in Input Files]]
 
|-
 
|
 
[[#SEC6|masks, undestanding]]
 
|
 
[[#SEC6|{{NotTOC|3. }}Understanding Masks]]
 
|-
 
|
 
[[#SEC8|masks, weight]]
 
|
 
[[#SEC8|{{NotTOC|3.2 }}Weight Mask Files]]
 
|-
 
|
 
[[#SEC9|memory, tuning usage of]]
 
|
 
[[#SEC9|{{NotTOC|4. }}Tuning Memory Usage]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_11}} O
 
|-
 
|
 
[[#IDX53|optimize seam]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX56|optimize seam]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#SEC14|option index]]
 
|
 
[[#SEC14|Option Index]]
 
|-
 
|
 
[[#SEC3|options, common]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#SEC4|options, extended]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#SEC5|options, mask generation]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX36|output image, set size of]]
 
|
 
[[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
|-
 
|
 
[[#SEC1|overview]]
 
|
 
[[#SEC1|{{NotTOC|1. }}Overview]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_12}} P
 
|-
 
|
 
[[#IDX9|packbits compression]]
 
|
 
[[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
|-
 
|
 
[[#SEC13|program index]]
 
|
 
[[#SEC13|Program Index]]
 
|-
 
|
 
[[#SEC10|programs, helpful additional]]
 
|
 
[[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_13}} S
 
|-
 
|
 
[[#IDX60|save mask]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX54|seam optimization]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
|
 
[[#IDX57|seam optimization]]
 
|
 
[[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_14}} U
 
|-
 
|
 
[[#SEC6|undestanding masks]]
 
|
 
[[#SEC6|{{NotTOC|3. }}Understanding Masks]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! {{anchor|SEC15_15}} W
 
|-
 
|
 
[[#SEC6|weight mask]]
 
|
 
[[#SEC6|{{NotTOC|3. }}Understanding Masks]]
 
|-
 
|
 
[[#SEC8|weight masks]]
 
|
 
[[#SEC8|{{NotTOC|3.2 }}Weight Mask Files]]
 
|-
 
| colspan="3" |
 
----
 
|}
 
 
 
{|
 
! Jump to:
 
|
 
[[#SEC15_0|'''A''']] [[#SEC15_1|'''B''']] [[#SEC15_2|'''C''']] [[#SEC15_3|'''D''']] [[#SEC15_4|'''E''']] [[#SEC15_5|'''F''']] [[#SEC15_6|'''G''']] [[#SEC15_7|'''H''']] [[#SEC15_8|'''I''']] [[#SEC15_9|'''L''']] [[#SEC15_10|'''M''']] [[#SEC15_11|'''O''']] [[#SEC15_12|'''P''']] [[#SEC15_13|'''S''']] [[#SEC15_14|'''U''']] [[#SEC15_15|'''W''']]
 
|}
 
 
 
----
 
 
 
{{anchor|SEC_Foot}}
 
 
 
==Footnotes==
 
 
 
{{anchor|FOOT1}} [[#DOCF1|(1)]] Peter J. Burt and Edward H. Adelson, “A Multiresolution Spline With Application to Image Mosaics”, ACM Transactions on Graphics, Vol. 2, No. 4, October 1983, pages 217–236.
 
 
 
----
 
 
 
{{anchor|SEC_Contents}}
 
 
 
==Table of Contents==
 
 
 
<div class="contents">
 
 
 
* {{anchor|TOC1}} [[#SEC1|{{NotTOC|1. }}Overview]]
 
* {{anchor|TOC2}} [[#SEC2|{{NotTOC|2. }}Invocation]]
 
** {{anchor|TOC3}} [[#SEC3|{{NotTOC|2.1 }}Common Options]]
 
** {{anchor|TOC4}} [[#SEC4|{{NotTOC|2.2 }}Extended Options]]
 
** {{anchor|TOC5}} [[#SEC5|{{NotTOC|2.3 }}Mask Generation Options]]
 
* {{anchor|TOC6}} [[#SEC6|{{NotTOC|3. }}Understanding Masks]]
 
** {{anchor|TOC7}} [[#SEC7|{{NotTOC|3.1 }}Masks in Input Files]]
 
** {{anchor|TOC8}} [[#SEC8|{{NotTOC|3.2 }}Weight Mask Files]]
 
* {{anchor|TOC9}} [[#SEC9|{{NotTOC|4. }}Tuning Memory Usage]]
 
* {{anchor|TOC10}} [[#SEC10|{{NotTOC|5. }}Helpful Additional Programs]]
 
* {{anchor|TOC11}} [[#SEC11|A. Authors]]
 
* {{anchor|TOC13}} [[#SEC13|Program Index]]
 
* {{anchor|TOC14}} [[#SEC14|Option Index]]
 
* {{anchor|TOC15}} [[#SEC15|General Index]]
 
 
 
</div>
 
----
 

Revision as of 21:44, 17 June 2012

The Enblend reference manual for the most recent version in different formats can be found on http://panorama.dyndns.org/EandE-documentation/

The wiki version of this manual was for enblend version 3.2 which is outdated since 2008. It is still available in this wiki as older revision