Next Article in Journal
EspEn Graph for the Spatial Analysis of Entropy in Images
Next Article in Special Issue
Protograph Designing of P-LDPC Codes via M3 Method
Previous Article in Journal
Thermoelectric Cycle and the Second Law of Thermodynamics
Previous Article in Special Issue
EXK-SC: A Semantic Communication Model Based on Information Framework Expansion and Knowledge Collision
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Lossless Image Coding Using Non-MMSE Algorithms to Calculate Linear Prediction Coefficients

by
Grzegorz Ulacha
* and
Mirosław Łazoryszczak
*
Faculty of Computer Science and Information Technology, West Pomeranian University of Technology in Szczecin, Ul. Żołnierska 49, 71-210 Szczecin, Poland
*
Authors to whom correspondence should be addressed.
Entropy 2023, 25(1), 156; https://doi.org/10.3390/e25010156
Submission received: 6 December 2022 / Revised: 9 January 2023 / Accepted: 10 January 2023 / Published: 12 January 2023
(This article belongs to the Special Issue Advances in Information and Coding Theory)

Abstract

:
This paper presents a lossless image compression method with a fast decoding time and flexible adjustment of coder parameters affecting its implementation complexity. A comparison of several approaches for computing non-MMSE prediction coefficients with different levels of complexity was made. The data modeling stage of the proposed codec was based on linear (calculated by the non-MMSE method) and non-linear (complemented by a context-dependent constant component removal block) predictions. Prediction error coding uses a two-stage compression: an adaptive Golomb code and a binary arithmetic code. The proposed solution results in 30% shorter decoding times and a lower bit average than competing solutions (by 7.9% relative to the popular JPEG-LS codec).

1. Introduction

At present, the processing of images and video sequences has a fully digital structure, and high memory requirements related to storing multimedia data are therefore a significant problem. Reducing memory requirements is possible due to lossy and lossless compression, and the latter type is the subject of this work. The main applications of lossless images and video compression include archiving 2D, 3D, and 4D medical images (three-dimensional video sequences) [1,2,3,4,5] and astronomical images, as well as satellite image compression [6,7]. In addition, the lossless mode is often required during the graphic processing of photos or in advertising materials in the production of television broadcasts and film post-production [8], etc. In the case of the lossy compression of a video sequence, where the division into a group of pictures (GoP) is introduced, the first frame (type I) is coded in an intra-frame mode, whereas the remaining N G o P 1 frames are coded in an inter-frame mode. The image is divided into small squares in such types of codecs (similar to the JPEG format used in digital cameras). Further encoding is usually based on the DCT transform. In the type I frame within each square, the DC coefficient, as the first of the DCT-transformed components, determines the arithmetic average of the pixel values in each square. This means that the diminished version of the selected frame is used, coded with lossless compression methods. For example, for a video sequence of 4K quality (3840 × 2160 resolution) and squares of 8 × 8 pixels, we obtain a diminished resolution frame of 480 × 270.
Two steps are usually used in modern compression methods: data decomposition and compression by efficient entropy methods, the most effective being arithmetic coding and Huffman coding [9]. The decomposition is designed to significantly reduce data redundancy resulting from the high level of correlation between neighboring pixels. At this stage, wavelet methods (e.g., JPEG2000 [10], SPIHT [11], ICER [12]) as well as predictive methods (PRDC [13], JPEG-LS [14], CALIC [15]) are used. The most common definition of nonlinear predictors used for lossless image coding is that the prediction function is a linear combination of nearest-neighbor pixel values using a switching scheme between several prediction models associated with particular contexts. Such nonlinear predictors are sometimes called multichannel predictive coders [16]. Two such proposals will be discussed in Section 3.
In contrast, for example, predictive models based on neural networks are characterized by full nonlinearity. In practical applications, an adaptive method is used in which the network weights are modified on the fly after each successive pixel is encoded (methods with backward adaptation). The papers [17,18,19] used an adaptive neural network (AdNN), the design of which was based on a Multilayer Perceptron Network (MLP), whereas the paper [20] used a cellular neural network (CNN). The feature of backward adaptability refers to the time symmetry of encoding and decoding. In cases where neural networks are used, it usually means long process times for both encoding and decoding. When neural networks with forward adaptation (pre-learned using an image database) and lossy-to-lossless coding mode are used, especially when using the latest GPU parallelization and acceleration technologies, the problem of excessive complexity does not exist.
Among the methods with high implementation complexity, there are other time-symmetric solutions with higher efficiency than neural networks. In such cases, the methods were based on linear prediction models with backward adaptation, using mechanisms known from the literature such as RLS [21], OLS [22,23,24], or WLS [25,26], where the coding of each successive pixel is also accompanied by a procedure for adapting or redetermining the coefficients of the linear predictor. The cascaded combination of predictors allows us to obtain the highest compression efficiency, as shown in [25], but it is associated with too long a decoding time (see Section 4). One-step coding (without the step pre-transforming the data) has similarly long encoding and decoding times. [27].
Therefore, this work focuses on time-asymmetric methods (with forward adaptation) with a fast decoding mechanism since the encoding operation is most often performed once, and the decoding operation is performed many times. Backward-adaptive methods for determining prediction coefficients only have pixels already available as decoded on the decoder side (details in Section 2.1), hence learning the prediction model on the fly on both the encoding and decoding sides. In contrast, in methods with forward adaptation, we can already more precisely "tune” the prediction model at the encoding stage thanks to complete information about all image pixels. The paper will discuss different approaches to determining prediction coefficients, including comparing the classical method based on minimizing the mean-square error and the proprietary algorithms presented in Section 2.2 and Section 3.2, which use non-MMSE solutions with different levels of implementation complexity at the coding stage. Section 2.2 discusses the advantages and disadvantages of approaches with minimized prediction errors based on the generalized Minkowski distance. Section 2.3 presents the fast prediction methods using context switching, which are then used in the final solution discussed in Section 3, whereas maintaining the low implementation complexity of the decoder, the proposed solution offers a 7.9% lower bit average relative to the popular JPEG-LS codec. In Section 4, we present a comparison of the effectiveness of the proposed solution with competing methods of similar complexity (methods with forward adaptation). The decoding time of the proposed solution is 30% shorter than the relatively fast Multi-ctx method [28].

2. Application of Linear and Nonlinear Prediction in Lossless Image Coding

2.1. Practical Aspects of Lossless Image Coding

Data modeling for two-dimensional signals such as images boils down to removing as much mutual information between adjacent pixels (spatial correlation) as possible. To do this, the predicted value (rounded to an integer value) of the encoded pixel x ^ n is determined. Then, the differences between them are encoded, which are referred to as prediction errors, which are most often small values oscillating near zero:
e n = x n [ x ^ n ] .
In this way (i.e., by encoding successive rows of the image from top to bottom and within a row and consecutive pixels from left to right, which leads to a linear complexity of decoding time as a function of the number of image pixels), we obtain a differential image in which the errors distribution e n is close to the Laplace distribution, which allows us to encode them efficiently using one of the entropy methods. With an eight-bit input data scale, the prediction error value is an integer in the interval e n 255 ; 255 ¯ . One proposal for determining the predicted value is to use linear prediction with an appropriate selection of neighboring pixels and the prediction order. To obtain a one-dimensional data vector from the neighborhood, it is necessary to number the neighbors of the encoded pixel, for example, according to the increasing Euclidean distance ( Δ x j ) 2 + ( Δ y j ) 2 of their centers. The numbering of pixels with the same distance is then determined clockwise. This allows the apparent one-dimensional domain of the signal, which facilitates the mathematical notation of many formulas and the use of known formulas themselves, concerning one-dimensional signals. We discussed the analysis of other numbering methods in paper [25]. Figure 1 illustrates the 46 numbered nearest neighbors of a coded pixel x n , where the given j-th number points to a pixel with a value P ( j ) .
The linear predictor of order r has the form:
x ^ n = j = 1 r b j · P ( j ) ,
where the elements b j are the prediction coefficients that make up the B vector to be passed in the file header to the decoder [9]. It is widely accepted that, for images, the determination of prediction coefficients by minimizing the mean squared error (MMSE) gives very good results [9,25]. To ensure that the header size not too large and assuming that the prediction coefficient is between 1.999 and 1.999 , we can write each coefficient using a small number of bits, that is, ( N + 2 ) bits. Each bit is used to store the sign of a number and an integer value, respectively. The remaining N bits are the precision of the fractional part. To achieve this, the following operation is performed:
B ¯ = B · 2 N + 0.5 · 2 N .
It is assumed that for images, the sum of the coefficients is equal to 1. Suppose the sum of the prediction coefficients (for example, determined by the MMSE method) is slightly different from 1 (which can be affected by the rounding used in formula (3)). In that case, we can modify the first coefficient b 1 by adding a value of 1 j = 1 r b j . When using a single r-order predictor, the cost of the header is only ( r 1 ) · ( N + 2 ) bits. For example, for an image with a resolution of 512 × 512 pixels, with r = 24 and N = 12 , the cost of the header is only L h e a d = 0.00123 bits per pixel. Therefore, in this work, we can make some simplifications, such as omitting the header part from the formula for the bit average L a v g and using the entropy function: L a v g = L e r r + L h e a d L e r r H , where H denotes the first-order entropy value of the differential image data (after predictive coding):
H = i = e m i n e m a x p i · l o g 2 p i ,
where p i is the probability of occurrence of a symbol from the prediction error alphabet with index i; in this case, the error alphabet can be considered a set of integers with values between e m i n and e m a x . With this assumption, the MDL (Minimum Description Length) algorithm, which minimizes the bit average L a v g , is reduced to minimize the entropy function of the differential image data.

