필터 지우기
필터 지우기

Image Compression

조회 수: 3 (최근 30일)
Aseel H
Aseel H 2011년 10월 7일
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

답변 (2개)

Image Analyst
Image Analyst 2011년 10월 7일
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
Walter Roberson
Walter Roberson 2011년 10월 7일
JPEG (pre-2000) also has a lossless compression option.

댓글을 달려면 로그인하십시오.


Wayne King
Wayne King 2011년 10월 7일
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
Wayne King
Wayne King 2011년 10월 7일
ImageAnalyst has given you lossless compression options.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by