Enum jpeg_encoder::QuantizationTableType [−][src]
pub enum QuantizationTableType { Default, Flat, CustomMsSsim, CustomPsnrHvs, ImageMagick, KleinSilversteinCarney, DentalXRays, VisualDetectionModel, ImprovedDetectionModel, Custom(Box<[u16; 64]>), }
Expand description
Quantization table used for encoding
Tables are based on tables from mozjpeg
Variants
Sample quantization tables given in Annex K (Clause K.1) of Recommendation ITU-T T.81 (1992) | ISO/IEC 10918-1:1994.
Flat
Custom, tuned for MS-SSIM
Custom, tuned for PSNR-HVS
ImageMagick table by N. Robidoux
From http://www.imagemagick.org/discourse-server/viewtopic.php?f=22&t=20333&p=98008#p98008
Relevance of human vision to JPEG-DCT compression (1992) Klein, Silverstein and Carney.
DCTune perceptual optimization of compressed dental X-Rays (1997) Watson, Taylor, Borthwick
A visual detection model for DCT coefficient quantization (12/9/93) Ahumada, Watson, Peterson
An improved detection model for DCT coefficient quantization (1993) Peterson, Ahumada and Watson
A user supplied quantization table
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for QuantizationTableType
impl Send for QuantizationTableType
impl Sync for QuantizationTableType
impl Unpin for QuantizationTableType
impl UnwindSafe for QuantizationTableType
Blanket Implementations
Mutably borrows from an owned value. Read more