Difference between revisions of "Enfuse reference manual"

From PanoTools.org Wiki
Jump to navigation Jump to search
(Updated link to manual.)
 
(30 intermediate revisions by 4 users not shown)
Line 1: Line 1:
= Enfuse =
+
==The [[Enfuse]] reference manual for the most recent version in different formats can be found on http://enblend.sourceforge.net (as can that for [[Enblend]])==
  
----
+
The wiki version of this manual was for [[enfuse]] version 3.2 which is outdated since 2008. It is still available in this wiki as [http://wiki.panotools.org/index.php?title=Enfuse_reference_manual&oldid=11141 older revision]
  
= 1. Overview =
 
  
Enfuse merges overlapping images using the Mertens-Kautz-Van Reeth exposure fusion algorithm.[[#FOOT1|(1)]] This is a quick way for example to blend differently exposed images into a nice output image, without producing intermediate high-dynamic range (HDR) images that are then tonemapped to a viewable image. This simplified process often works much better than tonemapping algorithms.
+
[[Category:Software:Platform:Linux]]
 
+
[[Category:Software:Platform:Windows]]
Enfuse can also be used to build extended depth-of-field (DOF) images by blending a focus stack.
+
[[Category:Software:Platform:Mac OS X]]
 
 
The idea is that pixels in the input images are weighted according to qualities such as, for example, proper exposure, good contrast, or high saturation. These weights determine how much a given pixel will contribute to the final image.
 
 
 
A Burt-Adelson multiresolution spline blender[[#FOOT2|(2)]] is used to combine the images according to the weights. The multiresolution blending ensures that transitions between regions where different images contribute are difficult to spot.
 
 
 
Enfuse uses up to four criteria to judge the quality of a pixel, which [[#tab 003aweighting 002dcriteria|tab:weighting-criteria]] briefly describes.
 
 
 
<div class="float">
 
 
 
; Exposure
 
: The exposure criteria favors pixels with luminance close to the middle of the range. These pixels are considered better exposed as those with high or low luminance levels.
 
; Saturation
 
: The saturation criteria favors highly-saturated pixels. (Note that saturation is only defined for color pixels.)
 
; Contrast
 
: The contrast criteria favors pixels inside a high-contrast neighborhood. Enfuse can use standard deviation or Laplacian magnitude or a blend of both as local contrast measure.
 
; Entropy
 
: The entropy criteria prefers pixels inside a high-entropy neighborhood. In addition, Enfuse allows the user to mitigate the problem of noisy images when using entropy weighting by setting a black threshold.
 
 
 
</div>
 
 
 
'''Table 1.1: Enfuse's four weighting criteria. '''
 
 
 
For the concept of pixel weighting and details on the different weighting functions see [[#SEC8|Weighting Functions]].
 
 
 
Adjust how much importance is given to each criterion by setting the weight parameters on the command line. For example, if you set '--wExposure=1.0' and '--wSaturation=0.5', Enfuse will favor well-exposed pixels over highly-saturated pixels when blending the source images. The effect of these parameters on the final result will not always be clear in advance. The quality of the result is subject to your artistic interpretation. Playing with the weights may or may not give a more pleasing result. The authors encourage you to experiment, perhaps using down-sized[[#FOOT3|(3)]] or cropped images for speed.
 
 
 
Enfuse expects but does not require each input image to have an alpha channel. By setting the alpha values of pixels to zero, users can manually remove those pixels from consideration when blending. If an input image lacks an alpha channel, Enfuse will issue a warning and continue assuming all pixels should contribute to the final output. Any alpha value other than zero is interpreted as 'this pixel should contribute to the final image'.
 
 
 
Find out more about Enfuse on its [http://enblend.sourceforge.net/ webpage].
 
 
 
----
 
 
 
= 2. Invocation =
 
 
 
<code>enfuse</code> [<var>OPTIONS</var>] <code>-o</code> <var>OUTPUT-FILE</var> <var>INPUT-FILES</var><small class="enddots">....</small>
 
 
 
Fuse the sequence of images <var>INPUT-FILES</var>' into <var>OUTPUT-FILE</var>.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|
 
| align="left" valign="top" | General options
 
|-
 
| align="left" valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|
 
| align="left" valign="top" | Memory control and others
 
|-
 
| align="left" valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|
 
| align="left" valign="top" | Image fusion control
 
|-
 
| align="left" valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|
 
| align="left" valign="top" | Contrast and entropy selection configuration
 
|-
 
| align="left" valign="top" |
 
[[#SEC7|2.5 Option Delimiters]]
 
|
 
| align="left" valign="top" | How to separate options' arguments
 
|}
 
 
 
----
 
 
 
== 2.1 Common Options ==
 
 
 
Common options control some overall features of Enfuse.
 
 
 
; <code>--compression=<var>COMPRESSION</var></code>
 
: Write a compressed output file.
 
Depending on the output file format Enfuse 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'
 
::: 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'
 
::: Use Lempel-Ziv-Welch (LZW) adaptive compression scheme. LZW compression is lossless.
 
;;; 'PACKBITS'
 
::: Use PackBits compression scheme. PackBits is a 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>
 
: Print information on the available options then exit.
 
; <code>-l <var>LEVELS</var></code>
 
: Use exactly this many <var>LEVELS</var> for pyramid blending.
 
This option allows to trades off quality of results for slightly shorter execution time and lower memory usage. The default is to use as many levels as possible given the size of the overlap region. Enfuse may still use a smaller number of levels if the geometry of the images demands it.
 
; <code>-o <var>OUTPUT-FILE</var></code>
 
: Required option that specifies the name of the <var>OUTPUT-FILE</var>.
 
; <code>-v</code>
 
; <code>--verbose</code>
 
: Increase the verbosity of progress reporting. Giving one or more '-v' options will make Enfuse more verbose.
 
; <code>-V</code>
 
; <code>--version</code>
 
: Output information on the Enblend version and some configuration details like extra features that have been compiled in.
 
; <code>-w</code>
 
: Blend around the ± 180° boundary. This is useful for full 360° panoramas.
 
Version 3.2-cvs of Enfuse, the one described here, does not blend neither zenith nor or nadir, so you may still see some seams in these areas.
 
 
 
----
 
 
 
== 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>
 
: Set the <var>BLOCKSIZE</var> in kilobytes (KB) of Enfuse's image cache.
 
This is the amount of data that Enfuse will move to and from the disk in one go. The default is 2048KB, which should be ok for most systems.
 
See [[#SEC25|Tuning Memory Usage]] for details.
 
; <code>-c</code>
 
: Use the CIECAM02 color appearance model for blending colors.
 
The input files should have embedded ICC profiles when this option is specified. If no ICC profile is present, Enfuse will assume that the image uses the sRGB color space. The difference between this option and Enfuse's default color blending algorithm is slight, and will be only noticeable when areas of different primary colors are blended together.
 
; <code>-d</code>
 
; <code>--depth=<var>DEPTH</var></code>
 
: 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..4294967295
 
For 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>
 
: Save alpha channel as 'associated'.
 
Gimp (before version 2.0) and CinePaint (see section [[#SEC45|Helpful Additional Programs]]) exhibit unusual behavior when loading images with unassociated alpha channels. Use option '-g' to work around this problem. With this flag Enfuse will create the output image with the associated alpha tag set, even though the image is really unassociated alpha.
 
; <code>-f <var>WIDTH</var>x<var>HEIGHT</var></code>
 
; <code>-f <var>WIDTH</var>x<var>HEIGHT</var>+x<var>X-OFFSET</var>+y<var>Y- OFFSET</var></code>
 
: 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.
 
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 [[#SEC45|Helpful Additional Programs]].
 
; <code>-m <var>CACHESIZE</var></code>
 
: Set the <var>CACHESIZE</var> in megabytes (MB) of Enfuse's image cache.
 
This is the amount of memory Enfuse 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.
 
See [[#SEC25|Tuning Memory Usage]] for details.
 
 
 
----
 
 
 
== 2.3 Fusion Options ==
 
 
 
Fusion options define the proportion to which each input image's pixel contributes to the output image.
 
 
 
; <code>--wContrast=<var>WEIGHT</var></code>
 
: Sets the relative <var>WEIGHT</var> of high-contrast pixels. Default: 0.0. Valid range:  0 ' WEIGHT ' 1 .  See [[#SEC14|Contrast Weighting]] and [[#SEC6|Option ContrastWindowSize]].
 
; <code>--wEntropy=<var>WEIGHT</var></code>
 
: Sets the relative <var>WEIGHT</var> of high entropy pixels. Default: 0.0. Valid range:  0 ' WEIGHT ' 1 .  See [[#SEC21|Entropy Weighting]] and [[#SEC6|Options EntropyWindowSize and EntropyCutoff]].
 
; <code>--wExposure=<var>WEIGHT</var></code>
 
: Sets the relative <var>WEIGHT</var> of the well-exposedness criterion. Increasing this weight relative to the others will make well exposed pixels contribute more to the final output. Default: 1.0. Valid range:  0 ' WEIGHT ' 1 .  See section [[#SEC12|Exposure Weighting]].
 
; <code>--wMu=<var>MEAN</var></code>
 
: Set the <var>MEAN</var> (this is, the center) of the Gaussian exposure weight curve. Default: 0.5. Valid range:  0 ' MEAN ' 1 .
 
Use this option to fine-tune exposure weighting (see section [[#SEC12|Exposure Weighting]]).
 
; <code>--wSaturation=<var>WEIGHT</var></code>
 
: Sets the relative <var>WEIGHT</var> of high-saturation pixels. Increasing this weight makes pixels with high saturation contribute more to the final output. Default: 0.2. Valid range:  0 ' WEIGHT ' 1 .  Saturation weighting is only defined for color images. See section [[#SEC13|Saturation Weighting]].
 
; <code>--wSigma=<var>STD-DEV</var></code>
 
: Standard deviation <var>STD-DEV</var> of the Gaussian exposure weight curve. Default: 0.2. Low numbers give less weight to pixels that are far from '--wMu' and vice versa. Valid range:  0 ' STD-DEV ' 1 .
 
Use this option to fine-tune exposure weighting (see section [[#SEC12|Exposure Weighting]]).
 
 
 
----
 
 
 
== 2.4 Expert Options ==
 
 
 
Expert options influence the workings of Enfuse that require the user to read the manual before applying them successfully.
 
 
 
; <code>--ContrastWindowSize=<var>SIZE</var></code>
 
: Set the window <var>SIZE</var> for local contrast analysis. The window will be a square of <var>SIZE</var>× <var>SIZE</var> pixels.
 
For contrast analysis <var>SIZE</var> values larger than 5 might result in a blurry composite image. Values of 3 and 5 have given good results on focus stacks.
 
Valid range:  SIZE ' 3 .
 
Given an even <var>SIZE</var> Enfuse will automatically use the next odd number.
 
See also [[#SEC5|Option 'wContrast]] and '--HardMask' below.
 
; <code>--EdgeScale=<var>EDGE-SCALE</var></code>
 
; <code>--EdgeScale=<var>EDGE-SCALE</var><nowiki>:</nowiki><var>LCE-SCALE</var><nowiki>:</nowiki><var>LCE- FACTOR</var></code>
 
: A non-zero value for <var>EDGE-SCALE</var> switches on the Laplacian-of-Gaussian (LoG) edge detection algorithm. <var>EDGE-SCALE</var> is the radius of the Gaussian used in the search for edges. Default: 0 pixels.
 
A positive <var>LCE-SCALE</var> turns on local contrast enhancement (LCE) before the LoG edge detection. <var>LCE-SCALE</var> is the radius of the Gaussian used in the enhancement step, <var>LCE-FACTOR</var> is the weight factor ('strength').    enhanced  <nowiki>=</nowiki>    ( 1 + LCE-FACTOR )  × original      -  LCE-FACTOR ×  GaussianSmooth &amp;ApplyFunction;  original LCE-SCALE
 
<var>LCE-SCALE</var> defaults to 0 pixels and <var>LCE-FACTOR</var> defaults to 0. Append '%' to <var>LCE-SCALE</var> to specify the radius as a percentage of <var>EDGE-SCALE</var>. Append '%' to <var>LCE- FACTOR</var> to specify the weight as a percentage.
 
; <code>--EntropyCutoff=<var>LOWER-CUTOFF</var></code>
 
; <code>--EntropyCutoff=<var>LOWER-CUTOFF</var><nowiki>:</nowiki><var>UPPER-CUTOFF</var></code>
 
: The first form defines the lower cutoff value below of which pixels are treated as pure black when calculating the local entropy. The second form also defines the upper cutoff value above of which pixels are treated as pure white.
 
For color images <var>LOWER-CUTOFF</var> and <var>UPPER-CUTOFF</var> are applied separately and independently to each channel.
 
Defaults: 0% for <var>LOWER-CUTOFF</var> and 100% for <var>UPPER-CUTOFF</var>, this is, all pixels' values are taken into account. Append a '%' to specify the cutoff relative to maximum pixel value in the source image (for example 255 or 65535). [[#fig 003aentropy 002dcutoff|fig:entropy-cutoff]] shows an example.
 
<div class="float">
 
[[Image:Entropy-cutoff.png|entropy-cutoff]]
 
</div>
 
'''Figure 2.1: Linear lightness <var>Y</var> in comparison with an entropy-cutoff function for <var>LOWER-CUTOFF</var> = 5% and <var>UPPER-CUTOFF</var> = 90% which are rather extreme values. '''
 
Note that a high <var>LOWER-CUTOFF</var> value lightens the resulting image, as dark (and presumably noisy) pixels are averaged with ''equal'' weights. With '--EntropyCutoff=0', the default, on the other hand, 'noise' might be interpreted as high entropy and the noisy pixels get a high weight, which in turn renders the resulting image darker. Analogously, a low <var>UPPER-CUTOFF</var> darkens the output image.
 
; <code>--EntropyWindowSize=<var>SIZE</var></code>
 
: Window <var>SIZE</var> for local entropy analysis. The window will be a square of <var>SIZE</var>× <var>SIZE</var> pixels.
 
In the entropy calculation <var>SIZE</var> values of 3 to 7 yield an acceptable compromise of the locality of the information and the significance of the local entropy value itself.
 
Valid range:  SIZE ' 3 .
 
Given an even <var>SIZE</var> Enfuse will automatically use the next odd number.
 
; <code>--GrayProjector=<var>PROJECTOR</var></code>
 
: Use gray projector <var>PROJECTOR</var> for conversion of RGB images to grayscale masks:    R G B  &amp;rightarrow; Y .  In version 3.2-cvs of Enfuse, the option is effective for exposure weighting contrast weighting. Default: 'average'.
 
Valid values for <var>PROJECTOR</var> are:
 
;; <code>average</code>
 
:: Average red, green, and blue channel with equal weights. This is the default and it often is a good projector for gamma = 1 data.  Y <nowiki>=</nowiki>  R + G + B  3
 
;; <code>l-star</code>
 
:: Use the L-channel of the L*a*b*-conversion of the image as its grayscale representation. This is a useful projector for gamma = 1 data. It reveals minute contrast variations even in the shadows and the highlights. This projector is computationally expensive.
 
See [http://en.wikipedia.org/wiki/Lab_color_space Wikipedia] for a detailed description of the Lab color space.
 
;; <code>lightness</code>
 
:: Compute the lightness of each RGB pixel as in an Hue-Saturation-Lightness (HSL) conversion of the image.  Y <nowiki>=</nowiki>    max &amp;ApplyFunction;  R G B  +  min &amp;ApplyFunction;  R G B    2
 
;; <code>value</code>
 
:: Take the Value-channel of the Hue-Saturation-Value (HSV) conversion of the image.  Y <nowiki>=</nowiki>  max &amp;ApplyFunction;  R G B
 
;; <code>luminance</code>
 
:: Use the weighted average of the RGB pixel's channels as defined by CIE ('Commission Internationale de l'Éclairage') and the JPEG standard.  Y <nowiki>=</nowiki>  0.30 &amp;InvisibleTimes; R  +  0.59 &amp;InvisibleTimes; G  +  0.11 &amp;InvisibleTimes; B
 
;; <code>channel-mixer:<var>RED-WEIGHT</var><nowiki>:</nowiki><var>GREEN-WEIGHT</var><nowiki>:</nowiki><var>BLUE- WEIGHT</var></code>
 
:: Weight the channels as given.  Y <nowiki>=</nowiki>  RED-WEIGHT × R  +  GREEN-WEIGHT × G  +  BLUE-WEIGHT × B
 
The weights are automatically normalized to one, so
 
{|
 
|
 
|
 
    --GrayProjector=channel-
 
 
mixer:0.25:0.5:0.25
 
    --GrayProjector=channel-mixer:1:2:1
 
    --GrayProjector=channel-mixer:25:50:25
 
|}
 
all define the same mixer configuration.
 
The three weights <var>RED-WEIGHT</var>, <var>GREEN-WEIGHT</var>, and <var>BLUE-WEIGHT</var> define the relative weight of the respective color channel. The sum of all weights is normalized to one.
 
; <code>--HardMask</code>
 
: Force hard blend masks on the finest scale. This is the opposite flag of '--SoftMask'.
 
This blending mode avoids averaging of fine details (only) at the expense of increasing the noise. However it considerably improvs the sharpness of focus stacks. Blending with hard masks has solely proven useful with focus stacks.
 
See also [[#SEC5|Option 'wContrast]] and '--ContrastWindowSize' above.
 
; <code>--MinCurvature=<var>CURVATURE</var></code>
 
: Define the minimum <var>CURVATURE</var> for the LoG edge detection. Default: 0. Append a '%' to specify the minimum curvature relative to maximum pixel value in the source image (for example 255 or 65535).
 
A positive value makes Enfuse use the local contrast data (controlled with '--ContrastWindowSize') for curvatures less than <var>CURVATURE</var> and LoG data for values above it.
 
A negative value truncates all curvatures less than -<var>CURVATURE</var> to zero. Values above <var>CURVATURE</var> are left unchanged. This effectively suppresses weak edges.
 
; <code>--SoftMask</code>
 
: Consider all masks when fusing. This is the default.
 
 
 
----
 
 
 
== 2.5 Option Delimiters ==
 
 
 
Enfuse allows the arguments supplied to the program's options to be separated by different separators. The online documentation and this manual, however, exclusively uses the colon '<nowiki>:</nowiki>' in every syntax definition and in all examples. Valid delimiters are the comma ',', the semicolon '<nowiki>;</nowiki>', the colon '<nowiki>:</nowiki>', and the slash '/'. All delimiters may be mixed within any option.
 
 
 
Examples:
 
 
 
; '--EdgeScale=0.667:6.67:3.5'
 
: Separate all arguments with colons.
 
; '--EdgeScale=0.667,6.67,3.5'
 
: Use commas.
 
; '--EdgeScale=0.667;6.67/3.5'
 
: Mix semicolon and slash in weird ways.
 
; '--EntropyCutoff=3%/99%'
 
: All delimiters also work in conjuction with percentages.
 
; '--GrayProjector=channel-mixer:3/6/1'
 
: Separate arguments with a colon and two slashes.
 
; '--GrayProjector=channel-mixer/30;60,10'
 
: Go wild and Enfuse will understand.
 
 
 
----
 
 
 
= 3. Weighting Functions =
 
 
 
As has been noted in the Overview (see section [[#SEC1|Overview]]), Enfuse supports four different types of weighting. The following subsections describe the concept of weighting and all weighting functions in detail.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC9|3.1 Weighting Pixels]]
 
|
 
| align="left" valign="top" | General concept of weighting pixels
 
|-
 
| align="left" valign="top" |
 
[[#SEC12|3.2 Exposure Weighting]]
 
|
 
| align="left" valign="top" | Weighting by exposure
 
|-
 
| align="left" valign="top" |
 
[[#SEC13|3.3 Saturation Weighting]]
 
|
 
| align="left" valign="top" | Weighting by saturation
 
|-
 
| align="left" valign="top" |
 
[[#SEC14|3.4 Contrast Weighting]]
 
|
 
| align="left" valign="top" | Weighting by local contrast
 
|-
 
| align="left" valign="top" |
 
[[#SEC21|3.5 Entropy Weighting]]
 
|
 
| align="left" valign="top" | Weighting by local entropy
 
|}
 
 
 
----
 
 
 
== 3.1 Weighting Pixels ==
 
 
 
Image fusion maps each pixel ''P(i, x, y)'' of every input image ''i'' to a single pixel ''Q(x, y)'' in the output image:    P  i x y  &amp;rightarrow;  Q  x y  ,  where ''x'' runs from 1 to the common width of the images, ''y'' from 1 to the common height, and ''i'' from 1 to the number of input images ''n''.
 
 
 
Enfuse allows for weighting the contribution of each ''P(i, x, y)'' to the final ''Q(x, y)''<nowiki>: </nowiki>  w &amp;ApplyFunction;  (  P  1 x y  )  ×  P  1 x y  + ... + w &amp;ApplyFunction;  (  P  n x y  )  ×  P  n x y    &amp;rightarrow;  Q  i x y  ,  (W)  where
 
 
 
* each ''w'' is non-negative to yield a physical intensity and
 
* the sum of all ''w'' is one to leave the total intensity unchanged.
 
 
 
The pixel weights ''w'' themselves are weighted sums with the same constraints
 
 
 
    w &amp;ApplyFunction;  ( P )    <nowiki>=</nowiki>    w exp  ×  f exp  &amp;ApplyFunction;  ( P )  +        w sat  ×  f sat  &amp;ApplyFunction;  ( P )  +        w cont  ×  f cont  &amp;ApplyFunction;  P  r cont    +        w ent  ×  f ent  &amp;ApplyFunction;  P  r ent
 
 
 
where we have abbreviated  P  i x y  to  P  for simplicity. The user defines the constants  w exp  ,  w sat  ,  w cont  , and  w ent  with the options `<tt>--wExposure</tt>', `<tt>--wSaturation</tt>', `<tt>--wContrast</tt>', and `<tt>--wEntropy</tt>' respectively. The functions  f exp  ,  f sat  ,  f cont  , and  f ent  along with the window sizes  r cont  and  r ent  are explained in the next sections.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC10|3.1.1 Weighted Average]]
 
|
 
| align="left" valign="top" | Enfuse's default weighting algorithm
 
|-
 
| align="left" valign="top" |
 
[[#SEC11|3.1.2 Disabling Averaging: Option '--HardMask']]
 
|
 
| align="left" valign="top" | 'Super Trouper' weighting for focus stacks
 
|}
 
 
 
----
 
 
 
=== 3.1.1 Weighted Average ===
 
 
 
By default, Enfuse uses a weighted average, where ''each'' pixel contributes as much as its weight demands. Of course the weights can be extreme, favouring only a few pixels or even only one pixel in the input stack. Extremes are untypical, however.
 
 
 
Equal weights are another extreme that turns (W) into an arithmetic average. this is why we sometimes speak of the 'averaging property' of this weighting algorithm, like smoothing out noise.
 
 
 
----
 
 
 
=== 3.1.2 Disabling Averaging: Option '-- HardMask' ===
 
 
 
The weighted average computation as described above has proven to be widely successful with the exception of one special case: focus stacking (see section [[#SEC34|Focus Stacks ' Depth-of-Field Increase]]), where the averaging noticeably softens the final image.
 
 
 
Use '--HardMask' to switch Enfuse into a different ('Super Trouper') weighting mode, where the pixel with the highest weight wins, this is, gets weight one, and all other pixels get the weight of zero ([http://en.wikipedia.org/wiki/The_Winner_Takes_It_All 'The Winner Takes It All.']). With '--HardMask' Equation (W) becomes    P  i x y  &amp;rightarrow;  Q  x y  ,  &amp;ThickSpace;where&amp;ThickSpace;  w &amp;ApplyFunction;  ( P  i x y  )  ' w &amp;ApplyFunction;  ( P  j x y  )  &amp;ThickSpace;for all&amp;ThickSpace;  1 ' j ' n  .
 
 
 
Note that this 'averaging' scheme lacks the nice noise-reduction property of the weighted average (W), because only a single input pixel contributes to the output.
 
 
 
----
 
 
 
== 3.2 Exposure Weighting ==
 
 
 
Exposure weighting prefers pixels with a luminance ''Y'' close to the center of the normalized, real-valued luminance interval ''[0, 1]''.
 
 
 
RGB-pixels get converted to luminance using the grayscale projector given by '--GrayProjector', which defaults to <code>average</code>. Grayscale pixels are identified with luminance.
 
 
 
In the normalized luminance interval 0.0 represents pure black and 1.0 represents pure white independently of the data type of the input image. This is, for a JPEG image the luminance 255 maps to 1.0 in the normalized interval and for a 32bit TIFF picture the highest luminance value 4294967295 also maps to 1.0. The middle if the luminance interval, 0.5, is where a neutral gray tone ends up with every camera that had no exposure correction dialed in, for example the image of a gray- or white-card.
 
 
 
The exposure weighting algorithm only looks at a single pixel at a time; the pixel's neighborhood is not taken into account.
 
 
 
The weighting function is the Gaussian    w exp  &amp;ApplyFunction;  ( Y )  <nowiki>=</nowiki>  exp &amp;ApplyFunction;  ( -  1 2  &amp;InvisibleTimes;  (  Y - Mu  Sigma  )  2  )    whose center ''Mu'' and width ''Sigma'' are controlled by the command line options '--wMu' and '-- wSigma' respectively. ''Mu'' defaults to 0.5, the middle of the luminance interval. ''Sigma'' defaults to 0.2. [[#fig 003agaussian|fig:gaussian]] shows a Gaussian with these parameters.
 
 
 
<div class="float">
 
 
 
[[Image:gaussian.png|gaussian]]
 
 
 
</div>
 
 
 
'''Figure 3.1: Gaussian function with Enfuse's default parameters <var>Mu</var> = 0.5 and <var>Sigma</var> = 0.2. '''
 
 
 
The options '--wMu' and '--wSigma' are for fine-tuning the final result without changing the set of input images. Option '--wMu' sets the point <var>Mu</var> of optimum exposure. The default is <var>Mu</var> = 0.5, exactly the middle between pure black (0.0) and pure white (1.0). Increasing <var>Mu</var> makes Enfuse prefer lighter pixels, rendering the final image lighter and vice versa. Option '--wSigma' defines the range <var>Sigma</var> of acceptable exposures. The default is <var>Sigma</var> = 0.2, which means at <var>Mu</var> ± 0.2 the weight will be approximately 0.88. Small values of <var>Sigma</var> penalize exposures deviant from <var>Mu</var> more and vice versa.
 
 
 
'''Summary of influential options'''
 
 
 
; '--wExposure'
 
: [[#SEC5|Fusion Options]]
 
; '--wMu'
 
: [[#SEC5|Fusion Options]]
 
; '--wSigma'
 
: [[#SEC5|Fusion Options]]
 
; '--GrayProjector'
 
: [[#SEC6|Expert Options]]
 
 
 
----
 
 
 
== 3.3 Saturation Weighting ==
 
 
 
Saturation weighting prefers pixels with a high saturation.
 
 
 
Enfuse computes the saturation of a pixel according to the following algorithm.
 
 
 
{|
 
|
 
|
 
<var>max</var> := maximum(<var>R</var>,
 
 
<var>G</var>, <var>B</var>)
 
<var>min</var> := minimum(<var>R</var>, <var>G</var>, <var>B</var>)
 
'''if''' <var>max</var> = <var>min</var> '''then'''
 
    <var>saturation</var> := 0
 
'''else'''
 
    <var>sum</var> := <var>max</var> + <var>min</var>
 
    <var>difference</var> := <var>max</var> - <var>min</var>
 
    '''if''' <var>sum</var> &lt;= 1 '''then'''
 
        <var>saturation</var> := <var>difference</var> / <var>sum</var>
 
    '''else'''
 
        <var>saturation</var> := <var>difference</var> / (2 - <var>sum</var>)
 
    '''end if'''
 
'''end if'''
 
|}
 
 
 
Obviously, saturation weighting can only be defined for RGB images, not for grayscale ones! If you need something similar check out [[#SEC21|Entropy Weighting]]<nowiki>; entropy weighting works for both </nowiki>RGB and grayscale pictures.
 
 
 
The saturation weighting algorithm only looks at a single pixel at a time; the pixel's neighborhood is not taken into account.
 
 
 
'''Summary of influential options'''
 
 
 
; '--wSaturation'
 
: [[#SEC5|Fusion Options]]
 
 
 
----
 
 
 
== 3.4 Contrast Weighting ==
 
 
 
Contrast weighting favors pixels inside a high contrast neighborhood. The notion of 'high contrast' is defined either by two different criteria or by a blend of both:
 
 
 
* The standard deviation (SDev) of all the pixels in the local analysis window is large. See section [[#SEC15|Standard Deviation]].
 
* The Laplacian-of-Gaussian (LoG) has a large magnitude. See section [[#SEC18|Laplacian of Gaussian]].
 
* If the LoG magnitude is below a given threshold, use SDev data, otherwise stick with LoG. See section [[#SEC19|Blend Standard Deviation and Laplacian of Gaussian]].
 
 
 
Enfuse converts every RGB image to grayscale before it determines its contrast. Option '--GrayProjector' (see section [[#SEC6|Expert Options]]) controls the projector function. Depending on the subject one of several grayscale projectors may yield the best black-and-white contrast for image fusion.
 
 
 
In the following sections we describe each algorithm in detail.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC15|3.4.1 Standard Deviation]]
 
|
 
| align="left" valign="top" |
 
Standard deviation (SDev)
 
|-
 
| align="left" valign="top" |
 
[[#SEC18|3.4.2 Laplacian of Gaussian]]
 
|
 
| align="left" valign="top" |
 
LoG, a second derivative method
 
|-
 
| align="left" valign="top" |
 
[[#SEC19|3.4.3 Blend Standard Deviation and Laplacian of Gaussian]]
 
|
 
| align="left" valign="top" |
 
Mix and match SDev and LoG
 
|-
 
| align="left" valign="top" |
 
[[#SEC20|3.4.4 Scaling and Choice of Mode]]
 
|
 
| align="left" valign="top" | How parameters do not scale; neither does mode
 
|}
 
 
 
----
 
 
 
=== 3.4.1 Standard Deviation ===
 
 
 
The pixel under consideration C sits exactly in the center of a square, the so-called ''local analysis window''. It always has an uneven edge length. The user sets the size with option '--ContrastWindowSize'. [[#fig 003alocal 002danalysis 002dwindow|fig:local-analysis-window]] shows two windows with different sizes.
 
 
 
<div class="float">
 
 
 
[[Image:Local-analysis-window.png|local-analysis-window]]
 
 
 
</div>
 
 
 
'''Figure 3.2: Examples of local analysis windows for the sizes 3 and 5. 'C' marks the center where the pixel gets the weight. 'N' are neighboring pixels, which all contribute equally to the weight. '''
 
 
 
During the analysis Enfuse scans the local analysis window across all rows and all columns[[#FOOT4|(4)]] of each of the input images to compute the contrast weight of every pixel.
 
 
 
'''Summary of influential options'''
 
 
 
; '--wContrast'
 
: [[#SEC5|Fusion Options]]
 
; '--HardMask'
 
: [[#SEC5|Fusion Options]]
 
; '--ContrastWindowSize'
 
: [[#SEC6|Expert Options]]
 
; '--GrayProjector'
 
: [[#SEC6|Expert Options]]
 
 
 
----
 
 
 
==== 3.4.1.1 Statistical Moments ====
 
 
 
We start with the ''probability function'' ''w'' of the random variable ''X''<nowiki>: </nowiki>  w <nowiki>:</nowiki>  x &amp;rightarrow; p &amp;ApplyFunction; (  {  ' <nowiki>:</nowiki>  X &amp;ApplyFunction;  ( ' )  <nowiki>=</nowiki> x  }  )  .  It associates a probability ''p'' with each of the ''n'' different possible outcomes  '  of the random variable ''X''.  Based on ''w'', we define the ''expectation value'' or 'First Moment' of the random variable ''X''<nowiki>: </nowiki>  Ex &amp;ApplyFunction; X  <nowiki>:=</nowiki>  '  i <nowiki>=</nowiki> 1  n  x i  × w &amp;ApplyFunction;  (  x i  )  .    Using the definition of the expectation value, we define the ''variance'', or 'Second Moment' as  Var &amp;ApplyFunction; X  <nowiki>:=</nowiki>  Ex &amp;ApplyFunction;  (  ( X -  Ex &amp;ApplyFunction; X  )  2  )    and the ''standard deviation'' as    ' &amp;ApplyFunction; X  <nowiki>:=</nowiki>  Var &amp;ApplyFunction; X  .  Obviously, the variance of ''X'' is the expectation value of the squared deviation from the expectation value of ''X'' itself. Note that the variance's dimension is ''X'''s dimension squared; the standard deviation rectifies the dimension to make it comparable with ''X'' itself again.
 
 
 
----
 
 
 
==== 3.4.1.2 Estimators ====
 
 
 
In Enfuse, we assume that ''X'' follows a uniform probability function ''w(x)'' = const. This is, all pixel values in the local analysis window are considered to be equally probable. Thus, the expectation value and the variance can be estimated from the pixel values like this    Ex &amp;ApplyFunction; X  <nowiki>:=</nowiki>  1 n  &amp;InvisibleTimes;  '  i <nowiki>=</nowiki> 1  n  x i    .  In other words: the expectation value is the arithmetic mean of the lightness of all pixels in the local analysis window. Analogously, the variance becomes    Var &amp;ApplyFunction; X  <nowiki>:=</nowiki>  1  n - 1  &amp;InvisibleTimes;  Ex &amp;ApplyFunction;  (  ( X -  Ex &amp;ApplyFunction; X )  2  )  .
 
 
 
----
 
 
 
=== 3.4.2 Laplacian of Gaussian ===
 
 
 
The ''Laplacian of Gaussian'' (LoG) is an operator to detect edges in an image. Sometimes the LoG-operator is also called Marr-Hildreth operator. A Laplacian-of-Gaussian operator, [http://kogs-www.informatik.uni- hamburg.de/~koethe/vigra/doc/vigra/group__CommonConvolutionFilters.html <code>vigra::laplacianOf Gaussian</code>] is part of the package [http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/ Vigra] that Enfuse is built upon and is used for edge detection if option '--EdgeScale' is non-zero and '--MinCurvature' equal to or less than zero.
 
 
 
Let the Gaussian function be    g  x y  <nowiki>=</nowiki>  1  2 &amp;InvisibleTimes; ' &amp;InvisibleTimes;  ' 2    &amp;InvisibleTimes; exp &amp;ApplyFunction;  ( -    x 2  +  y 2    2 &amp;InvisibleTimes;  ' 2    )    The parameter  '  , the argument of option '--EdgeScale', is the length scale on which edges are detected by ''g(x, y)''. We apply the Laplacian operator in Cartesian coordinates    '  '  ' &amp;CenterDot; '  <nowiki>=</nowiki>    &amp;PartialD; 2  &amp;PartialD;  x 2    +  &amp;PartialD; 2  &amp;PartialD;  y 2      to ''g(x, y)'', to arrive at a continous representation of the two-dimensional filter kernel    k  x y  <nowiki>=</nowiki>    ' 2  - 1  ' &amp;InvisibleTimes;  ' 4    &amp;InvisibleTimes; exp &amp;ApplyFunction;  ( -  ' 2  )  ,  where we have used the dimensionless distance  '  from the origin    ' 2  <nowiki>=</nowiki>    x 2  +  y 2    2 &amp;InvisibleTimes;  ' 2    .  Enfuse uses a discrete approximation of ''k'' in the convolution with the image. The operator is radially symmetric with respect to the origin, which is why we can easily plot it in [[#fig 003alaplacian 002dof 002dgaussian|fig:laplacian-of-gaussian]], setting  R <nowiki>=</nowiki>    x 2  +  y 2    .
 
 
 
<div class="float">
 
 
 
[[Image:laplacian-of-gaussian.png|laplacian-of-gaussian]]
 
 
 
</div>
 
 
 
'''Figure 3.3: Laplacian-of-Gaussian function for  '  = 0.5. '''
 
 
 
See also [http://homepages.inf.ed.ac.uk/rbf/HIPR2/log.htm HIPR2<nowiki>: Laplacian of Gaussian</nowiki>].
 
 
 
Sometimes the LoG is plagued by noise in the input images. After all it is a numerical approximation of the second derivative and deriving always 'roughens' a function. The (normalized) mask files relentlessly disclose such problems. Use option '--MinCurvature' with a ''negative'' argument <var>CURVATURE</var> to suppress all edges with a curvature below -<var>CURVATURE</var> (which is a positive value). Check the effects with the mask files and particularly the '<tt>mask####_wta.tif</tt>' files if using option '--HardMask'.
 
 
 
To indicate the <var>CURVATURE</var> in relative terms, which is particularly comprehensible for humans, append a percent sign ('%'). Try minimum curvatures starting from -0.5% to -3%.
 
 
 
'''Summary of influential options'''
 
 
 
; '--wContrast'
 
: [[#SEC5|Fusion Options]]
 
; '--HardMask'
 
: [[#SEC5|Fusion Options]]
 
; '--EdgeScale'
 
: [[#SEC6|Expert Options]]
 
; '--MinCurvature'
 
: [[#SEC6|Expert Options]]
 
 
 
----
 
 
 
=== 3.4.3 Blend Standard Deviation and Laplacian of Gaussian ===
 
 
 
Enfuse can team the standard deviation computation and Laplacian of Gaussian to deliver the best of both methods. Use a ''positive'' argument <var>CURVATURE</var> with option '--MinCurvature' to combine both algorithms. In this mode of operation Enfuse computes the SDev-weight and the LoG-weight, then uses the LoG to decide whether to go with that value or prefer the SDev data. If the LoG is greater than <var>CURVATURE</var> Enfuse uses the weight delivered by the LoG, otherwise the SDev-weight is rescaled such that its maximum is equal to <var>CURVATURE</var> and the scaled SDev is used as weight.
 
 
 
This technique merges the two edge detection methods where the are best. The LoG excels with clear edges and cannot be fooled by strong but smooth gradients. However, it is bad at detecting faint edges and it is susceptible to noise. The SDev on the othe hand shines with even the most marginal edges and resists noise quite well. Its weakness is that is is easily deceived by strong and smooth gradients. Tuning <var>CURVATURE</var> the user can pick the best threshold for a given set of images.
 
 
 
'''Summary of influential options'''
 
 
 
; '--wContrast'
 
: [[#SEC5|Fusion Options]]
 
; '--HardMask'
 
: [[#SEC5|Fusion Options]]
 
; '--ContrastWindowSize'
 
: [[#SEC6|Expert Options]]
 
; '--GrayProjector'
 
: [[#SEC6|Expert Options]]
 
; '--EdgeScale'
 
: [[#SEC6|Expert Options]]
 
; '--MinCurvature'
 
: [[#SEC6|Expert Options]]
 
 
 
----
 
 
 
=== 3.4.4 Scaling and Choice of Mode ===
 
 
 
Experience has shown that neither the parameters <var>EDGESCALE</var> and <var>CURVATURE</var> nor the mode of operation (SDev-only, LoG-only, or a blend of both) scales to different image sizes. In practice this means that if you start with a set of reduced size images, say 2808× 1872 pixels, carefully optimize <var>EDGESCALE</var>, <var>CURVATURE</var> and so on, moreover find LoG-only the best mode and then switch to the original resolution of 5616× 3744 pixels, multiplying (or dividing) the parameters by four and sticking to LoG-only might ''not'' result in the best fused image. For best quality perform the parameter optimization and the search for the most appropriate mode at the final resolution.
 
 
 
----
 
 
 
== 3.5 Entropy Weighting ==
 
 
 
Entropy weighting prefers pixels inside a high entropy neighborhood.
 
 
 
Let ''S'' be an ''n''-ary source. Watching the output of ''S'' an observer on average gains the information    H a  &amp;ApplyFunction;  ( n )  <nowiki>:=</nowiki>  &amp;Sum;  x &amp;Element; S    p &amp;ApplyFunction;  ( x )  ×  log a  &amp;ApplyFunction;  ( 1 /  p &amp;ApplyFunction;  ( x )  )        per emitted message, where we assume the knowledge of the probability function ''p(S)''. The expectation value ''H_a(n)'' is called ''entropy'' of the source ''S''. Entropy measures our uncertainty if we are to guess which message gets chosen by the source in the future. The unit of the entropy depends on the choice of the constant ''a &gt; 1''. Obviously    H b  &amp;ApplyFunction;  ( n )  <nowiki>=</nowiki>    H a  &amp;ApplyFunction;  ( n )  /  log a  &amp;ApplyFunction;  ( b )      holds for all ''b &gt; 1''. We use ''a = 2'' for entropy weighting and set the entropy of the 'impossible message' to zero according to    lim  p &amp;rightarrow; 0    p ×  log a  &amp;ApplyFunction;  ( 1 / p )    <nowiki>=</nowiki> 0 .  [[#fig 003aentropy|fig:entropy]] shows an entropy function.
 
 
 
<div class="float">
 
 
 
[[Image:entropy.png|entropy]]
 
 
 
</div>
 
 
 
'''Figure 3.4: Entropy function H for an experiment with exactly two outcomes. '''
 
 
 
For more on (information) entropy visit [http://en.wikipedia.org/wiki/Information_entropy Wikipedia].
 
 
 
Enfuse computes a pixel's entropy by considering the pixel itself and its surrounding pixels quite similar to [[#SEC14|Contrast Weighting]]. The size of the window is set by '--EntropyWindowSize'. Choosing the right size is difficult, because there is a serious tradeoff between the locality of the data and the size of the sample used to compute ''H''. A large window results in a large sample size and therefore in a reliable entropy, but considering pixels far away from the center degrades ''H'' into a non-local measure. For small windows the opposite holds true.
 
 
 
Another difficulty arises from the use of entropy as a weighting function in dark parts of an image, this is, in areas where the signal-to-noise ratio is low. Without any precautions high noise is taken to be high entropy, which might not be desired. Use option '--EntropyCutoff' to control the black level when computing the entropy.
 
 
 
On the other extreme side of lightness, very light parts of an image, the sensor might already have overflown without the signal reaching 1.0 in the normalized luminance interval. For these pixels the entropy is zero and Enfuse can be told of the threshold by properly setting the second argument of '--EntropyCutoff'.
 
 
 
'''Summary of influential options'''
 
 
 
; '--wEntropy'
 
: [[#SEC5|Fusion Options]]
 
; '--EntropyWindowSize'
 
: [[#SEC6|Expert Options]]
 
; '--EntropyCutoff'
 
: [[#SEC6|Expert Options]]
 
 
 
----
 
 
 
= 4. 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.
 
 
 
----
 
 
 
== 4.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.
 
 
 
Use ImageMagick's <code>identify</code> or, for TIFF files, <code>tiffinfo</code> to inquire quickly whether a file contains a mask. [[#SEC45|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.
 
 
 
----
 
 
 
== 4.2 Weight Mask Files ==
 
 
 
...
 
 
 
----
 
 
 
= 5. Tuning Memory Usage =
 
 
 
The default configuration of Enfuse assumes a system with 3'4GB of RAM.
 
 
 
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">
 
 
 
{| 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 5.1: Suggested cache-size settings '''
 
 
 
----
 
 
 
= 6. Applications of Enfuse =
 
 
 
The section describes some of the novel possibilities that Enfuse offers the photographer. In contrast to the previous chapters it centers around the image effects.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC27|6.1 What Makes Images Fusable? ]]
 
|
 
| align="left" valign="top" | What makes images fusable?
 
|-
 
| align="left" valign="top" |
 
[[#SEC28|6.2 Repetition ' Noise Reduction]]
 
|
 
| align="left" valign="top" | Just taking the same shot multiple times
 
|-
 
| align="left" valign="top" |
 
[[#SEC29|6.3 Exposure Series ' Dynamic Range Increase]]
 
|
 
| align="left" valign="top" | Varying the exposure time
 
|-
 
| align="left" valign="top" |
 
[[#SEC32|6.4 Flash Exposure Series ' Directed Lighting]]
 
|
 
| align="left" valign="top" | Varying the flash output
 
|-
 
| align="left" valign="top" |
 
[[#SEC33|6.5 Polarization Series ' Saturation Enhancement]]
 
|
 
| align="left" valign="top" | Changing the polarizer angle
 
|-
 
| align="left" valign="top" |
 
[[#SEC34|6.6 Focus Stacks ' Depth-of-Field Increase]]
 
|
 
| align="left" valign="top" | Stacking images with different in-focus distance
 
|}
 
 
 
----
 
 
 
== 6.1 What Makes Images Fusable? ==
 
 
 
Images should align well to be suitable for fusion. However, there is no hard mathematical rule what 'well' means. The alignment requirements for 16MPixel images to yield a sharp 4"× 6" print at 300dpi ('dpi' means dots per inch) or even for web presentation are relatively low, whereas the alignment of 8MPixel images for a 12"× 18" print ought to be tight.
 
 
 
If the input images need to be aligned, Hugin (see section [[#SEC45|Helpful Additional Programs]]) is the tool of choice. It produces images exactly in the format that Enfuse expects.
 
 
 
Sometimes images naturally align extremely well so that no re-alignment is required. An image series with preprogrammed exposure steps taken in rapid succession where the camera is mounted on a heavy tripod and a humongous ball head, mirror lockup and a cable release are used comes into mind.
 
 
 
When in doubt what will work, try it, and judge for yourself.
 
 
 
Useful ideas for a good alignment:
 
 
 
* Fix all camera parameters that are not explicitely varied.
 
*; ''Aperture''
 
*: Engage full manual (&lt;M&gt;) or aperture-priority (&lt;A&gt;) mode.
 
*; ''Auto-focus''
 
*: Disable 'Auto Focus'. Be aware that the auto-focus function could be linked to shutter-release button position 'half pressed' or to the shutter release in insidious ways.
 
*; ''Closed eyepiece''
 
*: (This applies only to single lens reflex cameras.) Close the eyepiece when using a cable release to suppress variations in stray light.
 
*; ''Exposure time/Shutter speed''
 
*: Use the shortest possible exposure time or, in other words, use the fastest shutter speed to avoid blur caused by camera shake or motion blur.
 
*; ''Flash power''
 
*: Explicitely control the flash power of ''all'' flashes. This is sometimes called 'flash exposure lock'.
 
*; ''Sensitivity''
 
*: Disable 'Auto ISO'.
 
*; ''White balance''
 
*: Disable 'Auto White Balance'. Instead use the most suitable fixed white balance or take the white balance off a white card. When in doubt use the setting 'Daylight' or equivalent.
 
* Steady the camera by any means.
 
** Apply your best camera bracing technique combined with controlled breathing.
 
** Prefer a monopod or better rigid tripod with a heavy head.
 
** (This applies to cameras with a moving mirror only.) Engage 'mirror lockup'.
 
** Consider automatic bracketing when applicable.
 
** Activate camera- or lens-based image stabilization if you are sure that it improves the image quality in your particular case, otherwise disengage the feature.
 
For some lens-based image stabilization systems it is known that they 'lock' into different positions every time they are activated. Moreover, some stabilization systems decrease the image quality when the lens is mounted on a tripod.
 
* Fire in rapid succession.
 
 
 
----
 
 
 
== 6.2 Repetition ' Noise Reduction ==
 
 
 
'''Main Purpose: ''' Reduce noise
 
 
 
With the default settings Enfuse computes a weighted average of the input pixels. For a series of images, repeated with identical settings this results in a reduction of (photon shot) noise. In other words, the dynamic range increases slightly, because the higher signal-to-noise ratio makes darker shades usable. Furthermore, smooth or glossy surfaces get a 'cleaner' look and edges become visually sharper. The nitty-gritty reportage look that sometimes stems from a high sensitivity setting disappears.
 
 
 
Averaged images and therefore low-noise images are the base for a multitude of techniques like for example differences. The most prominent method in this class is dark-frame subtraction.
 
 
 
The defaults set '--wExposure=1.0' and '-- wSaturation=0.2'. Eliminating the saturation component with '--wSaturation=0.0' can be worth an extra run.
 
 
 
----
 
 
 
== 6.3 Exposure Series ' Dynamic Range Increase ==
 
 
 
'''Main Purpose: ''' Increase manageable dynamic range
 
 
 
An exposure series is a set of images taken with identical parameters except for the exposure time. Some cameras even provide special functions to automate recording exposure series. See the instruction manual of your model for details.
 
 
 
Enfuse's defaults, '--wExposure=1.0' and '-- wSaturation=0.2' are well suited for fusion of ''color'' images. Remember that saturation weighting only works for RGB data. Option '--wSaturation' helps controlling burnt-out highlights as these are heavily desaturated. If no image suffers from troublesome highlights, the relative saturation weight can be reduced and even be set to zero. For black and white images '--wEntropy' can be an alternative to '-- wSaturation' because it suppresses overexposed pixels as these contain little information. However, saturation weighting is not limited to grayscale data. It has been successfully applied to RGB images, too. Note that saturation weighting considers ''each'' color channel of an RGB image separately and chooses the channel with the minimum entropy as representative for the whole pixel.
 
 
 
Enfuse offers the photographer tremendous flexibility on fusing differenly exposed images. Whether you combine only two pictures or a series of 21, Enfuse imposes no limits on you. Accordingly, the photographic effects achieved range from subtle to surreal like the late 1980s 'Max Headroom' TV-Series to really unreal. Like some time ago in the chemical days of photography a new developer opened unseen possibilities for artists, exposure fusion extends a photographer's expressive space in the digital age. Whether the results look good or bad, whether the images are dull or exciting is entirely up the artist.
 
 
 
In the next sections we give assistance to starters and rectify several misconceptions about Enfuse.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC30|6.3.1 Tips For Beginners]]
 
|
 
| align="left" valign="top" | Some hints for beginners
 
|-
 
| align="left" valign="top" |
 
[[#SEC31|6.3.2 Common Misconceptions]]
 
|
 
| align="left" valign="top" | What works despite the hype
 
|}
 
 
 
----
 
 
 
=== 6.3.1 Tips For Beginners ===
 
 
 
Here are some tips to get you in business quickly.
 
 
 
; ''Include the best single exposure.''
 
: Include the exposure you would have taken if you did not use Enfuse in your series. It gives you a solid starting point. Think of the other images as augmenting this best single exposure to bring out the light and dark features you would like to see.
 
; ''Begin with as little images as possible.''
 
: Pre-visualizing the results of Enfuse is difficult. The more images enter the fusion process and the wider their EV-spacing is, the more challenging thinking of the output image becomes. Therefore, start off with as little images as possible.
 
You can take a larger series of images and only use part of it.
 
; ''Start with a moderate EV-spacing.''
 
: As has been pointed out in the previous item, a wide EV-spacing makes pre-visualization harder. So set out with a spacing of 2/3EV to 1+1/3EV.
 
 
 
----
 
 
 
=== 6.3.2 Common Misconceptions ===
 
 
 
Here are some surprisingly common misconceptions about exposure series.
 
 
 
; ''A single image cannot be the source of an exposure series.''
 
: Raw-files in particular lend themselves to be converted multiple times and the results being fused together. The technique is simpler, faster, and usually even looks better than [http://luminous-landscape.com/tutorials/digital-blending.shtml digital blending] (as opposed to using a graduated neutral density filter) or [http://www.gimpguru.org/Tutorials/BlendingExposures/ blending exposures] in an image manipulation program. Moreover, perfect alignment comes free of charge!
 
; ''An exposure series must feature symmetric exposures.''
 
: Twice wrong! Neither do the exposures have to be 'symmetric' like {0EV, -2/3EV, +2/3EV}, nor does the number of exposures have to be odd. Series like {-1-1/3EV, -1/3EV, +1/3EV} or {-1EV, 1EV} might be just right. By the way, the order in which the images were taken does not matter either.
 
; ''An exposure series must cover the whole dynamic range of the scene.''
 
: Unless you do not want to cover the whole range, you do not have to. Some HDR programs require the user to take a light probe,[[#FOOT5|(5)]] whereas Enfuse offers the user complete freedom of exposure.
 
; ''All exposure values must be different.''
 
: You can repeat any exposure as often as you like. That way you combine and exposure series with parts of [[#SEC28|Repetition ' Noise Reduction]], emphasizing the multiply occuring exposures and reducing noise.
 
 
 
----
 
 
 
== 6.4 Flash Exposure Series ' Directed Lighting ==
 
 
 
'''Main Purpose: ''' ???
 
 
 
...
 
 
 
----
 
 
 
== 6.5 Polarization Series ' Saturation Enhancement ==
 
 
 
'''Main Purpose: ''' Reflection suppression, saturation enhancement
 
 
 
In the current implementation of Enfuse it is not possible in general to fuse a polarization series. Naïvely abusing '--wSaturation' will not work.
 
 
 
----
 
 
 
== 6.6 Focus Stacks ' Depth-of-Field Increase ==
 
 
 
'''Main Purpose: ''' Synthetic Depth-of-Field Increase
 
 
 
A ''focus stack'' is a series of images where the distance of the focal plane from the sensor varies. Sloppyly speaking, the images were focussed at different distances. Fusing such a stack increases the depth-of-field (DOF) beyond the physical limits of diffraction.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks? ]]
 
|
 
| align="left" valign="top" | Why take the hassle?
 
|-
 
| align="left" valign="top" |
 
[[#SEC36|6.6.2 Preparing Focus Stacks]]
 
|
 
| align="left" valign="top" | How to get suitable input images
 
|-
 
| align="left" valign="top" |
 
[[#SEC37|6.6.3 Contrast Based Fusing]]
 
|
 
| align="left" valign="top" | Fundamental command line options
 
|-
 
| align="left" valign="top" |
 
[[#SEC38|6.6.4 Basic Focus Stacking]]
 
|
 
| align="left" valign="top" | Simple, standard deviation method
 
|-
 
| align="left" valign="top" |
 
[[#SEC39|6.6.5 Advanced Focus Stacking]]
 
|
 
| align="left" valign="top" | Advanced, Laplacian technique
 
|-
 
| align="left" valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|
 
| align="left" valign="top" | Tips for focus stacking experts
 
|}
 
 
 
----
 
 
 
=== 6.6.1 Why create focus stacks? ===
 
 
 
Given
 
 
 
* a fixed sensor or film size,
 
* a lens' particular focal length, and
 
* a notion about 'sharpness', technically speaking the size of the circle-of-confusion (CoC)
 
 
 
the photographer controls the depth-of-field with the aperture. Smaller apertures ' this is larger aperture numbers ' increase the DOF and vice versa. However, smaller apertures increase diffraction which in turn renders the image unsharp. So, there is an optimum aperture where the photographer gets maximum DOF. Sadly, for some purposes like macro shots it is not enough. One way out is to combine the sharp parts of images focused at different distances, thereby artifically increasing the total DOF. This is exactly what Enfuse can do.
 
 
 
All lenses have a so called 'sweet spot' aperture, where their resolution is best. Taking pictures at this aperture the photographer squeezes the maximum quality out of the lens. But: the 'sweet spot' aperture often is only one or two stops away from wide open. Wouldn't it be great to be able combine these best-possible images to form one high-quality, sufficient-DOF image? Welcome to Enfuse's contrast selection abilities.
 
 
 
----
 
 
 
=== 6.6.2 Preparing Focus Stacks ===
 
 
 
We are going to combine images with limited DOF to increase their in-focus parts. The whole process is about image sharpness. Therefore, the input images must align very well, not just well, but very well. For optimum results the maximum controlpoint distance in Hugin (see section [[#SEC45|Helpful Additional Programs]]) should not exceed 0.3'0.5pixels to ensure perfect blending.
 
 
 
As in all image fusion operations it is preferable to use 16bit linear (gamma = 1) images throughout, but 8bit gamma encoded images will do. Naturally, high SNR input data always is welcome.
 
 
 
----
 
 
 
=== 6.6.3 Contrast Based Fusing ===
 
 
 
A bare bones call to Enfuse for focus stacking could look like this.
 
 
 
{|
 
|
 
|
 
enfuse \
 
    --wExposure=0 \
 
    --wSaturation=0 \
 
    --wContrast=1 \
 
    --HardMask \
 
    ' \
 
    -o output.tif \
 
    input-&lt;0000-9999&gt;.tif
 
|}
 
 
 
Here is what the option cause.
 
 
 
; '--wExposure=0'
 
: Switch '''off''' exposure based pixel selection. The default weight is 1.
 
; '--wSaturation=0'
 
: Switch '''off''' saturation based pixel selection. The default weight is 0.2.
 
; '--wContrast=1'
 
: Switch '''on''' pixel selection based on contrast.
 
; '--HardMask'
 
: Select the best pixel from the image stack and ignore all others. Without this option Enfuse uses all pixels in the stack and weights them according to their respective quality, which in our case would be contrast. Without '--HardMask' the result will always look a bit soft. See section [[#SEC14|Contrast Weighting]].
 
 
 
If you want to see some entertaining progress messages ' contrast weighting takes a while ', also pass the '-v' option for a verbose progress report.
 
 
 
----
 
 
 
=== 6.6.4 Basic Focus Stacking ===
 
 
 
For a large class of image stacks Enfuse's default algorithm, as selected in [[#SEC37|Contrast Based Fusing]], to determine the sharpness produces nice results. The algorithm uses a moving square window, the so called contrast window. It computes the standard deviation of the pixels inside of the window. The program then selects the window's center pixel of the image in the stack where the standard deviation is largest, this is the local contrast reaches the maximum.
 
 
 
However, the algorithm fails to deliver good masks for images which exhibit high contrast edges on the scale of the contrast window size. The typical artifacts that show up are
 
 
 
* faint dark seams on the light side of the high contrast edges and
 
* extremely soft, slighly lighter seams on the dark side of the high contrast edges,
 
 
 
where the distance of the seams from the middle of the edge is comparable to the contrast window size.
 
 
 
If your results do not show any of this artifacts, stick with the basic algorithm. Advanced focus stacking as described in the next sections delivers superior results in case of artifacts, though requires manually tuning several parameters.
 
 
 
----
 
 
 
=== 6.6.5 Advanced Focus Stacking ===
 
 
 
If your fused image shows any of the defects described in the previous section, you can try a more difficult to use algorithm that effectively works around the seam artifacts. It is described in the next section.
 
 
 
{| class="menu"
 
| align="left" valign="top" |
 
[[#SEC40|6.6.5.1 A Detailed Look at the Problem]]
 
|
 
| align="left" valign="top" | What is the problem Kenneth?
 
|-
 
| align="left" valign="top" |
 
[[#SEC41|6.6.5.2 Laplacian Edge Detection]]
 
|
 
| align="left" valign="top" | Using a Laplacian-of- Gaussian to detect edges
 
|-
 
| align="left" valign="top" |
 
[[#SEC42|6.6.5.3 Local Contrast Enhancement]]
 
|
 
| align="left" valign="top" | Boosting local contrast before weighting
 
|-
 
| align="left" valign="top" |
 
[[#SEC43|6.6.5.4 Suppressing Noise or Recognizing Faint Edges]]
 
|
 
| align="left" valign="top" | The best of both worlds
 
|}
 
 
 
----
 
 
 
==== 6.6.5.1 A Detailed Look at the Problem ====
 
 
 
Let us use an example to illustrate the problem of relating the sharpness with the local contrast variations. Say we use a 5× 5 contrast window. Moreover, let <code>sharp_edge</code> and <code>smooth_edge</code> be two specific configurations:
 
 
 
{|
 
|
 
|
 
sharp_edge =  #(    0,    0,  200,    0,    0;
 
                    0,  225,    0,    0,    0;
 
                    0,  255,    0,    0,    0;
 
                  215,    0,    0,    0,    0;
 
                  200,    0,    0,    0,    0)
 
|}
 
 
 
{|
 
|
 
|
 
smooth_edge = #(    0,  62,  125,  187,  250;
 
                    1,  63,  126,  188,  251;
 
                    2,  65,  127,  190,  252;
 
                    3,  66,  128,  191,  253;
 
                    5,  67,  130,  192,  255)
 
|}
 
 
 
Imagess [[#fig 003asharp 002dedge|fig:sharp-edge]] and [[#fig 003asmooth 002dedge|fig:smooth-edge]] show plots of the matrices <code>sharp_edge</code> and <code>smooth_edge</code>.
 
 
 
<div class="float">
 
 
 
[[Image:sharp-edge.png|sharp-edge]]
 
 
 
</div>
 
 
 
'''Figure 6.1: 3D plot augmented by contour plot of the matrix <code>sharp_edge</code>. '''
 
 
 
<div class="float">
 
 
 
[[Image:smooth-edge.png|smooth-edge]]
 
 
 
</div>
 
 
 
'''Figure 6.2: 3D plot augmented by contour plot of the matrix <code>smooth_edge</code>. '''
 
 
 
Our intuition lets us 'see' an extremely sharp edge in the first matrix, whereas the second one describes an extraordinarily smooth diagonal intensity ramp. Which one will be selected? Well, <code>sharp_edge</code> has a standard deviation of 88.07 and <code>smooth_edge</code> has 88.41. Thus, <code>smooth_edge</code> wins, contradicting our intuition and even worse our intention!
 
 
 
Sadly, configurations like <code>smooth_edge</code> occur more often with high-quality, good [http://www.luminous-landscape.com/essays/bokeh.shtml bokeh] lenses. In fact they are the very manifestation of 'good bokeh'. Therefore, Laplacian edge detection plays an important role when working with high-quality lenses.
 
 
 
----
 
 
 
==== 6.6.5.2 Laplacian Edge Detection ====
 
 
 
Enfuse provides a Laplacian-based algorithm that can help in situations where weighting based on the standard deviation fails. It is activated with a positive value for <var>SCALE</var> in <code>--EdgeScale</code><nowiki>=</nowiki><var>SCALE</var>. The Laplacian will detect two-dimensional ''curvature'' on the scale of <var>SCALE</var>. Here and in the following we simply speak of 'curvature' where we mean 'magnitude of curvature'. This is, we shall not distinguish between convex and concave edges. Enfuse always use the magnitude of curvature for weighting.
 
 
 
Typically, <var>SCALE</var> ranges between 0.1pixels and 0.5pixels, where 0.3pixels is a good starting point. To find the best value for <var>SCALE</var> though, usually some experimentation will be necessary. Use the '--debug' option to get all '<tt>mask####.tif</tt>' and '<tt>mask####_wta.tif</tt>' files (see section [[#SEC22|Understanding Masks]]) and check how different scales affect the artifacts.
 
 
 
----
 
 
 
==== 6.6.5.3 Local Contrast Enhancement ====
 
 
 
Sometimes Enfuse misses smoother edges with '--EdgeScale' and a little local contrast enhancement (LCE) helps. Set <code>--EdgeScale</code><nowiki>=</nowiki><var>SCALE</var><nowiki>:</nowiki><var>LCE-SCALE</var><nowiki>:</nowiki><var>LCE-FACTOR</var>. where <var>LCE-SCALE</var> and <var>LCE-FACTOR</var> work like the [http://www.cambridgeincolour.com/tutorials/unsharp-mask.htm unsharp mask] filters in various image manipulation programs. Start with <var>LCE-SCALE</var> ten times the value of <var>SCALE</var> and a <var>LCE-FACTOR</var> of 2'5.
 
 
 
<var>LCE-SCALE</var> can be specified as a percentage of <var>SCALE</var>. <var>LCE-FACTOR</var> also can be specified as a percentage. Examples:
 
 
 
{|
 
|
 
|
 
--EdgeScale=0.3:3.0:3
 
--EdgeScale=0.3:1000%:3.0
 
--EdgeScale=0.3:3:300%
 
--EdgeScale=0.3:1000%:300%
 
|}
 
 
 
By default LCE is turned off.
 
 
 
----
 
 
 
==== 6.6.5.4 Suppressing Noise or Recognizing Faint Edges ====
 
 
 
The Laplacian-based algorithm much better resists the seam problem than the local-contrast algorithm, but it has two shortcomings:
 
 
 
# The Laplacian is very susceptible to noise and
 
# it fails to recognize faint edges.
 
 
 
The '--MinCurvature' option helps to mitigate both flaws.
 
 
 
The argument to <code>--MinCurvature</code><nowiki>=</nowiki><var>CURVATURE</var> either is an absolute lightness value, for example 0..255 for 8bit data and 0..65535 for 16bit data, or, when given with a '%'-sign it is a relative lightness value ranging from 0% to 100%.
 
 
 
To suppress unreal edges or counter excessive noise use the '--MinCurvature' option with a ''negative'' curvature measure <var>CURVATURE</var>. This forces all curvatures less than -<var>CURVATURE</var> to zero.
 
 
 
A ''positive'' curvature measure <var>CURVATURE</var> makes Enfuse merge the LoG data with the local-contrast data. Every curvature larger or equal to <var>CURVATURE</var> is left unchanged and every curvature less than <var>CURVATURE</var> gets replaced by the rescaled local-contrast data such that the largest local contrast is just below <var>CURVATURE</var>. This combines the best parts of both techniques and ensures a precise edge detection over the whole range of edge curvatures.
 
 
 
'''Summary'''
 
 
 
; --EdgeScale=0.3
 
: Use LoG to detect edges on a scale of 0.3 pixels. Apply the default grayscale projector: <code>average</code>.
 
; --EdgeScale=0.3 --GrayProjector=l-star
 
: Use LoG to detect edges on a scale of 0.3 pixels. Apply the L*-grayscale projector.
 
; --EdgeScale=0.3:3:300%
 
: Use LoG to detect edges on a scale of 0.3 pixels, pre-sharpen the input images by 300% on a scale of 3 pixels. Apply the default grayscale projector: <code>average</code>.
 
; --EdgeScale=0.3 --MinCurvature=-0.5%
 
: Use LoG to detect edges on a scale of 0.3 pixels. Apply the default grayscale projector: <code>average</code> and throw away all edges with a curvature of less than 0.5%.
 
; --EdgeScale=0.3 --MinCurvature=0.5% --ContrastWindowSize=7
 
: Use LoG to detect edges on a scale of 0.3 pixels. Apply the default grayscale projector: <code>average</code> and throw away all edges with a curvature of less than 0.5% and replace the LoG data between 0% and 0.5% with SDev data. Usa a window of 7× 7 pixel window to compute the SDev.
 
 
 
----
 
 
 
=== 6.6.6 Tips For Focus Stacking Experts ===
 
 
 
We have collected some advice of which even focus stacking adepts can benefit.
 
 
 
* Ensure that the sensor is clean.
 
Aligning focus stacks requires varying the viewing angle, which corresponds to a changing focal length. Hence, the same pixel on the sensor gets mapped onto different positions in the final image. Dirt spots will occur not only once but as many times as there are images in the stack ' something unfunny to correct in postprocessing.
 
Along the same lines the photographer may want to consider to prepare dark frames before and possibly also after the shoot of the focus stack to subtract hot pixels before fusion.
 
* Prefer a low-sensitivity setting on the camera to get low-noise images.
 
Fusing with '--HardMask' does not average and thus does not suppress any noise in the input images.
 
* If the transition of in-focus to out-of-focus areas is too abrupt, record the images with closest and farthest focusing distances twice: first with the intended working aperture and a second time with a small aperture (large aperture number).
 
The small aperture will give the fused image a more natural in-focus to out-of-focus transition and the working-aperture shots supply the detail in the in-focus regions.
 
 
 
----
 
 
 
= 7. Helpful Additional Programs =
 
 
 
Several libraries and programs have proven helpful when working with Enfuse and Enblend.
 
 
 
; '''Raw Image Conversion'''
 
: :* [http://www.cybercom.net/~dcoffin/dcraw/ DCRaw] is a universal raw-converter.
 
:* [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'''
 
: :* [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.
 
:* [http://hugin.sourceforge.net/ Hugin] is a GUI that aligns and stitches images.
 
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.
 
:* [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'''
 
: :* [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.
 
:* The [http://wiki.panotools.org/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.
 
:* [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'''
 
: :* [http://www.openexr.com/ OpenEXR] offers libraries and some programs to work with the EXR HDR format.
 
:* [http://pfstools.sourceforge.net/ PFSTools] create, modify, and tonemap high-dynamic range images.
 
; '''Libraries'''
 
: :* [http://www.ijg.org/ LibJPEG] is a library for handling the JPEG (JFIF) image format.
 
:* [http://www.libpng.org/pub/png/libpng.html LibPNG] is a library that handles the Portable Network Graphics (PNG) image format.
 
:* [http://www.remotesensing.org/libtiff/ LibTIFF] offers a library and utility programs to manipulate the ubiquitous Tagged Image File Format, TIFF.
 
The nifty <code>tiffinfo</code> command quickly inquires the properties of TIFF files.
 
; '''Meta-Data Handling'''
 
: :* [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.
 
:* [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.
 
 
 
----
 
 
 
= A. Authors =
 
 
 
* Andrew Mihal ([mailto:acmihal@users.sourceforge.net acmihal@users.sourceforge.net]) has written Enfuse.
 
* Thanks to Simon Andriot and Pablo Joubert for suggesting the Mertens-Kautz-Van Reeth technique and the name 'Enfuse'.
 
* The contrast criteria was added by Pablo d'Angelo ([mailto:dangelo@users.sourceforge.net dangelo@users.sourceforge.net]).
 
* Dr. Christoph L. Spiel added the gray projectors, the LoG-based edge detection, an O(n)-algorithm for the calculation of local contrast, and entropy weighting.
 
 
 
----
 
 
 
= B. GNU Free Documentation License =
 
 
 
Version 1.2, November 2002
 
 
 
{|
 
|
 
|
 
Copyright © 2000, 2001, 2002 Free
 
 
Software Foundation, Inc.
 
51 Franklin St, 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 purpose of this License is to make a manual, textbook, or other functional and useful document ''free'' in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.
 
This License is a kind of 'copyleft', which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software.
 
We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference.
 
# APPLICABILITY AND DEFINITIONS
 
This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The 'Document', below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as 'you'. You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law.
 
A 'Modified Version' of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language.
 
A 'Secondary Section' is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.
 
The 'Invariant Sections' are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none.
 
The 'Cover Texts' are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.
 
A 'Transparent' copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not 'Transparent' is called 'Opaque'.
 
Examples of suitable formats for Transparent copies include plain <small>ASCII</small> without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only.
 
The 'Title Page' means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, 'Title Page' means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text.
 
A section 'Entitled XYZ' means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as 'Acknowledgements', 'Dedications', 'Endorsements', or 'History'.) To 'Preserve the Title' of such a section when you modify the Document means that it remains a section 'Entitled XYZ' according to this definition.
 
The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License.
 
# VERBATIM COPYING
 
You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3.
 
You may also lend copies, under the same conditions stated above, and you may publicly display copies.
 
# COPYING IN QUANTITY
 
If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.
 
If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.
 
If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.
 
It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document.
 
# MODIFICATIONS
 
You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:
 
## Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission.
 
## List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement.
 
## State on the Title page the name of the publisher of the Modified Version, as the publisher.
 
## Preserve all the copyright notices of the Document.
 
## Add an appropriate copyright notice for your modifications adjacent to the other copyright notices.
 
## Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below.
 
## Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document's license notice.
 
## Include an unaltered copy of this License.
 
## Preserve the section Entitled 'History', Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled 'History' in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence.
 
## Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the 'History' section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission.
 
## For any section Entitled 'Acknowledgements' or 'Dedications', Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein.
 
## Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles.
 
## Delete any section Entitled 'Endorsements'. Such a section may not be included in the Modified Version.
 
## Do not retitle any existing section to be Entitled 'Endorsements' or to conflict in title with any Invariant Section.
 
## Preserve any Warranty Disclaimers.
 
If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's license notice. These titles must be distinct from any other section titles.
 
You may add a section Entitled 'Endorsements', provided it contains nothing but endorsements of your Modified Version by various parties'for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard.
 
You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one.
 
The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version.
 
# COMBINING DOCUMENTS
 
You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers.
 
The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work.
 
In the combination, you must combine any sections Entitled 'History' in the various original documents, forming one section Entitled 'History'; likewise combine any sections Entitled 'Acknowledgements', and any sections Entitled 'Dedications'. You must delete all sections Entitled 'Endorsements.'
 
# COLLECTIONS OF DOCUMENTS
 
You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects.
 
You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document.
 
# AGGREGATION WITH INDEPENDENT WORKS
 
A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an 'aggregate' if the copyright resulting from the compilation is not used to limit the legal rights of the compilation's users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document.
 
If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate.
 
# TRANSLATION
 
Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail.
 
If a section in the Document is Entitled 'Acknowledgements', 'Dedications', or 'History', the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title.
 
# TERMINATION
 
You may not copy, modify, sublicense, or distribute the Document except as expressly provided for under this License. Any other attempt to copy, modify, sublicense or distribute the Document 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.
 
# FUTURE REVISIONS OF THIS LICENSE
 
The Free Software Foundation may publish new, revised versions of the GNU Free Documentation 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. See http://www.gnu.org/copyleft/.
 
Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License 'or any later version' applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation.
 
 
 
----
 
 
 
= List of Tables =
 
 
 
; [[#tab 003aweighting 002dcriteria|Table 1.1]]
 
: Weighting criteria
 
; [[#tab 003acache 002dsize 002dsettings|Table 5.1]]
 
: Suggested cache-size settings
 
 
 
----
 
 
 
= List of Figures =
 
 
 
; [[#fig 003aentropy 002dcutoff|Figure 2.1]]
 
: Entropy cutoff function
 
; [[#fig 003agaussian|Figure 3.1]]
 
: Gaussian function
 
; [[#fig 003alocal 002danalysis 002dwindow|Figure 3.2]]
 
: Local analysis window
 
; [[#fig 003alaplacian 002dof 002dgaussian|Figure 3.3]]
 
: Laplacian-of- Gaussian
 
; [[#fig 003aentropy|Figure 3.4]]
 
: Entropy function
 
; [[#fig 003asharp 002dedge|Figure 6.1]]
 
: Sharp edge
 
; [[#fig 003asmooth 002dedge|Figure 6.2]]
 
: Smooth edge
 
 
 
----
 
 
 
= Program Index =
 
 
 
{|
 
! valign="top" | Jump to:
 
|
 
[[#SEC50 0|'''A''']]  [[#SEC50 1|'''C''']]  [[#SEC50 2|'''D''']]  [[#SEC50 3|'''E''']]  [[#SEC50 4|'''F''']]  [[#SEC50 5|'''G''']]  [[#SEC50 6|'''H''']]  [[#SEC50 7|'''I''']]  [[#SEC50 8|'''L''']]  [[#SEC50 9|'''N''']]  [[#SEC50 10|'''O''']]  [[#SEC50 11|'''P''']]  [[#SEC50 12|'''T''']]  [[#SEC50 13|'''U''']]
 
|}
 
 
 
{| class="index-pg"
 
|
 
! align="left" | Index Entry
 
! align="left" | Section
 
|-
 
| colspan="3" |
 
----
 
|-
 
! A
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX101|<code>ALE</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX106|<code><code>align_image_stack</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX102|<code>Anti-Lamenessing Engine</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! C
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX112|<code><code>cinepaint</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX40|<code>CinePaint</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX111|<code>CinePaint</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! D
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX96|<code>DCRaw</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX97|<code><code>dcraw</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! E
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX123|<code>EXIFTool</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX124|<code><code>exiftool</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! F
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX107|<code><code>fulla</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! G
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX39|<code>Gimp</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX114|<code><code>gimp</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX113|<code>Gimp</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX116|<code>GraphicsMagick</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! H
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX104|<code><code>hugin</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX44|<code>Hugin</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX78|<code>Hugin</code>]]
 
| valign="top" |
 
[[#SEC27|6.1 What Makes Images Fusable?]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX103|<code>Hugin</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! I
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX75|<code><code>identify</code></code>]]
 
| valign="top" |
 
[[#SEC23|4.1 Masks in Input Files]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX115|<code>ImageMagick</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! L
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX119|<code>LibJPEG</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX120|<code>LibPNG</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX121|<code>LibTIFF</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX125|<code>LittleCMS, TiffICC</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! N
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX43|<code><code>nona</code></code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX105|<code><code>nona</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! O
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX117|<code>OpenEXR</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! P
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX108|<code>PanoTools</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX118|<code>PFSTools</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX110|<code><code>PTmender</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX109|<code><code>PTOptimizer</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! T
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX126|<code><code>tifficc</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX76|<code><code>tiffinfo</code></code>]]
 
| valign="top" |
 
[[#SEC23|4.1 Masks in Input Files]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX122|<code><code>tiffinfo</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! U
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX98|<code>UFRaw</code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX99|<code><code>ufraw</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX100|<code><code>ufraw-batch</code></code>]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
| colspan="3" |
 
----
 
|}
 
 
 
{|
 
! valign="top" | Jump to:
 
|
 
[[#SEC50 0|'''A''']]  [[#SEC50 1|'''C''']]  [[#SEC50 2|'''D''']]  [[#SEC50 3|'''E''']]  [[#SEC50 4|'''F''']]  [[#SEC50 5|'''G''']]  [[#SEC50 6|'''H''']]  [[#SEC50 7|'''I''']]  [[#SEC50 8|'''L''']]  [[#SEC50 9|'''N''']]  [[#SEC50 10|'''O''']]  [[#SEC50 11|'''P''']]  [[#SEC50 12|'''T''']]  [[#SEC50 13|'''U''']]
 
|}
 
 
 
----
 
 
 
= Option Index =
 
 
 
{|
 
! valign="top" | Jump to:
 
|
 
[[#SEC51 0|'''-''']]  <br />[[#SEC51 1|'''S''']]
 
|}
 
 
 
{| class="index-op"
 
|
 
! align="left" | Index Entry
 
! align="left" | Section
 
|-
 
| colspan="3" |
 
----
 
|-
 
! -
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX29|<code>-b</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC25|<code>-b</code>]]
 
| valign="top" |
 
[[#SEC25|5. Tuning Memory Usage]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX31|<code>-c</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX8|<code>--compression</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX53|<code>--ContrastWindowSize</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX34|<code>-d</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX35|<code>--depth</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX54|<code>--EdgeScale</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX55|<code>--EntropyCutoff</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX56|<code>--EntropyWindowSize</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX41|<code>-f</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX37|<code>-g</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX57|<code>--GrayProjector</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX17|<code>-h</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX67|<code>--HardMask</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC11|<code>--HardMask</code>]]
 
| valign="top" |
 
[[#SEC11|3.1.2 Disabling Averaging: Option '-- HardMask']]
 
|-
 
|
 
| valign="top" |
 
[[#IDX93|<code>--HardMask</code>]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX18|<code>--help</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX19|<code>-l</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX45|<code>-m</code>]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC25|<code>-m</code>]]
 
| valign="top" |
 
[[#SEC25|5. Tuning Memory Usage]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX68|<code>--MinCurvature</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX22|<code>-o</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX25|<code>-V</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX23|<code>-v</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX24|<code>--verbose</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX26|<code>--version</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX27|<code>-w</code>]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX47|<code>--wContrast</code>]]
 
| valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX48|<code>--wEntropy</code>]]
 
| valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX49|<code>--wExposure</code>]]
 
| valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX50|<code>--wMu</code>]]
 
| valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX51|<code>--wSaturation</code>]]
 
| valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX52|<code>--wSigma</code>]]
 
| valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! S
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX69|<code>SoftMask</code>]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
| colspan="3" |
 
----
 
|}
 
 
 
{|
 
! valign="top" | Jump to:
 
|
 
[[#SEC51 0|'''-''']]  <br />[[#SEC51 1|'''S''']]
 
|}
 
 
 
----
 
 
 
= General Index =
 
 
 
{|
 
! valign="top" | Jump to:
 
|
 
[[#SEC52 0|'''3''']]  <br />[[#SEC52 1|'''A''']]  [[#SEC52 2|'''B''']]  [[#SEC52 3|'''C''']]  [[#SEC52 4|'''D''']]  [[#SEC52 5|'''E''']]  [[#SEC52 6|'''F''']]  [[#SEC52 7|'''G''']]  [[#SEC52 8|'''H''']]  [[#SEC52 9|'''I''']]  [[#SEC52 10|'''L''']]  [[#SEC52 11|'''M''']]  [[#SEC52 12|'''N''']]  [[#SEC52 13|'''O''']]  [[#SEC52 14|'''P''']]  [[#SEC52 15|'''S''']]  [[#SEC52 16|'''T''']]  [[#SEC52 17|'''U''']]  [[#SEC52 18|'''V''']]  [[#SEC52 19|'''W''']]
 
|}
 
 
 
{| class="index-cp"
 
|
 
! align="left" | Index Entry
 
! align="left" | Section
 
|-
 
| colspan="3" |
 
----
 
|-
 
! 3
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX28|360° panorama]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! A
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC39|advanced focus stacking]]
 
| valign="top" |
 
[[#SEC39|6.6.5 Advanced Focus Stacking]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC43|advanced focus stacking, recognizing faint edges]]
 
| valign="top" |
 
[[#SEC43|6.6.5.4 Suppressing Noise or Recognizing Faint Edges]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC43|advanced focus stacking, suppressing noise]]
 
| valign="top" |
 
[[#SEC43|6.6.5.4 Suppressing Noise or Recognizing Faint Edges]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX6|alpha channel]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX38|alpha channels, unassociated]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX87|aperture, sweet spot]]
 
| valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks?]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC26|applications of enfuse]]
 
| valign="top" |
 
[[#SEC26|6. Applications of Enfuse]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC46|authors, list of]]
 
| valign="top" |
 
[[#SEC46|A. Authors]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC10|average, weighted]]
 
| valign="top" |
 
[[#SEC10|3.1.1 Weighted Average]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC11|averaging, disabling]]
 
| valign="top" |
 
[[#SEC11|3.1.2 Disabling Averaging: Option '-- HardMask']]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! B
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC38|basic focus stacking]]
 
| valign="top" |
 
[[#SEC38|6.6.4 Basic Focus Stacking]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC22|binary mask]]
 
| valign="top" |
 
[[#SEC22|4. Understanding Masks]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX36|bits per channel]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX80|blending exposures]]
 
| valign="top" |
 
[[#SEC31|6.3.2 Common Misconceptions]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX1|Burt-Adelson multiresolution spline]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! C
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX7|channel, alpha]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX33|CIECAM02]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX82|circle-of-confusion]]
 
| valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks?]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX83|CoC]]
 
| valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks?]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX32|color appearance model]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX10|compression]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX12|compression, deflate]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX14|compression, LZW]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX16|compression, packbits]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC37|contrased-based fusing]]
 
| valign="top" |
 
[[#SEC37|6.6.3 Contrast Based Fusing]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC42|contrast enhancement, local]]
 
| valign="top" |
 
[[#SEC42|6.6.5.3 Local Contrast Enhancement]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC19|contrast weighting using a blend of methods]]
 
| valign="top" |
 
[[#SEC19|3.4.3 Blend Standard Deviation and Laplacian of Gaussian]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC18|contrast weighting using laplacian- of'gaussian]]
 
| valign="top" |
 
[[#SEC18|3.4.2 Laplacian of Gaussian]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC15|contrast weighting using standard deviation]]
 
| valign="top" |
 
[[#SEC15|3.4.1 Standard Deviation]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX62|conversion, L*a*b*]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! D
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX89|dark frame]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX11|deflate compression]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC7|delimiters, option]]
 
| valign="top" |
 
[[#SEC7|2.5 Option Delimiters]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX84|depth-of-field]]
 
| valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks?]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC34|depth-of-focus increase]]
 
| valign="top" |
 
[[#SEC34|6.6 Focus Stacks ' Depth-of-Field Increase]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX79|digital blending]]
 
| valign="top" |
 
[[#SEC31|6.3.2 Common Misconceptions]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC11|disabling averaging]]
 
| valign="top" |
 
[[#SEC11|3.1.2 Disabling Averaging: Option '-- HardMask']]
 
|-
 
|
 
| valign="top" |
 
[[#IDX85|DOF]]
 
| valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks?]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC29|dynamic range increase]]
 
| valign="top" |
 
[[#SEC29|6.3 Exposure Series ' Dynamic Range Increase]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC32|dynamic range increase]]
 
| valign="top" |
 
[[#SEC32|6.4 Flash Exposure Series ' Directed Lighting]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! E
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC41|edge detection, laplacian]]
 
| valign="top" |
 
[[#SEC41|6.6.5.2 Laplacian Edge Detection]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX77|<code>ENBLEND_CACHE_IMAGES</code> (preprocessor symbol)]]
 
| valign="top" |
 
[[#SEC25|5. Tuning Memory Usage]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX74|entropy]]
 
| valign="top" |
 
[[#SEC21|3.5 Entropy Weighting]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX73|entropy, definition]]
 
| valign="top" |
 
[[#SEC21|3.5 Entropy Weighting]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC17|estimators]]
 
| valign="top" |
 
[[#SEC17|3.4.1.2 Estimators]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX70|expectation value]]
 
| valign="top" |
 
[[#SEC16|3.4.1.1 Statistical Moments]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC44|expert focus stacking ttops]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC29|exposure series]]
 
| valign="top" |
 
[[#SEC29|6.3 Exposure Series ' Dynamic Range Increase]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC31|exposure series, common misconceptions]]
 
| valign="top" |
 
[[#SEC31|6.3.2 Common Misconceptions]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC30|exposure series, tips for beginners]]
 
| valign="top" |
 
[[#SEC30|6.3.1 Tips For Beginners]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! F
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC47|FDL]]
 
| valign="top" |
 
[[#SEC47|B. GNU Free Documentation License]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC32|flash exposure series]]
 
| valign="top" |
 
[[#SEC32|6.4 Flash Exposure Series ' Directed Lighting]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC39|focus stacking, advanced]]
 
| valign="top" |
 
[[#SEC39|6.6.5 Advanced Focus Stacking]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC38|focus stacking, basic]]
 
| valign="top" |
 
[[#SEC38|6.6.4 Basic Focus Stacking]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC34|focus stacks]]
 
| valign="top" |
 
[[#SEC34|6.6 Focus Stacks ' Depth-of-Field Increase]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC37|focus stacks, fusing]]
 
| valign="top" |
 
[[#SEC37|6.6.3 Contrast Based Fusing]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC36|focus stacks, preparation]]
 
| valign="top" |
 
[[#SEC36|6.6.2 Preparing Focus Stacks]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC35|focus stacks, why create them]]
 
| valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks?]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC37|fusing, contrased-based]]
 
| valign="top" |
 
[[#SEC37|6.6.3 Contrast Based Fusing]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! G
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC52|general index]]
 
| valign="top" |
 
[[#SEC52|General Index]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC47|GNU Free Documentation License]]
 
| valign="top" |
 
[[#SEC47|B. GNU Free Documentation License]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX58|gray projector]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX59|gray projector, 'average']]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX66|gray projector, 'channel- mixer']]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX60|gray projector, 'l- star']]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX63|gray projector, 'lightness']]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX65|gray projector, 'luminance']]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX64|gray projector, 'value']]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! H
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC45|helpful programs]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX91|hot pixels]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! I
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX30|image cache, block size]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX46|image cache, cache size]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC27|images, fusable]]
 
| valign="top" |
 
[[#SEC27|6.1 What Makes Images Fusable?]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC52|index, general]]
 
| valign="top" |
 
[[#SEC52|General Index]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC51|index, option]]
 
| valign="top" |
 
[[#SEC51|Option Index]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC50|index, program]]
 
| valign="top" |
 
[[#SEC50|Program Index]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC23|input masks]]
 
| valign="top" |
 
[[#SEC23|4.1 Masks in Input Files]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC2|invocation]]
 
| valign="top" |
 
[[#SEC2|2. Invocation]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! L
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX61|L*a*b* conversion]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC41|laplacian edge detection]]
 
| valign="top" |
 
[[#SEC41|6.6.5.2 Laplacian Edge Detection]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC18|Laplacian of Gaussian]]
 
| valign="top" |
 
[[#SEC18|3.4.2 Laplacian of Gaussian]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX21|levels, pyramid]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX81|light probe]]
 
| valign="top" |
 
[[#SEC31|6.3.2 Common Misconceptions]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC15|local analysis window]]
 
| valign="top" |
 
[[#SEC15|3.4.1 Standard Deviation]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC42|local contrast enhancement]]
 
| valign="top" |
 
[[#SEC42|6.6.5.3 Local Contrast Enhancement]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC40|local contrast problem]]
 
| valign="top" |
 
[[#SEC40|6.6.5.1 A Detailed Look at the Problem]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC18|LoG]]
 
| valign="top" |
 
[[#SEC18|3.4.2 Laplacian of Gaussian]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX13|LZW compression]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! M
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC22|mask, binary]]
 
| valign="top" |
 
[[#SEC22|4. Understanding Masks]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC22|mask, weight]]
 
| valign="top" |
 
[[#SEC22|4. Understanding Masks]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC23|masks, input files]]
 
| valign="top" |
 
[[#SEC23|4.1 Masks in Input Files]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC22|masks, undestanding]]
 
| valign="top" |
 
[[#SEC22|4. Understanding Masks]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC24|masks, weight]]
 
| valign="top" |
 
[[#SEC24|4.2 Weight Mask Files]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC25|memory, tuning usage of]]
 
| valign="top" |
 
[[#SEC25|5. Tuning Memory Usage]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC1|Mertens-Kautz-Van Reeth exposure fusion]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC20|mode of operation (SDev, LoG, ')]]
 
| valign="top" |
 
[[#SEC20|3.4.4 Scaling and Choice of Mode]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! N
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX94|natural sharp-unsharp transition]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC28|noise reduction]]
 
| valign="top" |
 
[[#SEC28|6.2 Repetition ' Noise Reduction]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! O
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC7|option delimiters]]
 
| valign="top" |
 
[[#SEC7|2.5 Option Delimiters]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC51|option index]]
 
| valign="top" |
 
[[#SEC51|Option Index]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC3|options, common]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC6|options, expert]]
 
| valign="top" |
 
[[#SEC6|2.4 Expert Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC4|options, extended]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC5|options, fusion]]
 
| valign="top" |
 
[[#SEC5|2.3 Fusion Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX9|output file compression]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX42|output image, set size of]]
 
| valign="top" |
 
[[#SEC4|2.2 Extended Options]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC1|overview]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! P
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX15|packbits compression]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX92|pixels, hot]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC33|polarization series]]
 
| valign="top" |
 
[[#SEC33|6.5 Polarization Series ' Saturation Enhancement]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC16|probability function]]
 
| valign="top" |
 
[[#SEC16|3.4.1.1 Statistical Moments]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC40|problem, local contrast]]
 
| valign="top" |
 
[[#SEC40|6.6.5.1 A Detailed Look at the Problem]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC50|program index]]
 
| valign="top" |
 
[[#SEC50|Program Index]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC45|programs, helpful additional]]
 
| valign="top" |
 
[[#SEC45|7. Helpful Additional Programs]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX20|pyramid levels]]
 
| valign="top" |
 
[[#SEC3|2.1 Common Options]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! S
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC33|saturation enhancement]]
 
| valign="top" |
 
[[#SEC33|6.5 Polarization Series ' Saturation Enhancement]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC20|scaling of parameters]]
 
| valign="top" |
 
[[#SEC20|3.4.4 Scaling and Choice of Mode]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX88|sensor, use of clean]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC29|series, exposure]]
 
| valign="top" |
 
[[#SEC29|6.3 Exposure Series ' Dynamic Range Increase]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC32|series, flash exposure]]
 
| valign="top" |
 
[[#SEC32|6.4 Flash Exposure Series ' Directed Lighting]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC33|series, polarization]]
 
| valign="top" |
 
[[#SEC33|6.5 Polarization Series ' Saturation Enhancement]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC28|series, simple]]
 
| valign="top" |
 
[[#SEC28|6.2 Repetition ' Noise Reduction]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC28|simple series]]
 
| valign="top" |
 
[[#SEC28|6.2 Repetition ' Noise Reduction]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX72|standard deviation]]
 
| valign="top" |
 
[[#SEC16|3.4.1.1 Statistical Moments]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC16|statistical moments]]
 
| valign="top" |
 
[[#SEC16|3.4.1.1 Statistical Moments]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX90|subtraction of dark frame]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX86|sweet spot aperture]]
 
| valign="top" |
 
[[#SEC35|6.6.1 Why create focus stacks?]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! T
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC44|tips, focus stacking experts]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX95|transition, natural sharp-unsharp]]
 
| valign="top" |
 
[[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! U
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC22|undestanding masks]]
 
| valign="top" |
 
[[#SEC22|4. Understanding Masks]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! V
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#IDX71|variance]]
 
| valign="top" |
 
[[#SEC16|3.4.1.1 Statistical Moments]]
 
|-
 
| colspan="3" |
 
----
 
|-
 
! W
 
|
 
|
 
|-
 
|
 
| valign="top" |
 
[[#SEC22|weight mask]]
 
| valign="top" |
 
[[#SEC22|4. Understanding Masks]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC24|weight masks]]
 
| valign="top" |
 
[[#SEC24|4.2 Weight Mask Files]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC10|weighted average]]
 
| valign="top" |
 
[[#SEC10|3.1.1 Weighted Average]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC8|weighting functions]]
 
| valign="top" |
 
[[#SEC8|3. Weighting Functions]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX4|weighting, contrast]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC14|weighting, contrast]]
 
| valign="top" |
 
[[#SEC14|3.4 Contrast Weighting]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC19|weighting, contrast using a blend of methods]]
 
| valign="top" |
 
[[#SEC19|3.4.3 Blend Standard Deviation and Laplacian of Gaussian]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC18|weighting, contrast using laplacian- of'gaussian]]
 
| valign="top" |
 
[[#SEC18|3.4.2 Laplacian of Gaussian]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC15|weighting, contrast using standard deviation]]
 
| valign="top" |
 
[[#SEC15|3.4.1 Standard Deviation]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX5|weighting, entropy]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC21|weighting, entropy]]
 
| valign="top" |
 
[[#SEC21|3.5 Entropy Weighting]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX2|weighting, exposure]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC12|weighting, exposure]]
 
| valign="top" |
 
[[#SEC12|3.2 Exposure Weighting]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC9|weighting, general concept of]]
 
| valign="top" |
 
[[#SEC9|3.1 Weighting Pixels]]
 
|-
 
|
 
| valign="top" |
 
[[#IDX3|weighting, saturation]]
 
| valign="top" |
 
[[#SEC1|1. Overview]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC13|weighting, saturation]]
 
| valign="top" |
 
[[#SEC13|3.3 Saturation Weighting]]
 
|-
 
|
 
| valign="top" |
 
[[#SEC15|window, local-analysis]]
 
| valign="top" |
 
[[#SEC15|3.4.1 Standard Deviation]]
 
|-
 
| colspan="3" |
 
----
 
|}
 
 
 
{|
 
! valign="top" | Jump to:
 
|
 
[[#SEC52 0|'''3''']]  <br />[[#SEC52 1|'''A''']]  [[#SEC52 2|'''B''']]  [[#SEC52 3|'''C''']]  [[#SEC52 4|'''D''']]  [[#SEC52 5|'''E''']]  [[#SEC52 6|'''F''']]  [[#SEC52 7|'''G''']]  [[#SEC52 8|'''H''']]  [[#SEC52 9|'''I''']]  [[#SEC52 10|'''L''']]  [[#SEC52 11|'''M''']]  [[#SEC52 12|'''N''']]  [[#SEC52 13|'''O''']]  [[#SEC52 14|'''P''']]  [[#SEC52 15|'''S''']]  [[#SEC52 16|'''T''']]  [[#SEC52 17|'''U''']]  [[#SEC52 18|'''V''']]  [[#SEC52 19|'''W''']]
 
|}
 
 
 
----
 
 
 
= Footnotes =
 
 
 
=== [[#DOCF1|(1)]] ===
 
 
 
Tom Mertens, Jan Kautz, and Frank van Reeth, 'Exposure Fusion', Proceedings of the 15th Pacific Conference on Computer Graphics and Applications, pages 382'390.
 
 
 
=== [[#DOCF2|(2)]] ===
 
 
 
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.
 
 
 
=== [[#DOCF3|(3)]] ===
 
 
 
Downsampling with a good interpolator reduces noise, which might not desired to judge the image quality of the original-size image. Cropping might be an alternative, though.
 
 
 
=== [[#DOCF4|(4)]] ===
 
 
 
In the current implementation a <code>floor(ContrastWindowSize / 2)</code> wide border around the images remains unprocessed and gets a weight of zero.
 
 
 
=== [[#DOCF5|(5)]] ===
 
 
 
[http://www.debevec.org/ Paul E. Debevec] defines: 'A ''light probe'' image is an omnidirectional, high dynamic range image that records the incident illumination conditions at a particular point in space.'
 
 
 
----
 
 
 
= Table of Contents =
 
 
 
<div class="contents">
 
 
 
* [[#SEC1|1. Overview]]
 
* [[#SEC2|2. Invocation]]
 
** [[#SEC3|2.1 Common Options]]
 
** [[#SEC4|2.2 Extended Options]]
 
** [[#SEC5|2.3 Fusion Options]]
 
** [[#SEC6|2.4 Expert Options]]
 
** [[#SEC7|2.5 Option Delimiters]]
 
* [[#SEC8|3. Weighting Functions]]
 
** [[#SEC9|3.1 Weighting Pixels]]
 
*** [[#SEC10|3.1.1 Weighted Average]]
 
*** [[#SEC11|3.1.2 Disabling Averaging: Option '-- HardMask']]
 
** [[#SEC12|3.2 Exposure Weighting]]
 
** [[#SEC13|3.3 Saturation Weighting]]
 
** [[#SEC14|3.4 Contrast Weighting]]
 
*** [[#SEC15|3.4.1 Standard Deviation]]
 
**** [[#SEC16|3.4.1.1 Statistical Moments]]
 
**** [[#SEC17|3.4.1.2 Estimators]]
 
*** [[#SEC18|3.4.2 Laplacian of Gaussian]]
 
*** [[#SEC19|3.4.3 Blend Standard Deviation and Laplacian of Gaussian]]
 
*** [[#SEC20|3.4.4 Scaling and Choice of Mode]]
 
** [[#SEC21|3.5 Entropy Weighting]]
 
* [[#SEC22|4. Understanding Masks]]
 
** [[#SEC23|4.1 Masks in Input Files]]
 
** [[#SEC24|4.2 Weight Mask Files]]
 
* [[#SEC25|5. Tuning Memory Usage]]
 
* [[#SEC26|6. Applications of Enfuse]]
 
** [[#SEC27|6.1 What Makes Images Fusable?]]
 
** [[#SEC28|6.2 Repetition ' Noise Reduction]]
 
** [[#SEC29|6.3 Exposure Series ' Dynamic Range Increase]]
 
*** [[#SEC30|6.3.1 Tips For Beginners]]
 
*** [[#SEC31|6.3.2 Common Misconceptions]]
 
** [[#SEC32|6.4 Flash Exposure Series ' Directed Lighting]]
 
** [[#SEC33|6.5 Polarization Series ' Saturation Enhancement]]
 
** [[#SEC34|6.6 Focus Stacks ' Depth-of-Field Increase]]
 
*** [[#SEC35|6.6.1 Why create focus stacks?]]
 
*** [[#SEC36|6.6.2 Preparing Focus Stacks]]
 
*** [[#SEC37|6.6.3 Contrast Based Fusing]]
 
*** [[#SEC38|6.6.4 Basic Focus Stacking]]
 
*** [[#SEC39|6.6.5 Advanced Focus Stacking]]
 
**** [[#SEC40|6.6.5.1 A Detailed Look at the Problem]]
 
**** [[#SEC41|6.6.5.2 Laplacian Edge Detection]]
 
**** [[#SEC42|6.6.5.3 Local Contrast Enhancement]]
 
**** [[#SEC43|6.6.5.4 Suppressing Noise or Recognizing Faint Edges]]
 
*** [[#SEC44|6.6.6 Tips For Focus Stacking Experts]]
 
* [[#SEC45|7. Helpful Additional Programs]]
 
* [[#SEC46|A. Authors]]
 
* [[#SEC47|B. GNU Free Documentation License]]
 
* [[#SEC48|List of Tables]]
 
* [[#SEC49|List of Figures]]
 
* [[#SEC50|Program Index]]
 
* [[#SEC51|Option Index]]
 
* [[#SEC52|General Index]]
 
 
 
</div>
 
----
 
 
 
= About This Document =
 
 
 
This document was generated by ''Christoph Spiel'' on ''December, 23 2008'' using [http://www.nongnu.org/texi2html/ ''texi2html 1.78''].
 
 
 
The buttons in the navigation panels have the following meaning:
 
 
 
{| border="1"
 
! Button
 
! Name
 
! Go to
 
! From 1.2.3 go to
 
|-
 
| align="center" | Back
 
| align="center" | Back
 
| Previous section in reading order
 
| 1.2.2
 
|-
 
| align="center" | Forward
 
| align="center" | Forward
 
| Next section in reading order
 
| 1.2.4
 
|-
 
| align="center" | FastBack
 
| align="center" | FastBack
 
| Beginning of this chapter or previous chapter
 
| 1
 
|-
 
| align="center" | Up
 
| align="center" | Up
 
| Up section
 
| 1.2
 
|-
 
| align="center" | FastForward
 
| align="center" | FastForward
 
| Next chapter
 
| 2
 
|-
 
| align="center" | Top
 
| align="center" | Top
 
| Cover (top) of document
 
|
 
|-
 
| align="center" | Contents
 
| align="center" | Contents
 
| Table of contents
 
|
 
|-
 
| align="center" | Index
 
| align="center" | Index
 
| Index
 
|
 
|-
 
| align="center" | About
 
| align="center" | About
 
| About (help)
 
|
 
|}
 
 
 
where the ''' Example ''' assumes that the current position is at ''' Subsubsection One-Two-Three ''' of a document of the following structure:
 
 
 
* 1. Section One
 
** 1.1 Subsection One-One
 
*** ...
 
** 1.2 Subsection One-Two
 
*** 1.2.1 Subsubsection One-Two-One
 
*** 1.2.2 Subsubsection One-Two-Two
 
*** 1.2.3 Subsubsection One-Two-Three    '''&lt;== Current Position '''
 
*** 1.2.4 Subsubsection One-Two-Four
 
** 1.3 Subsection One-Three
 
*** ...
 
** 1.4 Subsection One-Four
 
 
 
----
 
 
 
<span><font size="smaller"> This document was generated using ''texi2html 1.78''. </font></span><br />
 

Latest revision as of 16:44, 6 November 2014

The Enfuse reference manual for the most recent version in different formats can be found on http://enblend.sourceforge.net (as can that for Enblend)

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