Difference between revisions of "Verdandi"

From PanoTools.org Wiki
Jump to navigation Jump to search
Line 1: Line 1:
'''verdandi''' is a tool to merge several images into a single image without a seam. It is similar to [[enblend]] and using similar command line switches. It tries to find the best seam, which is the least visible. In contrast to enblend the images are not smoothly blended, it uses a hard blend (each pixel is taken from exact one image). This behaviour (Seam Carving) is similar to the blending function used in Adobes Photomerge and is also used in the Content Aware Scaling function in Adobe Photoshop.
+
'''verdandi''' is a tool to merge several images into a single image without a seam. It is similar to [[enblend]] and using similar command line switches. It tries to find the best seam, which is the least visible. '''Verdandi''' supports two different blend modes:
 +
* <tt>--seam=hard</tt>: The blend mode is using a hard blend: each pixel is taken from exact one image. This behaviour (Seam Carving) is similar to the blending function used in Adobes Photomerge.
 +
* <tt>--seam=blend</tt>: Blend the images in the gradient domain. The second image is here matched to the first image. This should reduce the differences between the images. But it is slower than the hard seam variant.
  
It will be available in Hugin 2015.0 and later.
 
  
 
== Usage ==
 
== Usage ==
Line 13: Line 14:
 
** For jpeg files use <tt>0-100</tt>: This will set the quality of the jpeg file. Bigger number means better image quality.
 
** For jpeg files use <tt>0-100</tt>: This will set the quality of the jpeg file. Bigger number means better image quality.
 
** For tiff files the following compressions are supported: <tt>PACKBITS</tt>, <tt>DEFLATE</tt> and <tt>LZW</tt>.
 
** For tiff files the following compressions are supported: <tt>PACKBITS</tt>, <tt>DEFLATE</tt> and <tt>LZW</tt>.
 +
* <tt>--seam=hard|blend</tt>: Sets the blend mode (see above)
 +
* <tt>--warp</tt>: Wraparound the 360 deg border. Otherwise the left and right borders are treated independent of each other.
  
 
[[Category:Software:Platform:Windows]]
 
[[Category:Software:Platform:Windows]]

Revision as of 17:56, 6 April 2016

verdandi is a tool to merge several images into a single image without a seam. It is similar to enblend and using similar command line switches. It tries to find the best seam, which is the least visible. Verdandi supports two different blend modes:

  • --seam=hard: The blend mode is using a hard blend: each pixel is taken from exact one image. This behaviour (Seam Carving) is similar to the blending function used in Adobes Photomerge.
  • --seam=blend: Blend the images in the gradient domain. The second image is here matched to the first image. This should reduce the differences between the images. But it is slower than the hard seam variant.


Usage

   verdandi --output=output.tif input1.tif input2.tif input3.tif

will merge the images input1.tif, input2.tif and input3.tif to output.tif.

  • --output=OUTPUT_FILENAME: The output filename. It has to include the extension to deduce the format of the output file.
  • --compression=COMPRESSION: Sets the compression for the output
    • For jpeg files use 0-100: This will set the quality of the jpeg file. Bigger number means better image quality.
    • For tiff files the following compressions are supported: PACKBITS, DEFLATE and LZW.
  • --seam=hard|blend: Sets the blend mode (see above)
  • --warp: Wraparound the 360 deg border. Otherwise the left and right borders are treated independent of each other.