Image files are generally compressed using coding redundancy, inter-pixel redundancy and psychovisual redundancy. Data redundancy is the main problem of digital image compression. In digital image compression, three basic data redundancies can be determined and utilized: coding redundancy, inter-pixel redundancy and psychovisual redundancy; when these three types of redundancy Data compression (reducing the amount of data required to represent a given amount of information) is achieved when one or more of are reduced or eliminated.
The operating environment of this tutorial: Windows 7 system, Dell G3 computer.
The problem solved by image compression is to minimize the amount of data required to represent digital images, and to remove excess data based on the basic principle of reducing the amount of data.
1. Basic introduction
Image compression model: Mainly introduces the encoding and decoding of signal sources, and does not discuss the signal channel of the transmission process. .
Data compression refers to reducing the amount of data required to represent a given amount of information.
Data is the means of information transmission. The same amount of information can be represented by different amounts of data.
Information: used to represent the information of the image itself.
Data redundancy is a major problem in digital image compression. If n1 and n2 represent the number of information units carried in two data sets representing the same information, then the relative data redundancy RD of the first data set (the set represented by n1) can be defined as :
Here C is usually called the compression ratio, which is defined as:
In digital image compression , three basic types of data redundancy can be identified and exploited: coding redundancy, inter-pixel redundancy, and psychovisual redundancy. Data compression is achieved when one or more of these three redundancies are reduced or eliminated.
2. Coding redundancy
For images, it can be assumed that a discrete random variable represents the gray level of the image, and each gray level The probability of (rk) appearing is pr
where L is the gray level, nk is the number of times the k-th gray level appears in the image, and n is the total number of pixels in the image. If the number of bits used to represent each rk value is l(rk), then the average number of bits required to represent each pixel is:
That is to say, the number of bits used to represent each gray level value is multiplied by the probability of gray level occurrence, and the resulting products are added to obtain the average codeword of different gray level values. length. If the average number of bits of a certain encoding is closer to the entropy, the encoding redundancy is smaller.
[Note]
Entropy: It defines the average amount of information obtained by observing the output of a single source
For example:
The entropy of the original image is: 2.588
Using natural binary encoding, the average length is;3
If using the table Medium encoding 2, the average number of bits is:
achieves coding compression, pr(rk) and l(r k) These two functions are multiplied and inversely proportional. That is to say, the greater the probability pr(rk) of a certain grayscale rk, the greater the coding length l(rk) should be smaller, which can reduce the average number of bits and bring it closer to the entropy. As shown below:
3. Inter-pixel redundancy
Inter-pixel redundancy is a kind of Inter-pixel correlations are directly linked to data redundancy.
For a static picture, there is spatial redundancy (geometric redundancy). This is because the visual contribution of a single pixel to the image in a picture is often redundant. Grayscale values are inferred.
For continuous pictures or videos, there will also be temporal redundancy (inter-frame redundancy). Most of the corresponding pixels between adjacent pictures are slowly excessive.
3. Psychovisual redundancy
Psychovisual redundancy is related to real visual information. It varies from person to person. Different people have different psychological visual redundancy for the same photo. . Removing redundant psychovisual data will inevitably lead to the loss of quantitative information, and this loss of visual information is an irreversible operation. Just like an image (which cannot be enlarged) is relatively small, the human eye cannot directly judge its resolution. In order to compress the data volume of the image, some information that cannot be directly observed by the human eye can be removed, but when it is enlarged, it is not removed. An image with psychovisual redundancy will be significantly different from an image with psychovisual redundancy removed.
Figure C illustrates that the quantization process that fully utilizes the characteristics of the human visual system can greatly improve the performance of the image. Although the compression ratio of this quantization process is still only 2: 1, Additional overhead is added to reduce false contours, but unwanted graininess is reduced. The method used to produce this result is the improved gray scale (IGS) quantization method. This method is illustrated in the table below. First, the current 8-bit gray level value and the 4 least significant bits generated previously form a sum with an initial value of zero. If the 4 most significant bits of the current value are 1111, add 0000 to it. The value of the 4 most significant bits of the obtained sum is used as the encoded pixel value.
4. Fidelity criterion
4.1 Objective Fidelity Criterion
This is said when the degree of information loss can be expressed as a function of the initial image or input image and the output image that is first compressed and then decompressed Functions are based on objective fidelity criteria.
-
Root mean square error (rms)
Overall error of the two pictures:
Among them, f (x,y) represents the input image, and f(x,y) represents the estimate or approximation obtained by compressing and decompressing the input image
The root mean square error of the two pictures; - Mean square signal-to-noise ratio
FAQ column!
The above is the detailed content of What redundancy is generally used to compress image files?. For more information, please follow other related articles on the PHP Chinese website!