2.2. Determination of Prediction Coefficients Using the Non-MSE Method

In determining linear prediction coefficients, the MMSE criterion [9] is not synonymous with obtaining a model that allows the smallest possible value of entropy H, nor the smallest bit average L a v g received after considering header data, for example, adaptive arithmetic coding of prediction errors. The paper [29] proposed a minimization of the mean absolute error (MMAE), which, when the image was divided into squares of size 8 × 8, yielded better results compared to the use of MMSE. A broader justification for the suboptimal effect of the MMSE on the entropy value was presented in the work of [30]. In the paper [25], we showed that depending on the prediction scheme used (cascade prediction) and the size of the learning area Q, it makes sense to use different values of the power of M (from 0.6 to 2) in the minimization criterion L M , which uses the generalized Minkowski distance formula (for M = 2 we obtain the Euclidean distance (MSE), and for M = 1 , the Manhattan distance (MAE)):
L M = 1 S i z e ( Q ) n Q | e n | M 1 M
For methods with iterative optimization of the prediction model, it is more convenient to use the substitute of the objective function L M in place of the bit average L a v g , even when the simplified assumption of L a v g H is made. In the approach proposed in this work, the area Q is the entire differential image, for which good compression efficiency is obtained at M = 0.75 .
Figure 2 shows the dependence of entropy as a function of the parameter M; for example, the Noisesquare image was encoded using a linear predictor of order r = 8 .
Beyond the integer values M = 1 and M = 2 (especially with M < 1 and b j coefficients ranging from −1.999 to 1.999), finding an optimal linear predictor is challenging. In the paper [31], we presented a suboptimal algorithm for determining prediction coefficients using a selective search (referred to here as the Iterative Search Algorithm, ISA), which allows us to minimize the value of Formula (5) simplified to the form:
L ¯ M = n Q | x n x ^ n | M ,
where the predicted value is determined from Equation (2) with the limitations above imposed on the range of coefficients b j .
Figure 3 shows the comparison of average entropy values obtained using the ISA algorithm (for a base of 45 test images) as a function of the order of prediction obtained using the four following minimization criteria: MMSE ( M = 2 )—points marked with a diamond; MMAE ( M = 1 )—points marked with a square; Minkowski ( M = 0.75 )—points marked with a triangle; and the entropy function H—points marked with a circle. Both Figure 2 and Figure 3 show how distant the goal of entropy minimization is from the results obtained by classical mean square error minimization.
One of the advantages of the ISA algorithm is the flexibility of using an internal (substitute) objective function. Although in the case of compression, we are usually concerned with minimizing the entropy function in the final coding step, deciding to modify the prediction coefficients in subsequent iterations based on the entropy drop does not guarantee that the smallest entropy value will be obtained at the end of the selective search. Comparing the results of using two different internal target functions, in about half of the cases, using the function (6) at M = 0.75 gave a slightly better result than using the function (4). Our target proposal is an experimentally selected compromise that combines both of these criteria into a single internal (substitute) target function:
L ¯ O p t = H + n Q x n x ^ n 0.6 .
This is due, among other things, to the fact that the ISA quickly takes into account the effects of an additional block of removal of the context-dependent constant component when minimizing errors, which improves the predicted value and which is assumed by the target solution scheme of the encoder proposed here (see Section 3.1).
The ISA algorithm introduces the condition j = 1 r b j = 1 and a predetermined precision for writing coefficients to N fractional bits. First, we set the original vector of coefficients as B = [ 1 , 0 , , 0 ] and the objective function that will be minimized. Either Formulas (4), (6), or (7) can be used. Each t-th iteration consists of checking the objective function after encoding the image using a predictor B to which a specific scaled modifier vector Δ B has been added:
B ( t ) = B ( t 1 ) + 2 i · Δ B ,
If a reduction in the value of the objective function is obtained, then this vector is stored as the new value of B . For the sum of the prediction coefficients to remain constant, the sum of the elements in the modification vector Δ B must be equal to 0. A well-performing restriction of the set of Δ B = [ Δ b 1 , Δ b 2 , , Δ b r ] vectors to those with two non-zero 1 , 1 elements, whereas the remaining Δ b j elements are 0, was adopted. The number of modifying vectors is N Δ B = r · ( r 1 ) .
The ISA involves selective iterative searching, in which only a rough fit of the predictor to the data is obtained initially. Only subsequent steps allow each prediction coefficient to be refined with increasingly smaller bits after the decimal point, so the i parameter in Formula (8) is changed sequentially from 0 to N. For each fixed value of i, we perform encoding and reading of the objective function for successive vectors Δ B . Going through the cycle of the entire set of N Δ B modifying vectors, the process is repeated if there is a finding of at least one better vector B .
Usually, there are several such cycles, and we can limit the number of cycles to two for i < 4 and to eight for larger values of i. i denotes the number of test image encodings N I S A ( 4 · 2 + ( N 3 ) · 8 ) · r · ( r 1 ) = 8 · ( N 2 ) · r · ( r 1 ) , which is an upper limit, although, in practice, about half of this value is sufficient. Test coding should be a learning process (improving prediction efficiency in subsequent iterations). Thus, the second step related to proper prediction error compression is not performed at this stage. For this reason, the coding time is negligible compared to the preliminary stage of determining the predictive model. Only using the final prediction model leads to an entropy coding procedure of prediction errors.
For example, with N = 7 , r = 14 , we have a maximum number of 7280 test image encodings. However, based on experiments for 45 test images, the actual number of executions of the encoding procedure was less and averaged 3746. This is still low in complexity compared to a brute force complete search method that checks every possible state of vector B under imposed constraints. In this case, we are dealing with exponential complexity since the maximum number of test encodings is N B F = 2 ( N + 2 ) · ( r 1 ) . Table 1 presents the value of N B F and the reduced number (after considering the j = 1 r b j = 1 condition) for small N = 5 and r 5 values.
In the 27 experiments performed (using the nine test images from Table 1 sequentially for r = 2 , 3 , 4 ), only in one case did ISA obtain a slightly higher (increase of fewer than 0.001 bits/pixel) entropy value relative to the entire search. It should be noted that for higher orders of prediction, such high efficiency of suboptimal ISA is not preserved. However, the main advantage of using this algorithm is obtaining good results with a low number of fractional bits ( N < 7 ) used to store prediction coefficients, as confirmed by the results of an experiment comparing the average entropy value (for a base of 45 test images at r = 14 ) obtained by the two methods (Figure 4). In the first case (dashed line), the classical minimization of the mean square error was used. Then, the accuracy of the prediction coefficients was reduced using Formula (3), and in the second case (solid line), the ISA implementation was used with the goal minimization function (6) at M = 2 . On the other hand, the disadvantages of ISA include the low efficiency of improving entropy minimization for values N > 7 and the long time to determine prediction coefficients for large orders.

