Advertisement
Guest User

Untitled

a guest
Oct 18th, 2013
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.93 KB | None | 0 0
  1.  
  2. enblend --help
  3. Usage: enblend [options] [--output=IMAGE] INPUT...
  4. Blend INPUT images into a single IMAGE.
  5.  
  6. INPUT... are image filenames or response filenames. Response
  7. filenames start with an "@" character.
  8.  
  9. Common options:
  10. -V, --version output version information and exit
  11. -a pre-assemble non-overlapping images
  12. -h, --help print this help message and exit
  13. -l, --levels=LEVELS limit number of blending LEVELS to use (1 to 29);
  14. negative number of LEVELS decreases maximum;
  15. "auto" restores the default automatic maximization
  16. -o, --output=FILE write output to FILE; default: "a.tif"
  17. -v, --verbose[=LEVEL] verbosely report progress; repeat to
  18. increase verbosity or directly set to LEVEL
  19. -w, --wrap[=MODE] wrap around image boundary, where MODE is "none",
  20. "horizontal", "vertical", or "both"; default: none;
  21. without argument the option selects horizontal wrapping
  22. -x checkpoint partial results
  23. --compression=COMPRESSION
  24. set compression of output image to COMPRESSION,
  25. where COMPRESSION is:
  26. "deflate", "jpeg", "lzw", "none", "packbits", for TIFF files and
  27. 0 to 100, or "jpeg", "jpeg-arith" for JPEG files,
  28. where "jpeg" and "jpeg-arith" accept a compression level
  29. --layer-selector=ALGORITHM
  30. set the layer selector ALGORITHM;
  31. default: "all-layers"; available algorithms are:
  32. "all-layers": select all layers in all images;
  33. "first-layer": select only first layer in each multi-layer image;
  34. "largest-layer": select largest layer in each multi-layer image;
  35. "no-layer": do not select any layer from any image;
  36. --parameter=KEY1[=VALUE1][:KEY2[=VALUE2][:...]]
  37. set one or more KEY-VALUE pairs
  38.  
  39. Extended options:
  40. -c, --ciecam use CIECAM02 to blend colors; disable with
  41. "--no-ciecam"
  42. --fallback-profile=PROFILE-FILE
  43. use the ICC profile from PROFILE-FILE instead of sRGB
  44. -d, --depth=DEPTH set the number of bits per channel of the output
  45. image, where DEPTH is "8", "16", "32", "r32", or "r64"
  46. -g associated-alpha hack for Gimp (before version 2)
  47. and Cinepaint
  48. --gpu use graphics card to accelerate seam-line optimization
  49. -f WIDTHxHEIGHT[+xXOFFSET+yYOFFSET]
  50. manually set the size and position of the output
  51. image; useful for cropped and shifted input
  52. TIFF images, such as those produced by Nona
  53.  
  54. Mask generation options:
  55. --primary-seam-generator=ALGORITHM
  56. use main seam finder ALGORITHM, where ALGORITHM is
  57. "nearest-feature-transform" or "graph-cut";
  58. default: "graph-cut"
  59. --image-difference=ALGORITHM[:LUMINANCE-WEIGHT[:CHROMINANCE-WEIGHT]]
  60. use ALGORITHM for calculation of the difference image,
  61. where ALGORITHM is "max-hue-luminance" or "delta-e";
  62. LUMINANCE-WEIGHT and CHROMINANCE-WEIGHT define the weights
  63. of lightness and color; default: delta-e:1: 1
  64. --coarse-mask[=FACTOR] shrink overlap regions by FACTOR to speedup mask
  65. generation; this is the default; if omitted FACTOR
  66. defaults to 8
  67. --fine-mask generate mask at full image resolution; use e.g.
  68. if overlap regions are very narrow
  69. --optimize turn on mask optimization; this is the default
  70. --no-optimize turn off mask optimization
  71. --optimizer-weights=DISTANCE-WEIGHT[:MISMATCH-WEIGHT]
  72. set the optimizer's weigths for distance and mismatch;
  73. default: 8:1
  74. --mask-vectorize=LENGTH
  75. set LENGTH of single seam segment; append "%" for
  76. relative value; defaults: 4 for coarse masks and
  77. 20 for fine masks
  78. --anneal=TAU[:DELTAE-MAX[:DELTAE-MIN[:K-MAX]]]
  79. set annealing parameters of optimizer strategy 1;
  80. defaults: 0.75:7000:5:32
  81. --dijkstra=RADIUS set search RADIUS of optimizer strategy 2; default:
  82. 25 pixels
  83. --save-masks[=TEMPLATE]
  84. save generated masks in TEMPLATE; default: "mask-%n.tif";
  85. conversion chars: "%i": mask index, "%n": mask number,
  86. "%p": full path, "%d": dirname, "%b": basename,
  87. "%f": filename, "%e": extension; lowercase characters
  88. refer to input images uppercase to the output image
  89. --load-masks[=TEMPLATE]
  90. use existing masks in TEMPLATE instead of generating
  91. them; same template characters as "--save-masks";
  92. default: "mask-%n.tif"
  93. --visualize[=TEMPLATE] save results of optimizer in TEMPLATE; same template
  94. characters as "--save-masks"; default: "vis-%n.tif"
  95. Enblend accepts arguments to any option in uppercase as
  96. well as in lowercase letters.
  97.  
  98. Report bugs at <https://bugs.launchpad.net/enblend>.
  99.  
  100.  
  101. enblend --version
  102. enblend 4.2-7bcf8a1e6b3d
  103.  
  104. Copyright (C) 2004-2012 Andrew Mihal.
  105. License GPLv2+: GNU GPL version 2 or later <http://www.gnu.org/licenses/gpl.html>
  106. This is free software: you are free to change and redistribute it.
  107. There is NO WARRANTY, to the extent permitted by law.
  108.  
  109. Written by Andrew Mihal and others.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement