~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to frmts/epsilon/frmt_epsilon.html

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
<h1>Epsilon - Wavelet compressed images</h1>
11
11
 
12
 
<p>Starting with GDAL 1.7.0, GDAL can read and write wavelet-compressed images through the Epsilon library.</p>
 
12
<p>Starting with GDAL 1.7.0, GDAL can read and write wavelet-compressed images through the Epsilon library.
 
13
Starting with GDAL 1.9.0, epsilon 0.9.1 is required.</p>
13
14
 
14
 
<p>The driver rely on the Open Source EPSILON library (GPL licenced). In its current state, the
 
15
<p>The driver rely on the Open Source EPSILON library (dual LGPL/GPL licence v3). In its current state, the
15
16
   driver will only be able to read images with regular internal tiling.</p>
16
17
 
17
18
<p>The EPSILON driver only supports 1 band (grayscale) and 3 bands (RGB) images</p>
21
22
<h2>Creation options</h2>
22
23
 
23
24
<ul>
24
 
<li><b>TARGET</b> Target size reduction as a percentage of the original (0-100). Defaults to 96</li><p>
25
 
<li><b>FILTER</b>. See EPSILON documentation or 'gdalinfo --format EPSILON' for full list of filter IDs. Defaults to 'daub97lift'</li><p>
26
 
<li><b>BLOCKXSIZE</b>=n: Sets tile width, defaults to 256. Power of 2 between 32 and 1024</li><p>
27
 
<li><b>BLOCKYSIZE</b>=n: Sets tile height, defaults to 256. Power of 2 between 32 and 1024</li><p>
28
 
<li><b>MODE</b>=[NORMAL/OTLPF] : OTLPF is some kind of hack to reduce boundary artefacts  when image is broken into several tiles.
29
 
                                 Due to mathematical constrains this method can be applied to biorthogonal filters only. Defaults to OTLPF</li><p>
30
 
<li><b>RGB_RESAMPLE</b>=[YES/NO] : Whether RGB buffer must be resampled to 4:2:0. Defaults to YES</li><p>
 
25
<li><p><b>TARGET</b> Target size reduction as a percentage of the original (0-100). Defaults to 96</p></li>
 
26
<li><p><b>FILTER</b>. See EPSILON documentation or 'gdalinfo --format EPSILON' for full list of filter IDs. Defaults to 'daub97lift'</p></li>
 
27
<li><p><b>BLOCKXSIZE</b>=n: Sets tile width, defaults to 256. Power of 2 between 32 and 1024</p></li>
 
28
<li><p><b>BLOCKYSIZE</b>=n: Sets tile height, defaults to 256. Power of 2 between 32 and 1024</p></li>
 
29
<li><p><b>MODE</b>=[NORMAL/OTLPF] : OTLPF is some kind of hack to reduce boundary artefacts  when image is broken into several tiles.
 
30
                                 Due to mathematical constrains this method can be applied to biorthogonal filters only. Defaults to OTLPF</p></li>
 
31
<li><p><b>RGB_RESAMPLE</b>=[YES/NO] : Whether RGB buffer must be resampled to 4:2:0. Defaults to YES</p></li>
31
32
</ul>
32
33
 
33
34
<p>See Also:</p>