2.3. Prediction with Context Switching

Although most linear prediction methods with a backward adaptation of the predictive model have relatively high implementation complexity, there are other fast methods that use context-switching of the fixed predictive model. The context is a set of features that characterize the type of the closest neighborhood of the encoded pixel. Using contextual partitioning by detecting different types of neighborhoods (classes with distinct characteristics), we can individualize predictive models well-matched to neighborhood characteristics, increasing compression efficiency. In the most straightforward solutions, the predictors associated with a given context are fixed, and there is no need to determine them separately for each image. An example is the median adaptive predictor (MAP) proposed in the JPEG-LS algorithm based on the median edge detector (MED) context switching technique [14,32]. Several developments of this idea have emerged, including MED + , presented in the paper [33]. Still, the resulting improvement was insignificant compared to methods with more context, the principles of which will be shown in the following sections.

2.3.1. Gradient-Adjusted Predictor

The context-dependent prediction method with fixed coefficients of each model has been proposed as a primary prediction method in the CALIC algorithm [15]. It uses several neighboring pixels to determine the predicted value and allows the selection of one of seven contexts. The decision to choose the appropriate context is made based on the number d G A P = d h d v , where d h and d v are defined as the levels of the neighborhood gradients [15]
d h = | P ( 1 ) P ( 5 ) | + | P ( 2 ) P ( 3 ) | + | P ( 4 ) P ( 2 ) | d v = | P ( 1 ) P ( 3 ) | + | P ( 2 ) P ( 6 ) | + | P ( 4 ) P ( 9 ) | .
The range of d G A P values is divided into seven fields based on three threshold values T 1 = 8 , T 2 = 32 , T 3 = 80 (research conducted in the paper [34] suggests changing these thresholds to T 1 = 6 , T 2 = 25 , T 3 = 78 ). The following is presented as a pseudo-code Algorithm 1 for determining the k-th context number [15].
Algorithm 1 Algorithm for determining the context number
1: if  d G A P > T 3   then
2:   k 7
3: else if  d G A P < T 3   then
4:   k 6
5: else
6:   k 1
7:  else  d G A P > T 2  then
8:    k 5
9:  else if  d G A P > T 1  then
10:    k 4
11:  else if  d G A P < T 2  then
12:    k 3
13:  else if  d G A P < T 1  then
14:    k 2
15:  end if
16: end if
A modified version of the method with slightly higher efficiency, denoted hereafter as GAP + , was presented in the paper [35]. Each of the seven contexts was assigned an individual fixed linear predictor using two to five of the six neighboring pixels. Table 2 shows the prediction coefficients for each of the seven contexts.

2.3.2. Prediction Method with Gradient Weights

The gradient-based selection and weighting pixel predictor (GBSW) method presented in the paper [36] is based on directional gradients determined similarly to the GAP + method. After some of our improvements, four values are determined:
d w = ( 2 | P ( 1 ) P ( 5 ) | + 2 | P ( 2 ) P ( 3 ) | + 2 | P ( 3 ) P ( 7 ) | + 2 | P ( 2 ) P ( 4 ) | + | P ( 6 ) P ( 8 ) | + | P ( 6 ) P ( 9 ) | ) / 10 d n = ( 2 | P ( 6 ) P ( 2 ) | + 2 | P ( 1 ) P ( 3 ) | + 2 | P ( 3 ) P ( 8 ) | + 2 | P ( 4 ) P ( 9 ) | + | P ( 5 ) P ( 7 ) | + | P ( 7 ) P ( 11 ) | ) / 10 d n w = ( 2 | P ( 1 ) P ( 7 ) | + 2 | P ( 2 ) P ( 8 ) | + | P ( 3 ) P ( 11 ) | + | P ( 4 ) P ( 6 ) | ) / 6 d n e = ( 2 | P ( 5 ) P ( 3 ) | + 2 | P ( 2 ) P ( 9 ) | + | P ( 1 ) P ( 2 ) | + | P ( 3 ) P ( 6 ) | ) / 6 .
Predictors P ( 1 ) , P ( 2 ) , P ( 3 ) , and P ( 4 ) are associated with these values, respectively. Then, the two with the smallest values are determined from among these four gradients, which become the weighting coefficients of the predictive model. This is a linear combination of two of the four nearest neighbors, with the weights associated with the predictors via the cross method. For example, if the two smallest values are d w and d n , the prediction value is determined as follows:
x ^ n = d w · P ( 2 ) + d n · P ( 1 ) d w + d n .
We developed this method into GBSW + by adding a fifth gradient d G A P , the arithmetic mean of the four described by Formula (10). The fifth associated predictor is determined as the value of predictor GAP + . When the denominator in Formula (11) is 0, the predicted value is obtained from model GAP + .

2.3.3. Prediction Method with Multi-Context Switching

In addition to the previously mentioned methods, new proposals continue to emerge with varying numbers of contexts [16,37,38,39,40,41,42]. As a generalization of this concept, it is possible to design a fast function that determines a much larger number of contexts (e.g., 2048). For each, an individual predictor is calculated based on a learning image database. In the paper [28], we proposed this type of solution (Multi-ctx) with five different context determination functions built in parallel.
Thus, the predicted value of the encoded pixel x n was determined as a weighted average using five linear predictors of order 12 and the two fast predictors mentioned earlier with GAP + and MED + context switching:
x ^ n = 1 2 β 5 · j = 1 5 i = 1 12 b ( j , i ) · P ( i ) + β · ( x ^ G A P + + x ^ M E D + ) ,
with the value of β = 0.025 is chosen experimentally. After considering the adaptive arithmetic encoder (described in the paper [21]), both the Multi-ctx encoder and decoder offer relatively low complexity, similar to the CALIC method. Lennagrey’s image decoding time (512 × 512 pixels, using a 3.4 GHz i5 processor and an unoptimized version of Multi-ctx code) is 0.35 s.
Table 3 presents a comparison of entropy values for several fast prediction methods.

3. Scheme of the Proposed Solution

The reference point for designing the new solution is the aforementioned Multi-ctx method. Section 3.1 presents the proposed improvements over Multi-ctx, resulting in a reduction in decoding time. In contrast, Section 3.2 discusses the proposal of a fast algorithm for determining prediction coefficients using the non-MMSE method, which offers some trade-off between speed of operation and bit-average level.

3.1. Decoder Complexity Reduction

Obtaining further acceleration of the Multi-ctx decoder requires simplifying the Formula (12). In place of the MED + predictor, we propose the much more efficient GBSW + . At the same time, we omit the constant weight β = 0.025 , thus reducing the formula for the predicted value to a simple linear combination:
x ^ n = b 1 · x ^ G B S W + + b 2 · x ^ G A P + + j = 3 r b j · P ( j 2 ) .
Given the possibility of using a hardware implementation of the decoder with low power consumption and hardware resources, it is worth noting that this formula is feasible using fixed-point computing. The decoding process requires access to only three image rows (the currently decoded and two previous rows) in the case of r = 14 (we use the 12 closest pixels of P ( j ) ) and up to four image rows at r = 24 .
Since the proposed codec assumes the presence of time asymmetry between the encoder and decoder, a flexible approach is possible in determining the prediction order and in how to choose the prediction coefficients, which are placed in the file header. One approach may be to use ISA, but in most cases, the encoding time may not be acceptable. It is also possible to use the determination of prediction coefficients with the fast classic MMSE method or Algorithm 2 described in Section 3.2, which offers some compromise between the speed of operation and the bit-average level L a v g .
Unchanged from Multi-ctx is the context-dependent correction of the cumulative prediction error (module CDCCR—Context-Dependent Constant Component Removing—in Figure 5 showing the block coding scheme proposed in this work). For a detailed description of CDCCR, see paper [28]. Similar solutions were previously used in codecs, such as JPEG-LS and CALIC. Removing the constant C m i x component associated with one of the 1024 contexts requires a slight modification of Formula (1) to the following form:
e n = x n x ^ n + C m i x .
Another improvement over Multi-ctx is using a newer prediction error encoder, a combination of an adaptive variation of the Golomb code and a binary arithmetic encoder (see paper [25] for details).
The use of these modifications, despite the lack of code optimizations (such as the introduction of fixed-point operations in place of floating-point operations or the conversion of the code from C++ to assembler), made it possible to reduce the decoding time of a Lennagrey image (with dimensions of 512 × 512 pixels) using an i5 3.4 GHz processor from 0.35 s to 0.245 s (with r = 24 ) for a Multi-ctx decoder. This represents a 30% reduction in time. At the same time, the bit average decreased, even when the prediction order in the encoder was reduced to r = 14 . The fast classical MMSE approach was used to determine the prediction coefficients instead of ISA or Algorithm 2. A detailed comparison of bit averages with other codecs known from the literature will be discussed in Section 4.