随着互联网的快速发展,图片处理在各种应用中扮演着重要的角色。而对于Java开发者来说,如何优化图片处理的性能是一个不可忽视的问题。本文将介绍一些优化图片处理性能的方法。首先,对于Java开发中的图片处理,我们可以考虑使用专门的图片处理库,例如JAI(JavaAdvancedImaging)和ImageIO。这些库提供了丰富的图片处理功能,并且经过了优化,

如何实现C#中的图像压缩算法摘要:图像压缩是图像处理领域中的一个重要研究方向,本文将介绍在C#中实现图像压缩的算法,并给出相应的代码示例。引言:随着数字图像的广泛应用,图像压缩成为了图像处理中的重要环节。压缩能够减小存储空间和传输带宽,并能提高图像处理的效率。在C#语言中,我们可以通过使用各种图像压缩算法来实现对图像的压缩。本文将介绍两种常见的图像压缩算法:

jpeg是面向连续色调静止图像的压缩编码标准;其主要是采用预测编码、离散余弦变换以及熵编码的联合编码方式,以去除冗余的图像和彩色数据,属于有损压缩格式,它能够将图像压缩在很小的储存空间,一定程度上会造成图像数据的损伤。

如何优化C++开发中的图像压缩速度图像压缩是计算机图像处理中非常重要的一环。在实际应用中,往往需要将图像文件进行压缩以减小存储空间和传输成本。而在大规模的图像处理任务中,图像压缩的速度也是一个非常关键的指标。本文将介绍一些优化C++开发中图像压缩速度的方法和技巧。使用高效的压缩算法选择一个适合任务需求的高效压缩算法是提高图像压缩速度的重要因素之一。目前常用的

如何使用C++进行高效的图像重建和图像压缩?图像是我们日常生活中非常常见的一种媒介,而图像的处理对于许多应用来说至关重要。在图像处理中,图像重建和图像压缩是两个非常重要的环节。本文将介绍如何使用C++进行高效的图像重建和图像压缩。图像重建图像重建是指将一张过于模糊或者损坏的图像恢复到原本的清晰状态。常用的图像重建方法之一是使用卷积神经网络(Convoluti

图像压缩是在储存和传输图像时常用的技术手段,它可以减小图像的存储空间,加快图像的传输速度。图像压缩的目标是尽可能地减小图像文件的大小,同时尽量保持图像的视觉质量,以便人眼能够接受。然而,在图像压缩过程中,常常会产生一定程度的失真。本文将讨论图像压缩中的失真控制问题,并提供一些具体的代码示例。JPEG压缩算法及其失真问题JPEG是一种常见的图像压缩标准,它采用

图像文件一般利用编码冗余、像素间冗余和心理视觉冗余进行压缩。数据冗余是数字图像压缩的主要问题,在数字图像压缩中,可以确定三种基本的数据冗余并加以利用:编码冗余、像素间冗余和心理视觉冗余;当这三种冗余中的一种或多种得到减少或消除时, 就实现了数据压缩(减少表示给定信息量所需的数据量)。

PHPZipArchive如何实现对压缩包中文件的图像压缩功能?引言:随着互联网的发展,图像在网页中的应用越来越广泛。为了提高网页加载速度和节省存储空间,对图像进行压缩是必不可少的一项工作。而使用PHP的ZipArchive类,我们可以方便地实现对压缩包中文件的图像压缩功能。本文将介绍如何使用该类来实现图像压缩。一、准备工作:在开始之前,确保你的PHP

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
