Image Compression

5 visualizaciones (últimos 30 días)
Aseel H
Aseel H el 7 de Oct. de 2011
I want some information about this built_in function:
[cr,bpp] = wcompress('c',X,X2.wtc','ezw','maxloop',12);
- what about 'maxloop' and 12 also waht about if increase or decrease this number "12" ?
- this method is lossy compresion . what are methods that lossless compression?
thank you

Respuestas (2)

Image Analyst
Image Analyst el 7 de Oct. de 2011
PNG is a lossless compression. It is very commonly used and increasingly so. Just create a PNG file with imwrite(). JPEG2000 also has a lossless compression option.
  1 comentario
Walter Roberson
Walter Roberson el 7 de Oct. de 2011
JPEG (pre-2000) also has a lossless compression option.

Iniciar sesión para comentar.


Wayne King
Wayne King el 7 de Oct. de 2011
The 'maxloop' variable sets the maximum number of steps, if you decrease it too much, then your compression won't be optimal, if you increase it too much, you're just wasting computation effort, because the compression won't improve. You can experiment a bit.
wcompress() implements various lossy compression algorithms, see truecompdemo.m and datacompression.m for examples.
  1 comentario
Wayne King
Wayne King el 7 de Oct. de 2011
ImageAnalyst has given you lossless compression options.

Iniciar sesión para comentar.

Categorías

Más información sobre Denoising and Compression en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by