3.2. Algorithm for Fast Determination of Prediction Coefficients Using the Non-MMSE Method

As discussed in Section 2.2, Algorithm ISA is characterized by a too-long coding time at high prediction orders. In the literature on determining prediction coefficients using non-MMSE methods, one also encounters attempts to use, for example, genetic algorithms. However, for instance, in works such as [46,47,48], such algorithms were designed for low-order prediction models ( r = 3 and r = 4 ). Our experiments indicate that it is more difficult with a high prediction order ( r > 10 ) to obtain a significantly faster convergence of linear prediction model construction in this way than is the case when using ISA. Thus, there was a need to design a compromising solution that could determine linear predictor coefficients quickly, allowing lower entropy than the classic MMSE approach with forward adaptation. To this end, to select the final prediction model, it was necessary to take advantage of the possibilities offered by methods with backward transformation, which can iteratively improve compression efficiency.
The most common prediction coefficient adaptation methods use least mean square (LMS). Regarding image coding, it is among the simplest but, at the same time, the least efficient methods, even in the normalized version of LMS (NLMS). This is due to two reasons. First, a problematic issue is the selection of the right learning rate μ with different levels of data input variability. In the few works using LMS in lossless image compression, for this reason, the value of μ is set relatively low, such as 2 23 2 22 [49], and this results in slow convergence to the expected results. Second, most of the NLMS improvement methods known from the literature, including the selection of a locally variable μ value, are optimized for time series in which we have a one-dimensional input string. This also applies to more computationally complex methods such as RLS.
In contrast, images offer correlations between adjacent pixels in two dimensions. One can largely overcome these difficulties by introducing transformations that use, for example, differential data of neighboring pixel values [50]. This reduces the input signal’s dynamics while increasing the predictive model’s learning speed. Various input data transformations are often used in the literature to achieve faster convergence of adaptive methods [51]. For this purpose, a vector is introduced:
A = T · X ,
where T is the transformation matrix, the vector X = [ P ( 1 ) , P ( 2 ) , , P ( r ) ] T contains the neighborhood pixels of the currently encoded pixel x n . The transformed data vector Y is used to calculate the predicted value based on the prediction model included in vector A :
x ^ n = A · Y .
Typically, the matrix T is a square matrix of size r × r , where r is the most commonly defined power of two; for example, the Walsh–Hadamard matrix at r = 2 2 looks like this:
T = 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
In this case (as in DCT), the first element of vector Y is proportional to the arithmetic mean of vector X , and the sum of the values in the other rows of matrix T is zero. In the case of lossless image coding, this first row can be dispensed with, and at the same time, it can be noted that matrix T does not have to be square. Indeed, there are more rows composed of, for example, the numbers 1 , 0 , 1 , in which the sum is zero. The following formula determines their number:
k = 0 r 2 r k · r k k = k = 0 r 2 r ! k ! · k ! · ( r 2 k ) ! ,
where the parameter k determines in such a matrix T the number of pairs of numbers 1 , 1 and ( r 2 k ) is the number of zeros in a row of the matrix. For example, with r = 4 , we have 19 rows. Omitting the row of the matrix T consisting of only zeros, we obtain the following matrix:
T T = 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 1 0 1 1 0 1 0 1 1 1 1 0 1 0 1 1 0 1 1 1 0 1 0 1 1 0 1 1 0 1 1 0 1 0 1 1 ,
in which a certain symmetry can be observed, and the other half can thus be rejected for this reason. Then, after using Formula (15), we obtain a vector Y = [ y 1 , y 2 , , y 9 ] T of the data after transformation with nine elements (in general with r A elements) and, consequently, also a vector of nine prediction coefficients A = [ a 1 , a 2 , , a 9 ] . By using the relationships between the data in the Y vector and the data in the X vector, there is a chance of faster convergence by the adaptive LMS-type methods. At the same time, it should be noted that after determining the final prediction model A , it is possible to obtain a prediction model B of order r using an inverse transformation, as will be shown later in this section with a practical example. Due to the rapidly increasing number of rows of matrix T along with the prediction row, in the practical implementation, we decided to use only the rows of matrix T in which there is only one pair of non-zero values 1 , 1 . This choice boils down to the fact that elements y j consist of differences between two pixels. In practice, we reduce this even further to pixels that are immediately adjacent to each other (and available in the decoding procedure); for example, the nearest neighbors of pixel P ( 1 ) are P ( 2 ) , P ( 3 ) , P ( 5 ) , and P ( 7 ) . Then, through experiments, we select (as in work [50]) a subset of these differences that work well with the prediction coefficient adaptation method. Taking into account the prediction model proposed in Formula (13), we obtain an input data vector of the form X = [ x ^ G B S W + , x ^ G A P + , P ( 1 ) , P ( 2 ) , , P ( r 2 ) ] T . Assuming that we are initializing the vector A = [ 0 , 0 , , 0 ] , modify Formula (16) to the form:
x ^ n = P ( 1 ) + A · Y .
We designed two sets of transformations for orders r = 14 ( r A = 27 ) and r = 24 ( r A = 43 ) , respectively. Table 4 shows the experimentally selected values of the Y vector for r = 14 ( j 27 ) and for r = 24 ( j 43 ) .
In designing Algorithm 2, we used a modified form of the activity-level classification model (ALCM + ), which is closer to MAE minimizing than to MSE, as is the case with NLMS, as a means of adaptively determining the prediction coefficients of A . In the original, ALCM operated on fifth- or sixth-order linear prediction models [52]. After encoding the next pixel, only a select two of these several coefficients were adapted (by a constant value of μ = 1 / 256 ). In the solution proposed here (see Algorithm 2), as many as eight of the r A of the a j coefficients of vector A are adapted for each successively encoded pixel. For this purpose, four of the lowest and highest values from the Y vector are determined. We denote them as the four smallest values, P ( q 1 ) P ( q 2 ) P ( q 3 ) P ( q 4 ) , and the four largest values, P ( p 4 ) P ( p 3 ) P ( p 2 ) P ( p 1 ) , respectively. Then, assuming P ( q 1 ) < P ( p 2 ) , the adaptation presented in Algorithm 2 is performed.
Algorithm 2 Prediction coefficients adaptation
1: for all Pixel x n  do calculate the estimated value based on Formula (20)
2:  if  x ^ n < x n  then
3:    a p k ( n + 1 ) a p k ( n ) + μ k , for k = 1 , 2 , 3 , 4
4:    a q k ( n + 1 ) a q k ( n ) μ k , for k = 1 , 2 , 3 , 4
5:  else if  x ^ n > x n  then
6:    a p k ( n + 1 ) a p k ( n ) μ k , for k = 1 , 2 , 3 , 4
7:    a q k ( n + 1 ) a q k ( n ) + μ k , for k = 1 , 2 , 3 , 4
8:  end if
9: end if
Learning coefficients are determined as follows:
μ k = α k · max 2 γ ( t ) ; μ 0 ,
where
μ 0 = | e n | δ ( t ) · k = 1 4 α k · P ( p k ) P ( q k ) ,
where α k = 1 , 0.75 , 0.5 , 0.5 , and the values of γ ( t ) and δ ( t ) change in successive iterations. This is because the entire image is scanned five times, and in each successive iteration, the influence of the learning rate should be reduced (according to the principle from coarse to fine-tuning). Experimentally selected parameters are γ ( t ) = 10 , 12 , 14 , 15 , 17 , δ ( t ) = 250 , 1200 , 5000 , 30000 , 100000 , respectively, for t = 1 , 2 , , 5 . Thus, we obtain (regardless of the prediction order) the final form of vector A after only five initial image encodings, which we transform into vector B . This requires Table 5 for r = 14 or Table 6 for r = 24 , which contains a set of transformations of coefficients from the domain of vector A to vector B . Thus, after the adaptation stage, we can use the target Formula (13) for the predicted value in the encoder and in the decoder. The final step is to reduce, using Formula (3), the accuracy of the prediction coefficients’ notation to N = 12 bits after the decimal point, after which we perform the full final encoding according to the scheme shown in Figure 5. In the case of the Algorithm 2 implementation, the total time to determine the prediction coefficients and encode the Lennagrey image is 1.515 s with r = 14 and 1.925 s with r = 24 (decoding times are 0.24 and 0.245 s, respectively).

3.3. Features of the Proposed Solution

In Figure 5, we have shown a block diagram of the encoder proposed here (with four separate stages), in which the data processing process proceeds as follows (Algorithm 3):
Algorithm 3 Steps of coder data processing
1: For each successively encoded pixel x n :
2: Calculate the predicted value (Formula (13)—stage 1) and the prediction error e n after considering the context-dependent component of the constant C m i x (Formula (14)—stage 2);
3: Convert the prediction error e n to a bit stream using an adaptive Golomb encoder (stage 3);
4: Encode the bit stream from stage 3 using an adaptive binary arithmetic encoder;
5: Return to step 2 if there are still pixels to code.
The decoding process, in turn, is described by Algorithm 4.
Algorithm 4 Steps of decoder data processing
1: For each successively encoded pixel x n :
2: Decode the bit sequence from the input using an adaptive binary arithmetic encoder, obtaining the Golomb code word and prediction error e n after considering the context-dependent component of the constant C m i x (Formula (14)—stage 2);
3: Convert the Golomb word to a prediction error value e n ;
4: Calculate the predicted value (Formula (13)) and C m i x , and then add these values to e n , obtaining the decoded pixel value x n ;
5: Return to step 2 if there are still pixels to decode.
In this work, we focus on analyzing the details of stage 1 (stages 2–4 are discussed in the paper [25,28]). Section 2.2 showed that non-MMSE minimization in a simple predictive model achieves higher compression efficiency than the classical approach. The coding and decoding system was designed to allow decisions on which approach to determining prediction coefficients to use (MMSE, ISA, or type ALCM + adaptation). As a compromise solution in the final version of the encoder, we proposed a predictor of order r = 24 and the calculation of prediction coefficients in an adaptive manner (ALCM + ), where, in five iterations of the initial encoding, an online predictive model is tuned (see Algorithm 2). It should be noted here that there is no need to use entropy coding stages at the initial stage (stages 3 and 4 in Figure 5). In addition, the time periods for calculating prediction coefficients (in the ALCM + version) and encoding and decoding times are linearly dependent on the number of image pixels.

4. Summary

4.1. Experimental Results

Table 7 compares bit averages (for two sets of standard test images, the first consisting of 9 images and the second of 45) obtained by the proposed method using three different approaches to determining prediction coefficients. The first set is the most commonly used in papers on lossless image compression (Figure 6). The second set includes the first set—the whole dataset is available at [53]. The final compression method proposed in this work was determined to be the one in which Algorithm 2 was used to determine the prediction coefficients with a prediction order of r = 24 .
Table 8 compares the bit averages (for nine standard test images) of the proposed solution with those obtained by several methods with fast encoding and decoding times known from the literature. The proposed solution offers a 7.9% lower bit average relative to the popular JPEG-LS codec. It also presents the results of the high-performance LA-OLS method [25], characterized by symmetric, significantly longer encoding and decoding times than the other solutions. Although the bit average for the LA-OLS method is lower than when using the technique presented in this work (using Algorithm 2), the Lennagrey image encoding time of 5.86 s (at 512 × 512 pixel resolution using i5 3.4 GHz processor) using LA-OLS is more than three times longer. The decoding time is as much as 23.9 times longer. In addition, compared to the relatively fast Multi-ctx method, the solution proposed here offers a 30% shorter decoding time (amounting to 0.245 s with r = 24 ) while having a lower bit average. The decoding time of the solutions compared here depends linearly on the number of pixels of the image being decoded, reflecting the implementation complexity of the decoding process. These results refer to a non-optimized implementation in C++ (without parallelization and use of GPU resources). Therefore, decoding time, although shorter than LA-OLS and Multi-ctx, is inferior to fully optimized solutions (such as CALIC and JPEG-LS), where decoding time is measured in milliseconds. It should be noted here that the decoding algorithm, due to its simplicity, lends itself to easy hardware implementation.

4.2. Conclusions

The analysis of solutions for lossless image coding presented in the introduction leads to the conclusion that the choice of compression method depends on user preferences. Based on the assumption that we usually encode an image once and decode it multiple times, we should care about a relatively fast decoding process. For this purpose, one should use time-asymmetric predictive methods with forward adaptation with adjustable implementation complexity in the encoding process. To achieve high compression efficiency, use linear or nonlinear prediction at the data modeling stage and, for example, arithmetic coding of prediction errors.
In this work, a method for the lossless compression of images with a fast decoding time and flexible selection of encoder parameters is presented, proposing, in addition to the classical method of determining prediction coefficients based on minimizing the mean square error, two other algorithms of the non-MMSE type. The proposed authors’ algorithm (based on ALCM + type adaptation) for determining prediction coefficients by the non-MMSE method is characterized by a complexity linearly dependent on the number of pixels of the encoded image (unlike, for example, the simplex method, where in extreme cases exponential complexity can be encountered). In the proposed solution, the data modeling stage was based on linear and nonlinear prediction, and a simple block for removing the context-dependent constant component was used. The prediction errors produced after applying the prediction are subjected to two-stage compression using an adaptive Golomb code and a binary arithmetic code.

Author Contributions

Conceptualization, G.U.; methodology, G.U.; software, G.U.; validation, G.U. and M.Ł.; formal analysis, G.U. and M.Ł.; investigation, G.U. and M.Ł.; resources, G.U.; data curation, G.U.; writing—original draft preparation, G.U. and M.Ł.; writing—review and editing, G.U. and M.Ł.; visualization, G.U. and M.Ł.; supervision, G.U.; project administration, G.U.; funding acquisition, G.U. and M.Ł. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not aplicable.

Data Availability Statement

The datasets for this study are available upon request from the corresponding author.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Kassim, A.; Yan, P.; Lee, W.S.; Sengupta, K. Motion compensated lossy-to-lossless compression of 4-D medical images using integer wavelet transforms. IEEE Trans. Inf. Technol. Biomed. 2005, 9, 132–138. [Google Scholar] [CrossRef] [PubMed]
  2. Sanchez, V.; Nasiopoulos, P.; Abugharbieh, R. Efficient 4D motion compensated lossless compression of dynamic volumetric medical image data. In Proceedings of the 2008 IEEE International Conference on Acoustics, Speech and Signal Processing, Las Vegas, NV, USA, 31 March–4 April 2008; pp. 549–552. [Google Scholar] [CrossRef]
  3. Scharcanski, J. Lossless and Near-Lossless Compression for Mammographic Digital Images. In Proceedings of the 2006 International Conference on Image Processing, Las Vegas, NA, USA, 8–11 October 2006; pp. 2253–2256. [Google Scholar] [CrossRef]
  4. Ström, J.; Cosman, P.C. Medical image compression with lossless regions of interest. Signal Process. 1997, 59, 155–171. [Google Scholar] [CrossRef] [Green Version]
  5. Xie, X.; Li, G.; Li, D.; Zhang, C.; Wang, Z. A new near-lossless image compression algorithm suitable for hardware design in wireless endoscopy system. In Proceedings of the IEEE International Conference on Image Processing 2005, Genova, Italy, 14 September 2005; Volume 1, pp. 1–1125. [Google Scholar] [CrossRef]
  6. Chen, X.; Canagarajah, C.N.; Vitulli, R.; Nunez-Yanez, J.L. Lossless Compression for Space Imagery in a Dynamically Reconfigurable Architecture. In Proceedings of the Reconfigurable Computing: Architectures, Tools and Applications; Woods, R., Compton, K., Bouganis, C., Diniz, P.C., Eds.; Springer: Berlin/Heidelberg, Germany, 2008; pp. 336–341. [Google Scholar]
  7. Image Data Compression. Green Book. In Informational Report CCSDS 120.1-G-3; The Consultative Committee for Space Data Systems: Washington, DC, USA, 2021.
  8. Andriani, S.; Calvagno, G.; Erseghe, T.; Mian, G.; Durigon, M.; Rinaldo, R.; Knee, M.; Walland, P.; Koppetz, M. Comparison of lossy to lossless compression techniques for digital cinema. In Proceedings of the 2004 International Conference on Image Processing, ICIP ’04, Singapore, 24–27 October 2004; Volume 1, pp. 513–516. [Google Scholar] [CrossRef]
  9. Sayood, K. (Ed.) Introduction to Data Compression, 5th ed.; Morgan Kaufmann: Burlington, MA, USA, 2018. [Google Scholar]
  10. Marcellin, M.; Gormish, M.; Bilgin, A.; Boliek, M. An overview of JPEG-2000. In Proceedings of the Proceedings DCC 2000. Data Compression Conference, Snowbird, UT, USA, 28–30 March 2006; pp. 523–541. [Google Scholar] [CrossRef]
  11. Said, A.; Pearlman, W. A new, fast, and efficient image codec based on set partitioning in hierarchical trees. IEEE Trans. Circuits Syst. Video Technol. 1996, 6, 243–250. [Google Scholar] [CrossRef]
  12. Kiely, A.; Klimesh, M. The ICER Progressive Wavelet Image Compressor. In Proceedings of the IPN Progress Report; 2003; pp. 1–46. Available online: https://ipnpr.jpl.nasa.gov/progress_report/42-155/155J.pdf (accessed on 12 December 2022).
  13. Standard CCSDS 121.0-B-3; Lossless Data Compression. Blue Book. The Consultative Committee for Space Data Systems: Washington, DC, USA, 2020.
  14. Weinberger, M.; Seroussi, G.; Sapiro, G. The LOCO-I lossless image compression algorithm: Principles and standardization into JPEG-LS. IEEE Trans. Image Process. 2000, 9, 1309–1324. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  15. Wu, X.; Memon, N. CALIC—A Context Based Adaptive Lossless Image Codec. In Proceedings of the 1996 IEEE International Conference on Acoustics, Speech, and Signal Processing Conference Proceedings, Atlanta, GA, USA, 9 May 1996; Volume 4, pp. 1890–1893. [Google Scholar] [CrossRef]
  16. Topal, C.; Gerek, O.N. Pdf sharpening for multichannel predictive coders. In Proceedings of the 2006 14th European Signal Processing Conference, Florence, Italy, 4–8 September 2006; pp. 1–4. [Google Scholar]
  17. Kau, L.J.; Lin, Y.P.; Lin, C.T. Lossless image coding using adaptive, switching algorithm with automatic fuzzy context modelling. Vis. Image Signal Process. IEE Proc. 2006, 153, 684–694. [Google Scholar] [CrossRef]
  18. Marusic, S.; Deng, G. A neural network based adaptive non-linear lossless predictive coding technique. In Proceedings of the ISSPA ’99. Proceedings of the Fifth International Symposium on Signal Processing and its Applications (IEEE Cat. No. 99EX359), Brisbane, QLD, Australia, 22–25 August 1999; Volume 2, pp. 653–656. [Google Scholar] [CrossRef]
  19. Marusic, S.; Deng, G. Adaptive prediction for lossless image compression. Signal Process. Image Commun. 2002, 17, 363–372. [Google Scholar] [CrossRef]
  20. Takizawa, K.; Takenouchi, S.; Aomori, H.; Otake, T.; Tanaka, M.; Matsuda, I.; Itoh, S. Lossless image coding by cellular neural networks with minimum coding rate learning. In Proceedings of the 2011 20th European Conference on Circuit Theory and Design (ECCTD), Linkoping, Sweden, 29–31 August 2011; pp. 33–36. [Google Scholar] [CrossRef]
  21. Ulacha, G.; Stasinski, R. Context based lossless coder based on RLS predictor adaption scheme. In Proceedings of the 2009 16th IEEE International Conference on Image Processing (ICIP), Cairo, Egypt, 7–10 November 2009; pp. 1917–1920. [Google Scholar] [CrossRef]
  22. Wu, X.; Barthel, E.; Zhang, W. Piecewise 2D autoregression for predictive image coding. In Proceedings of the Proceedings 1998 International Conference on Image Processing. ICIP98 (Cat. No.98CB36269), Chicago, IL, USA, 7 October 1998; Volume 3, pp. 901–904. [Google Scholar] [CrossRef]
  23. Ye, H.; Deng, G.; Devlin, J. Adaptive linear prediction for lossless coding of greyscale images. In Proceedings of the Proceedings 2000 International Conference on Image Processing (Cat. No. 00CH37101), Vancouver, BC, Canada, 10–13 September 2000; Volume 1, pp. 128–131. [Google Scholar] [CrossRef]
  24. Ye, H.; Deng, G.; Devlin, J. Least squares approach for lossless image coding. In Proceedings of the ISSPA ’99. Proceedings of the Fifth International Symposium on Signal Processing and its Applications (IEEE Cat. No.99EX359), Brisbane, QLD, Australia, 22–25 August 1999; Volume 1, pp. 63–66. [Google Scholar] [CrossRef]
  25. Ulacha, G.; Stasinski, R.; Wernik, C. Extended Multi WLS Method for Lossless Image Coding. Entropy 2020, 22, 919. [Google Scholar] [CrossRef]
  26. Ye, H. A Study of Lossless Compression of Greyscale Images. Ph.D. Thesis, La Trobe University, Melbourne, Australia, 2002. [Google Scholar]
  27. Unno, K.; Kameda, Y.; Matsuda, I.; Itoh, S.; Naito, S. Lossless Image Coding Exploiting Local and Non-local Information via Probability Model Optimization. In Proceedings of the 2019 27th European Signal Processing Conference (EUSIPCO), A Coruña, Spain, 2–6 September 2019; pp. 1–5. [Google Scholar] [CrossRef]
  28. Ulacha, G.; Stasinski, R. A New Fast Multi-Context Method for Lossless Image Coding. In Proceedings of the 2018 International Conference on Sensors, Signal and Image Processing; Association for Computing Machinery: New York, NY, USA, 2018; pp. 69–72. [Google Scholar] [CrossRef]
  29. Hashidume, Y.; Morikawa, Y. Lossless image coding based on minimum mean absolute error predictors. In Proceedings of the SICE Annual Conference 2007, Takamatsu, Japan, 17–20 September 2007; pp. 2832–2836. [Google Scholar] [CrossRef]
  30. Wang, X.; Wu, X. On Design of Linear Minimum-Entropy Predictor. In Proceedings of the 2007 IEEE 9th Workshop on Multimedia Signal Processing, Chania, Crete, Greece, 1–3 October 2007; pp. 199–202. [Google Scholar] [CrossRef]
  31. Ulacha, G.; Stasinski, R. Paths to future image lossless coding. In Proceedings of the Proceedings ELMAR-2012, Zadar, Croatia, 12–14 September 2012; pp. 63–66. [Google Scholar]
  32. Memon, N.; Wu, X. Recent Developments in Context-Based Predictive Techniques for Lossless Image Compression. Comput. J. 1997, 40, 127–136. [Google Scholar] [CrossRef]
  33. Jiang, J.; Grecos, C. Towards an improvement on prediction accuracy in JPEG-LS. Opt. Eng. 2002, 41, 335–341. [Google Scholar] [CrossRef]
  34. Ulacha, G.; Stasinski, R. On context-based predictive techniques for lossless image compression. In Proceedings of the IWSSIP 2005—Proceedings of 12th International Workshop on Systems, Signals and Image Processing, Chalkida, Greece, 22–24 September 2005; pp. 345–348. [Google Scholar]
  35. Wang, H.; Zhang, D. A linear edge model and its application in lossless image coding. Signal Process. Image Commun. 2004, 19, 955–958. [Google Scholar] [CrossRef]
  36. Knezovic, J.; Kovac, M. Gradient based selective weighting of neighboring pixels for predictive lossless image coding. In Proceedings of the 25th International Conference on Information Technology Interfaces, Cavtat, Croatia, 16–19 June 2003; pp. 483–488. [Google Scholar] [CrossRef]
  37. Avramović, A. Lossless compression of medical images based on gradient edge detection. In Proceedings of the 2011 19th Telecommunications Forum (TELFOR) Proceedings of Papers, Belgrade, Serbia, 22–24 November 2011; pp. 1199–1202. [Google Scholar] [CrossRef]
  38. Chang, C.C.; Chen, G.I. Enhancement algorithm for nonlinear context-based predictors. Vis. Image Signal Process. IEE Proc. 2003, 150, 15–19. [Google Scholar] [CrossRef]
  39. Seyed Danesh, A.; Moradi Rad, R.; Attar, A. A novel predictor function for lossless image compression. In Proceedings of the 2010 2nd International Conference on Advanced Computer Control, Shenyang, China, 27–29 March 2010; Volume 2, pp. 527–531. [Google Scholar] [CrossRef]
  40. Estrakh, D.; Mitchell, H.; Schaefer, P.; Mann, Y.; Peretz, Y. “Soft” median adaptive predictor for lossless picture compression. Signal Process. 2001, 81, 1985–1989. [Google Scholar] [CrossRef]
  41. Itani, A.; Das, M. Adaptive Switching Linear Predictor for Lossless Image Compression. In Proceedings of the Advances in Visual Computing; Bebis, G., Boyle, R., Koracin, D., Parvin, B., Eds.; Springer: Berlin/Heidelberg, Germany, 2005; pp. 718–722. [Google Scholar]
  42. Karimi, N.; Samavi, S.; Shirani, S. Lossless compression of high-throughput RNAi images. In Proceedings of the 10th IEEE International Conference on Information Technology and Applications in Biomedicine, Corfu, Greece, 3–5 November 2010; pp. 1–4. [Google Scholar] [CrossRef]
  43. Yu, T.H. A fuzzy logic-based predictor for predictive coding of images. IEEE Trans. Fuzzy Syst. 1998, 6, 153–162. [Google Scholar] [CrossRef]
  44. Rosa Lopes Nunes, P.R. Segmented optimal linear prediction applied to lossless image coding. In Proceedings of the 2006 International Telecommunications Symposium, Taipei, Taiwan, 21–23 June 2006; pp. 524–528. [Google Scholar] [CrossRef]
  45. Seemann, T.; Tischer, P. Generalized locally adaptive DPCM. In Department of Computer Science Technical Report CS97/301; Monash University: Melbourne, Australia, 1997; pp. 1–15. [Google Scholar]
  46. Salami, M.; Iwata, M.; Higuchi, T. Lossless image compression by evolvable hardware. In Proceedings of the Fourth European Conference on Artificial Life, Brighton, UK, 28–31 July 1997; pp. 407–416. [Google Scholar]
  47. Takamura, S.; Matsumura, M.; Yashima, Y. A Study on an Evolutionary Pixel Predictor and Its Properties. In Proceedings of the 16th IEEE International Conference on Image Processing, Cairo, Egypt, 7–10 November 2009; pp. 1901–1904. [Google Scholar]
  48. Wu, Y.G. Differential pulse code modulation predictor design procedure using a genetic algorithm. Opt. Eng. 2003, 42, 1649–1655. [Google Scholar] [CrossRef]
  49. Boulgouris, N.; Zaharos, S.; Strintzis, M. Adaptive decorrelation and entropy coding for context-based lossless image compression. In Proceedings of the 1st Balkan Conference on Signal Processing, Communications, Circuits, and Systems, Istanbul, Turkey, 1–4 June 2000. [Google Scholar]
  50. Strutz, T. Context-based adaptive linear prediction for Lossless Image Coding. In Proceedings of the 4th International ITG Conference on Source and Channel Coding, Berlin, Germany, 28–30 January 2002; pp. 105–109. [Google Scholar]
  51. Deng, G. Transform domain LMS-based adaptive prediction for lossless image coding. Signal Process. Image Commun. 2002, 17, 219–229. [Google Scholar] [CrossRef]
  52. Sayood, K. Lossless Compression Handbook; Communications, Networking and Multimedia; Elsevier Science: San Diego, CA, USA, 2002. [Google Scholar]
  53. Ulacha, G. Dataset of 45 Images. 2022. Available online: https://kakit.zut.edu.pl/fileadmin/Test_Images.zip (accessed on 29 December 2022).
  54. Seemann, T.; Tischer, P.; Meyer, B. In Proceedings of the Picture Coding Symposium, Santa Barbara, CA, USA, 26–29 October 1997; pp. 147–151.
Figure 1. Neighborhood pixel numbering.
Figure 1. Neighborhood pixel numbering.
Entropy 25 00156 g001
Figure 2. Entropy as a function of the parameter M for the Noisesquare image encoded with the linear predictor of the order r = 8 .
Figure 2. Entropy as a function of the parameter M for the Noisesquare image encoded with the linear predictor of the order r = 8 .
Entropy 25 00156 g002
Figure 3. Average entropy value (for the set of 45 test images) as a function of the prediction order obtained using four minimization criteria: MMSE ( M = 2 )—marked with diamonds; MMAE ( M = 1 )—marked with squares; Minkowski ( M = 0.75 )—marked with triangles; entropy function H—marked with circles.
Figure 3. Average entropy value (for the set of 45 test images) as a function of the prediction order obtained using four minimization criteria: MMSE ( M = 2 )—marked with diamonds; MMAE ( M = 1 )—marked with squares; Minkowski ( M = 0.75 )—marked with triangles; entropy function H—marked with circles.
Entropy 25 00156 g003
Figure 4. The average value of entropy as a function of N fractional bits of precision of the prediction coefficients (for the set of 45 images at r = 14 ) obtained by two methods: classic MMSE—dashed line, ISA based on Formula (6) at M = 2 —solid line.
Figure 4. The average value of entropy as a function of N fractional bits of precision of the prediction coefficients (for the set of 45 images at r = 14 ) obtained by two methods: classic MMSE—dashed line, ISA based on Formula (6) at M = 2 —solid line.
Entropy 25 00156 g004
Figure 5. Block diagram of the proposed cascade coding.
Figure 5. Block diagram of the proposed cascade coding.
Entropy 25 00156 g005
Figure 6. A base test set of nine pictures (Ballon, Barb, Barb2, Board, Boats, Girl, Gold, Hotel, Zelda).
Figure 6. A base test set of nine pictures (Ballon, Barb, Barb2, Board, Boats, Girl, Gold, Hotel, Zelda).
Entropy 25 00156 g006
Table 1. Number of tests in brute force method with N = 5 , r 5 .
Table 1. Number of tests in brute force method with N = 5 , r 5 .
r = 2 r = 3 r = 4 r = 5
N B F 2 7 2 14 2 21 2 28
Reduced number of tests9511,1351,265,346148,311,811
Percent reduced number of tests relative to N B F 74.21967.96360.33655.251
Table 2. The set of prediction coefficients corresponding to each context of the method GAP + .
Table 2. The set of prediction coefficients corresponding to each context of the method GAP + .
Coeff. \k1234567
b 1 1/27/85/43/81/420
b 2 1/23/81/47/85/402
b 3 −1/4−3/16−1/8−3/16−1/800
b 4 1/43/161/83/161/800
b 5 0−1/4−1/200−10
b 6 000−1/4−1/20−1
Table 3. Comparison of entropy values of different prediction methods.
Table 3. Comparison of entropy values of different prediction methods.
ImageMEDMED + GAP + FBLP + [43]SOLP [44]GBSW + Blend-7 [45]Multi-ctx
Balloon3.1203.1112.9973.0192.9913.0232.932.861
Barb5.2045.2015.0094.9185.0224.9424.904.793
Barb25.1815.1704.9985.0504.9765.0345.024.910
Board3.9473.9353.8923.9113.7943.7683.813.732
Boats4.3074.2954.2294.3064.2204.2274.164.125
Girl4.2074.1894.0444.0864.0363.9613.913.891
Gold4.7164.7154.6994.7194.6994.7854.654.609
Hotel4.7324.7274.6724.6704.6244.5824.584.519
Zelda4.1134.1083.9364.0243.9383.9303.903.905
Average4.3924.3834.2754.3004.2564.2504.2074.149
Table 4. A set of transformations of vector X elements into vector Y .
Table 4. A set of transformations of vector X elements into vector Y .
j y j j y j j y j
1 P ( 1 ) P ( 2 ) 16 P ( 10 ) P ( 4 ) 31 P ( 9 ) P ( 17 )
2 P ( 1 ) P ( 3 ) 17 P ( 7 ) P ( 11 ) 32 P ( 14 ) P ( 16 )
3 P ( 2 ) P ( 3 ) 18 P ( 4 ) P ( 12 ) 33 P ( 10 ) P ( 18 )
4 P ( 1 ) P ( 5 ) 19 P ( 4 ) P ( 9 ) 34 P ( 15 ) P ( 19 )
5 P ( 2 ) P ( 6 ) 20 x ^ G A P + P ( 4 ) 35 P ( 11 ) P ( 20 )
6 P ( 1 ) x ^ G B S W + 21 P ( 6 ) P ( 8 ) 36 P ( 12 ) P ( 22 )
7 P ( 4 ) P ( 2 ) 22 P ( 6 ) P ( 9 ) 37 P ( 11 ) P ( 15 )
8 P ( 3 ) P ( 6 ) 23 P ( 10 ) P ( 9 ) 38 P ( 8 ) P ( 16 )
9 P ( 4 ) P ( 6 ) 24 P ( 10 ) P ( 12 ) 39 P ( 7 ) P ( 15 )
10 P ( 1 ) P ( 7 ) 25 P ( 9 ) P ( 12 ) 40 P ( 7 ) P ( 13 )
11 P ( 2 ) x ^ G B S W + 26 P ( 8 ) P ( 11 ) 41 P ( 8 ) P ( 20 )
12 P ( 3 ) P ( 7 ) 27 P ( 4 ) x ^ G B S W + 42 P ( 11 ) P ( 19 )
13 x ^ G A P + P ( 1 ) 28 P ( 5 ) P ( 13 ) 43 P ( 12 ) P ( 21 )
14 P ( 2 ) P ( 8 ) 29 P ( 6 ) P ( 14 )
15 P ( 2 ) P ( 9 ) 30 P ( 13 ) P ( 15 )
Table 5. A set of transformations of coefficients from the domain of vector A to the vector B at r = 14 .
Table 5. A set of transformations of coefficients from the domain of vector A to the vector B at r = 14 .
j b j j b j
1 a 6 a 11 a 27 8 a 5 a 8 a 9 + a 21 + a 22
2 a 13 + a 20 9 a 10 a 12 + a 17
3 1 + a 1 + a 2 + a 4 + a 6 + a 10 a 13 10 a 14 a 21 + a 26
4 a 1 + a 3 + a 5 a 7 + a 11 + a 14 + a 15 11 a 15 a 19 a 22 a 23 + a 25
5 a 2 a 3 + a 8 + a 12 12 a 16 + a 23 + a 24
6 a 7 + a 9 a 16 + a 18 + a 19 a 20 + a 27 13 a 17 a 26
7 a 4 14 a 18 a 24 a 25
Table 6. A set of transformations of coefficients from the domain of vector A to the vector B at r = 24 .
Table 6. A set of transformations of coefficients from the domain of vector A to the vector B at r = 24 .
j b j j b j
1 a 6 a 11 a 27 13 a 17 a 26 + a 35 + a 37 + a 42
2 a 13 + a 20 14 a 18 a 24 a 25 + a 36 + a 43
3 1 + a 1 + a 2 + a 4 + a 6 + a 10 a 13 15 a 28 + a 30 a 40
4 a 1 + a 3 + a 5 a 7 + a 11 + a 14 + a 15 16 a 29 + a 32
5 a 2 a 3 + a 8 + a 12 17 a 30 + a 34 a 37 a 39
6 a 7 + a 9 a 16 + a 18 + a 19 a 20 + a 27 18 a 32 a 38
7 a 4 + a 28 19 a 31
8 a 5 a 8 a 9 + a 21 + a 22 + a 29 20 a 33
9 a 10 a 12 + a 17 + a 39 + a 40 21 a 34 a 42
10 a 14 a 21 + a 26 + a 38 + a 41 22 a 35 a 41
11 a 15 a 19 a 22 a 23 + a 25 + a 31 23 a 43
12 a 16 + a 23 + a 24 + a 33 24 a 36
Table 7. Comparison of bit averages (for two sets of standard test images) obtained by the proposed method with different algorithms for determining prediction coefficients.
Table 7. Comparison of bit averages (for two sets of standard test images) obtained by the proposed method with different algorithms for determining prediction coefficients.
ImageMMSE r = 14 Algorithm 2 r = 14 ISA r = 14 MMSE r = 24 Algorithm 2 r = 24 ISA r = 24
Balloon2.7422.7482.7322.7332.7332.720
Barb4.2384.2384.2294.2214.2114.196
Barb24.4164.4214.4114.4064.4014.393
Board3.4463.4493.4363.4363.4253.417
Boats3.7173.7113.7033.7073.6963.688
Girl3.6123.6243.6043.6093.6123.595
Gold4.3104.3044.3024.2994.2934.290
Hotel4.1804.1764.1584.1794.1694.153
Zelda3.6343.6203.6193.6213.5983.603
Average (9 images)3.8103.8103.7993.8013.7933.784
Average (45 images)4.0454.0384.0294.0324.0214.010
Table 8. Comparison of bit averages (for nine standard test images) obtained by several methods known from the literature.
Table 8. Comparison of bit averages (for nine standard test images) obtained by several methods known from the literature.
ImageJPEG-LSCALICBlend-7 [45]HBB [54]Multi-ctxProposed SolutionLA-OLS
Balloon2.8892.782.842.802.7272.7332.576
Barb4.6904.314.434.284.2434.2113.832
Barb24.6844.464.574.484.4214.4014.214
Board3.6743.513.573.543.4673.4253.288
Boats3.9303.783.843.803.7303.6963.537
Girl3.9223.723.763.743.6643.6123.467
Gold4.4754.354.424.374.3104.2934.198
Hotel4.3784.184.294.274.1714.1694.040
Zelda3.8843.693.793.723.7003.5983.499
Average4.0583.8643.9463.8893.8263.7933.628
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Ulacha, G.; Łazoryszczak, M. Lossless Image Coding Using Non-MMSE Algorithms to Calculate Linear Prediction Coefficients. Entropy 2023, 25, 156. https://doi.org/10.3390/e25010156

AMA Style

Ulacha G, Łazoryszczak M. Lossless Image Coding Using Non-MMSE Algorithms to Calculate Linear Prediction Coefficients. Entropy. 2023; 25(1):156. https://doi.org/10.3390/e25010156

Chicago/Turabian Style

Ulacha, Grzegorz, and Mirosław Łazoryszczak. 2023. "Lossless Image Coding Using Non-MMSE Algorithms to Calculate Linear Prediction Coefficients" Entropy 25, no. 1: 156. https://doi.org/10.3390/e25010156

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop