Abstract
An effective method for compression of ECG signals, which falls within the transform lossy compression category, is proposed. The transformation is realized by a fast wavelet transform. The effectiveness of the approach, in relation to the simplicity and speed of its implementation, is a consequence of the efficient storage of the outputs of the algorithm which is realized in compressed Hierarchical Data Format. The compression performance is tested on the MIT-BIH Arrhythmia database producing compression results which largely improve upon recently reported benchmarks on the same database. For a distortion corresponding to a percentage root-mean-square difference (PRD) of 0.53, in mean value, the achieved average compression ratio is 23.17 with quality score of 43.93. For a mean value of PRD up to 1.71 the compression ratio increases up to 62.5. The compression of a 30 min record is realized in an average time of 0.14 s. The insignificant delay for the compression process, together with the high compression ratio achieved at low level distortion and the negligible time for the signal recovery, uphold the suitability of the technique for supporting distant clinical health care.
Introduction
The electrocardiogram, frequently called ECG, is a routine diagnostic test to assess the electrical and muscular functions of the heart. A trained person looking at an ECG record can for instance interpret the rate and rhythm of heartbeats; estimate the size of the heart, the health of its muscles and its electrical systems; check for effects or side effects of medications on the heart, or check heart abnormalities caused by other health conditions. At the present time, ambulatory ECG monitoring serves to detect and characterize abnormal cardiac functions during long hours of ordinary daily activities. Thereby the validated diagnostic role of ECG recording has been extended beyond the bedside1–3.
The broad use of ECG records, in particular as a mean of supporting clinical health care from a distance, enhances the significance of dedicated techniques for compressing this type of data. Compression of ECG signals may be realized without any loss in the signal reconstruction, what is referred to as lossless compression, or allowing some distortion which does not change the clinical information of the data. The latter is called lossy compression. This procedure can enclose an ECG signal within a file significantly smaller than that containing the uncompressed record.
The literature concerning both lossless4–8 and lossy compression9–15 of ECG records is vast. It includes emerging methodologies based on compressed sensing16–19. This work focusses on lossy compression with good performance at low distortion recovery. Even if the approach falls within the standard transform compression category, it achieves stunning results. Fresh benchmarks on the MIT-BIH Arrhythmia database are produced for values of PRD as in recent publications11,12,14,15.
The transformation step applies a Discrete Wavelet Transform (DWT). It is recommended to use the fast Cohen-Daubechies-Feauveau 9/7 (CDF 9/7) DWT20, but other possibilities could also be applied. Techniques for ECG signal compression using a wavelet transform have been reported in numerous publications. For a review paper with extensive references see21. The main difference introduced by our proposal lies in the compression method. In particular in what we refer to as the Organization and Storage stage. One of the findings of this work is the appreciation that remarkable compression results are achievable even prescinding from the typical entropy coding step for saving the outputs of the algorithm. High compression is attained in straightforward manner by saving in the Hierarchical Data Format (HDF)22. More precisely, in the compressed HDF5 version which is supported by a number of commercial and non-commercial software platforms including MATLAB, Octave, Mathematica, and Python. HDF5 also implements a high-level Application Programming Interface (API) with C, C++, Fortran 90, and Java interfaces. As will be illustrated here, if implemented in software, adding to the algorithm an entropy coding process may improve compression further, but at expense of processing time. Either way, the compression results for distortion corresponding to mean PRD in the range [0.48, 1.71] are shown to significantly improve recently reported benchmarks11,12,14,15 on the MIT-BIH Arrhythmia database. For PRD < 0.4 the technique becomes less effective.
Method
Before describing the method let’s introduce the notational convention. is the set of real numbers. Bold face lower cases are used to represent one dimension arrays and standard mathematical fonts to indicate their components, e.g. is an array of N real components c(i),i = 1, …, N, or equivalently c = (c(1), …, c(N)). Within the algorithms, operations on components will be indicated with a dot, e.g. c.2 = (c(1)2, …, c(N)2) and |c.| = (|c(1)|, …, |c(N)|). Moreover t = cumsum (|c.|2) is a vector of components .
The proposed compression algorithm consists of three distinctive steps.
Approximation Step. Applies a DWT to the signal keeping the largest coefficients to produce an approximation of the signal up to the target quality.
Quantization Step. Uses a scalar quantizer to convert the wavelet coefficients in multiples of integer numbers.
Organization and Storage Step. Organizes the outputs of steps (1) and (2) for economizing storage space.
At the Approximation Step a DWT is applied to convert the signal into the vector whose components are the wavelet coefficients (w(1), …, w(N)). For deciding on the number of nonzero coefficients to be involved in the approximation we consider two possibilities:
The wavelet coefficients (w(1), …, w(N)) are sorted in ascending order of their absolute value (w(γ1), …, w(γN)), with |w(γ1)|≤ ⋯ ≤|w(γN)|. The cumulative sums are calculated to find all the values n such that t(n) ≥ tol2. Let k + 1 be the smallest of these values. Then the indices γi,i = k + 1,…N give the coefficients w(γi), i = k + 1, …, N of largest absolute value. Algorithm 1 summarizes the procedure.
After the quantization step the nonzero coefficients and their corresponding indices are gathered together.
At the Quantization Step the selected wavelet coefficients c = (c(1), …, c(K)), with K = N − k and c(i − k) = w(γi), i = k + 1, …, N, are transformed into integers by a mid-tread uniform quantizer as follows:
1 |
where indicates the largest integer number smaller or equal to x and Δ is the quantization parameter. After quantization, the coefficients and indices are further reduced by the elimination of those coefficients which are mapped to zero by the quantizer. The above mentioned option (b) follows from this process. It comes into effect by skipping Algorithm 1. The signs of the coefficients are encoded separately using a binary alphabet (1 for + and 0 for −) in an array (s(1), …, s(K)).
Since the indices are large numbers, in order to store them in an effective manner at the Organization and Storage Step we proceed as follows. These indices are re-ordered in ascending order , which guarantees that . This induces a re-order in the coefficients, and in the corresponding signs . The re-ordered indices are stored as smaller positive numbers by taking differences between two consecutive values. Defining the array stores the indices with unique recovery. The size of the signal, N, the quantization parameter Δ, and the arrays , , and are saved in HDF5 format. The HDF5 library operates using a chunked storage mechanism. The data array is split into equally sized chunks each of which is stored separately in the file. Compression is applied to each individual chunk using gzip. The gzip method is based of on the DEFLATE algorithm, which is a combination of LZ7723 and Huffman coding24. Within MATLAB all this is implemented simply by using the function save to store the data.
Algorithm 2 outlines a pseudo code of the above described compression procedure.
The fast wavelet transform has computational complexity O(N). Thus, if the approach (a) is applied, the computational complexity of Algorithm 2 is dominated by the sort operation in Algorithm 1 with average computational complexity O(NlogN). Otherwise the complexity is just O(N), because the number K of indices of nonzero coefficients to be sorted is in general much less than N. Nevertheless, as will be shown in the Numerical Example III, in either case the compression of a 30 min record is achieved on a MATLAB platform in an average time less then 0.2 s. While compression performance can be improved further by adding an entropy coding step before saving the arrays, if implemented in software such a step slows the process.
When selecting the number of wavelet coefficients for the approximation by method a) the parameter tol is fixed as follows: Assuming that the target PRD before quantization is PRD0 we set . The value of PRD0 is fixed as 70–80% of the required PRD. The quantization parameter is tuned to achieve the required PRD.
Signal recovery
At the Decoding Stage the signal is recovered by the following steps.
Read the number N, the quantization parameter Δ, and the arrays , , and from the compressed file.
- Recover the magnitude of the coefficients from their quantized version as
2 Recover the indices from the array as: and
Recover the signs of the the wavelet coefficients as
Complete the full array of wavelet coefficients as wr(i) = 0, i = 1, …, N and
Invert the wavelet transform to recover the approximated signal fr.
As shown in Tables 5–7, and the recovery process runs about 3 times faster than the compression procedure, which is already very fast.
Table 5.
PRD | 1.71 | 1.47 | 1.18 | 1.05 | 0.91 | 0.80 |
CR12 | 38.46 | 33.85 | 28.21 | 25.64 | 22.27 | 18.00 |
CRa | 62.48 | 56.78 | 47.04 | 41.24 | 37.68 | 33.05 |
Gain % | 62 | 68 | 67 | 61 | 69 | 84 |
CRb | 60.33 | 53.07 | 44.37 | 40.29 | 35.69 | 31.86 |
Gain % | 57 | 57 | 57 | 57 | 60 | 77 |
QS12 | 29.08 | 29.38 | 30.01 | 30.51 | 30.36 | 29.46 |
QSa | 36.55 | 38.63 | 39.83 | 39.20 | 41.61 | 41.55 |
Gain % | 26 | 31 | 33 | 28 | 37 | 41 |
QSb | 35.86 | 36.81 | 38.33 | 39.16 | 39.96 | 40.80 |
Gain % | 23 | 25 | 27 | 28 | 31 | 38 |
tc (s) a) | 0.13 | 0.14 | 0.14 | 0.14 | 0.14 | 0.14 |
tc (s) b) | 0.10 | 0.11 | 0.11 | 0.11 | 0.11 | 0.11 |
tr (s) | 0.04 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 |
PRD0 a) | 1.303 | 0.966 | 0.830 | 0.830 | 0.635 | 0.627 |
Δ a) | 119 | 126 | 93 | 67 | 71 | 51 |
Δ b) | 177 | 147 | 113 | 98 | 82 | 69 |
Table 7.
PRD | 1.31 | 1.02 | 0.67 | 0.48 | 0.31 | 0.23 |
CR11 | 17.34 | 14.68 | 11.30 | 9.28 | 6.22 | 5.19 |
CRa | 49.99 | 40.57 | 27.79 | 19.84 | 10.59 | 7.75 |
Gain% | 188 | 176 | 146 | 114 | 70 | 49 |
CRb | 48.72 | 39.47 | 27.24 | 19.84 | 10.33 | 7.36 |
Gain% | 181 | 169 | 141 | 114 | 66 | 42 |
QSa | 38.12 | 39.81 | 41.46 | 42.71 | 34.96 | 34.48 |
QSb | 37.69 | 39.30 | 41.88 | 42.71 | 34.40 | 33.16 |
tc (s) a) | 0.14 | 0.14 | 0.14 | 0.14 | 0.15 | 0.16 |
tc (s) b) | 0.11 | 0.11 | 0.11 | 0.11 | 0.13 | 0.14 |
tr (s) | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.06 |
PRD0 a) | 1.000 | 0.794 | 0.562 | 0.380 | 0.224 | 0.193 |
Δ a) | 90 | 67 | 36 | 33 | 16 | 9 |
Δ b) | 129 | 95 | 54 | 33 | 16 | 10 |
Results
We present here four numerical tests with different purposes. Except for the comparison in Test II, all the other tests use the full MIT-BIH Arrhythmia database25 which contains 48 ECG records. Each of these records consists of N = 650000 11-bit samples at a frequency of 360 Hz. The algorithms are implemented using MATLAB in a notebook Core i7 3520 M, 4GB RAM.
Since the compression performance of lossy compression has to be considered in relation to the quality of the recovered signals, we introduce at this point the measures to evaluate the results of the proposed procedure.
The quality of a recovered signal is assessed with respect to the PRD calculated as follows,
3 |
where, f is the original signal, fr is the signal reconstructed from the compressed file and indicates the 2-norm. Since the PRD strongly depends on the baseline of the signal, the PRDN, as defined below, is also reported.
4 |
where, indicates the mean value of f.
When fixing a value of PRD, the compression performance is assessed by the Compression Ratio (CR) as given by
5 |
The quality score (QS), reflecting the tradeoff between compression performance and reconstruction quality, is the ratio:
6 |
Since the PRD is a global quantity, in order to detect possible local changes in the visual quality of the recovered signal, we define the local PRD as follows. Each signal is partitioned in Q segments fq, q = 1 …, Q of L samples. The local PRD with respect to every segment in the partition, which we indicate as prd(q), q = 1, … Q, is calculated as
7 |
where is the recovered portion of the signal corresponding to the segment q. For each record the mean value prd () and corresponding standard deviation (std) are calculated as
8 |
and
9 |
The mean value prd with respect to all the records in the database is a double average .
When comparing two approaches on a database we reproduce the same mean value PRD. The quantification of the relative gain in CR of one particular approach, say approach 1, in relation to another, say approach 2, is given by the quantity:
The gain in QS has the equivalent definition.
Numerical test I
We start the tests by implementing the proposed approach using wavelet transforms corresponding to different wavelet families at different levels of decomposition. The comparison between different wavelet transforms is realized using approach (b), because within this option each value of PRD is uniquely determined by the quantization parameter Δ. Thus, the difference in CR is only due to the particular wavelet basis and the concomitant decomposition level. Table 1 shows the average CR (indicated as CRb) and corresponding standard deviation (std) with respect to the whole data set and for three different values of PRD. For each PRD-value CRb is obtained by means of the following wavelet basis: db5 (Daubechies) coif4 (Coiflets) sym4 (Symlets) and cdf97 (Cohen-Daubechies-Feauveau). Each basis is decomposed in three different levels (lv).
Table 1.
Family | lv | Δ | PRD | CR | std | Δ | PRD | CR | std | Δ | PRD | CR | std |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
db5 | 3 | 47 | 0.65 | 24.03 | 5.44 | 36 | 0.53 | 20.25 | 4.54 | 29 | 0.45 | 17.53 | 3.95 |
4 | 52 | 0.65 | 25.12 | 6.07 | 39 | 0.53 | 20.75 | 4.97 | 30 | 0.45 | 17.37 | 4.08 | |
5 | 53 | 0.65 | 23.31 | 5.51 | 39 | 0.53 | 19.22 | 4.48 | 30 | 0.45 | 15.49 | 3.84 | |
coif4 | 3 | 47 | 0.65 | 24.28 | 5.59 | 36 | 0.53 | 20.47 | 4.56 | 29 | 0.45 | 17.76 | 3.98 |
4 | 52 | 0.65 | 25.56 | 6.35 | 39 | 0.53 | 21.15 | 5.09 | 31 | 0.45 | 18.10 | 4.28 | |
5 | 53 | 0.65 | 23.73 | 5.75 | 39 | 0.53 | 19.61 | 4.59 | 31 | 0.45 | 16.39 | 4.17 | |
3 | 47 | 0.65 | 23.65 | 5.30 | 36 | 0.53 | 19.95 | 4.43 | 28 | 0.45 | 17.01 | 3.78 | |
sym4 | 4 | 52 | 0.65 | 25.13 | 6.16 | 39 | 0.53 | 20.76 | 4.91 | 30 | 0.45 | 17.41. | 4.10 |
5 | 53 | 0.65 | 23.64 | 5.75 | 39 | 0.53 | 19.42 | 4.50 | 30 | 0.45 | 15.84 | 3.98 | |
3 | 47 | 0.65 | 24.66 | 5.39 | 36 | 0.53 | 20.94 | 4.66 | 28 | 0.45 | 17.80 | 3.93 | |
cdf97 | 4 | 52 | 0.65 | 26.59 | 6.42 | 39 | 0.53 | 22.16 | 5.27 | 30 | 0.45 | 18.57 | 4.39 |
5 | 53 | 0.65 | 24.98 | 6.06 | 39 | 0.53 | 20.69 | 4.83 | 30 | 0.45 | 16.75 | 4.20 |
As observed in Table 1, on the whole the best CR is achieved with the biorthogonal basis cdb97 for lv = 4. In what follows all the results are given using this basis for decomposition level lv = 4.
Next we produce the CR for every record in the database for a mean value PRD of 0.53.
Table 2 shows the results obtained by approach (a) where the CR and QS produced by this method are indicated as CRa and QSa, respectively. The PRD values for each of the records listed in the first column of Table 2 are given in the forth columns of those tables. The second and third columns show the values of and the corresponding std for each record. The CR is given in the fifth column and the corresponding QS in sixth column of the table. The mean value CR obtained by method (b) for the same mean value PRD = 0.53 is CRb = 22.16.
Table 2.
Rec | std | PRD | CRa | QSa | PRDN | |
---|---|---|---|---|---|---|
100 | 0.52 | 0.02 | 0.52 | 28.65 | 55.01 | 12.99 |
101 | 0.51 | 0.08 | 0.52 | 28.32 | 54.92 | 9.56 |
102 | 0.52 | 0.03 | 0.52 | 29.15 | 55.89 | 13.36 |
103 | 0.52 | 0.04 | 0.52 | 26.32 | 50.86 | 7.88 |
104 | 0.52 | 0.12 | 0.53 | 21.23 | 40.08 | 10.37 |
105 | 0.52 | 0.06 | 0.53 | 20.07 | 38.08 | 6.39 |
106 | 0.51 | 0.07 | 0.52 | 20.46 | 39.49 | 6.97 |
107 | 0.54 | 0.05 | 0.54 | 14.30 | 26.66 | 3.10 |
108 | 0.52 | 0.09 | 0.52 | 22.52 | 43.11 | 8.51 |
109 | 0.52 | 0.05 | 0.52 | 23.80 | 45.42 | 5.16 |
111 | 0.52 | 0.04 | 0.52 | 26.71 | 51.55 | 10.01 |
112 | 0.54 | 0.06 | 0.55 | 28.11 | 51.45 | 10.52 |
113 | 0.52 | 0.02 | 0.52 | 22.89 | 43.93 | 6.29 |
114 | 0.51 | 0.04 | 0.52 | 31.85 | 61.80 | 14.94 |
115 | 0.53 | 0.03 | 0.53 | 22.02 | 41.68 | 6.75 |
116 | 0.58 | 0.04 | 0.58 | 12.84 | 22.05 | 3.71 |
117 | 0.54 | 0.03 | 0.54 | 33.70 | 62.86 | 9.59 |
118 | 0.61 | 0.07 | 0.62 | 12.11 | 19.69 | 6.16 |
119 | 0.55 | 0.02 | 0.55 | 18.01 | 32.67 | 4.42 |
121 | 0.53 | 0.06 | 0.53 | 38.74 | 73.18 | 7.59 |
122 | 0.55 | 0.02 | 0.55 | 21.36 | 38.58 | 6.49 |
123 | 0.54 | 0.03 | 0.54 | 28.08 | 52.05 | 8.05 |
124 | 0.54 | 0.05 | 0.54 | 26.03 | 48.21 | 5.07 |
200 | 0.52 | 0.07 | 0.53 | 16.51 | 31.19 | 7.00 |
201 | 0.51 | 0.05 | 0.52 | 37.62 | 72.79 | 13.23 |
202 | 0.51 | 0.05 | 0.51 | 30.41 | 59.57 | 8.51 |
203 | 0.54 | 0.08 | 0.54 | 13.64 | 25.11 | 5.46 |
205 | 0.52 | 0.03 | 0.52 | 30.27 | 57.77 | 12.83 |
207 | 0.50 | 0.11 | 0.52 | 30.31 | 58.72 | 7.23 |
208 | 0.52 | 0.07 | 0.53 | 15.98 | 30.38 | 5.43 |
209 | 0.52 | 0.07 | 0.53 | 16.43 | 31.08 | 9.79 |
210 | 0.51 | 0.09 | 0.51 | 26.30 | 51.08 | 9.80 |
212 | 0.54 | 0.08 | 0.54 | 13.28 | 24.37 | 8.18 |
213 | 0.54 | 0.03 | 0.54 | 13.60 | 25.09 | 3.99 |
214 | 0.52 | 0.05 | 0.52 | 21.45 | 41.45 | 5.48 |
215 | 0.54 | 0.06 | 0.54 | 15.10 | 27.95 | 9.53 |
217 | 0.52 | 0.03 | 0.52 | 18.13 | 34.83 | 4.22 |
219 | 0.54 | 0.03 | 0.54 | 18.69 | 34.44 | 4.50 |
220 | 0.54 | 0.03 | 0.54 | 24.21 | 44.77 | 7.79 |
221 | 0.51 | 0.04 | 0.51 | 24.05 | 46.93 | 8.46 |
222 | 0.51 | 0.07 | 0.52 | 24.48 | 47.17 | 13.88 |
223 | 0.54 | 0.03 | 0.54 | 22.24 | 41.46 | 6.10 |
228 | 0.52 | 0.08 | 0.52 | 19.23 | 36.91 | 7.51 |
230 | 0.52 | 0.06 | 0.52 | 21.36 | 41.04 | 7.28 |
231 | 0.52 | 0.04 | 0.52 | 27.10 | 51.81 | 9.56 |
232 | 0.51 | 0.07 | 0.51 | 34.34 | 66.73 | 15.50 |
233 | 0.53 | 0.05 | 0.53 | 15.74 | 29.59 | 4.89 |
234 | 0.52 | 0.03 | 0.52 | 24.47 | 47.10 | 7.65 |
mean | 0.53 | 0.05 | 0.53 | 23.17 | 43.93 | 8.08 |
std | 0.02 | 0.02 | 0.02 | 6.67 | 13.23 | 3.06 |
Table 3 shows the variations of the CRa with different values of the parameter PRD0 in method (a).
Table 3.
PRD0 | 0.212 | 0.265 | 0.318 | 0.371 | 0.424 | 0.477 |
CRa | 22.16 | 22.19 | 22.42 | 22.88 | 23.24 | 19.50 |
Δ | 39 | 39 | 39 | 37 | 32 | 21 |
Numerical test II
Here comparisons are carried out with respect to results produced by the set partitioning in hierarchical threes algorithm (SPHIT) approach proposed in26. Thus for this test we use the data set described in that publication. It consists of 10-min long segments from records 100, 101, 102, 103, 107, 108, 109, 111, 115, 117, 118, and 111. As indicated in the footnote of26 at pp 853, the given values of PRD correspond to the subtraction of a baseline equal to 1024. This has generated confusion in the literature, as often the values of PRD in Tables III of26 are unfairly reproduced for comparison with values of PRD obtained without subtraction of the 1024 base line. The values of PRD with and without subtraction of that baseline, which are indicated as PRDB and PRD respectively, are given in Table 4. As seen in this table, for the same approximation there is an enormous difference between the two metrics. A fair comparison with respect to the results in26 should either involve the figures in the second row of Table 4 or, as done in26, the fact that a 1024 base line has been subtracted should be specified.
Table 4.
PRDB | 1.19 | 1.56 | 2.46 | 2.96 | 3.57 | 4.85 | 6.49 |
PRD | 0.11 | 0.15 | 0.23 | 0.28 | 0.35 | 0.47 | 0.63 |
CR26 | 4 | 5 | 8 | 10 | 12 | 16 | 20 |
CRb | 4.16 | 5.29 | 8.79 | 11.24 | 14.11 | 19.13 | 24.64 |
Gain % | 4 | 6 | 10 | 12 | 18 | 20 | 23 |
5.20 | 6.57 | 10.53 | 13.19 | 16.04 | 21.31 | 26.92 | |
Gain % | 30 | 31 | 32 | 32 | 34 | 33 | 35 |
Δ | 3.87 | 5.45 | 8.79 | 14.53 | 20.10 | 33.10 | 51.50 |
The figures in the 3rd row of Table 4 correspond to the CRs in26. The 4th row shows the CRs resulting from method (b) of the proposed approach without entropy coding and the 5th row the results of adding a Huffman coding step before saving the compressed data in HDF5 format. The last two rows show the quantization parameters Δ which produce the required values of PRDB and PRD.
Numerical test III
This numerical test aims at comparing our results with recently reported benchmarks on the full MIT-BIH Arrhythmia database for mean value PRD in the rage [0.23, 1.71]. To the best of our knowledge the highest CRs reported so far for mean value PRD in the range [0.8, 1.30) are those in12, and in the range (1.30,1.71] those in14. For PRD < 0.8 the comparison is realized with the results in11, as shown in Table 7. Table 5 compares our results against the results in Table III of12 and Table 6 against Table 1 of14. In both cases we reproduce the identical mean value of PRD. The differences are in the values of CR and QS. All the Gains given in Table 5 are relative to the results in12 while those given in Tables 6 and 7 are relative to the results in14 and11, respectively.
Table 6.
PRD | 1.71 | 1.47 | 1.29 | 1.14 | 1.03 | 0.94 |
CR14 | 42.27 | 35.53 | 30.21 | 25.99 | 22.80 | 20.38 |
CRa | 62.48 | 56.78 | 49.60 | 45.75 | 41.00 | 38.52 |
Gain % | 48 | 60 | 64 | 76 | 80 | 89 |
CRb | 60.33 | 53.07 | 48.04 | 42.94 | 39.76 | 36.52 |
Gain % | 43 | 49 | 59 | 65 | 74 | 79 |
QS14 | 33.41 | 32.58 | 31.53 | 30.23 | 29.19 | 28.44 |
QSa | 36.55 | 38.63 | 38.43 | 40.28 | 39.72 | 41.03 |
Gain% | 9 | 18 | 21 | 33 | 36 | 44 |
QSb | 35.86 | 36.81 | 38.00 | 38.50 | 39.26 | 39.77 |
Gain % | 7 | 15 | 19 | 24 | 29 | 33 |
tc a) (s) | 0.14 | 0.14 | 0.14 | 0.14 | 0.14 | 0.14 |
tc b) (s) | 0.10 | 0.11 | 0.11 | 0.11 | 0.11 | 0.11 |
tr (s) | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 | 0.05 |
PRD0 a) | 1.303 | 0.966 | 0.971 | 0.750 | 0.804 | 0.690 |
Δ a) | 119 | 126 | 91 | 96 | 68 | 69 |
Δ b) | 177 | 147 | 126 | 108 | 96 | 85 |
As already remarked, and fully discussed in27, when comparing results from different publications care should be taken to make sure that the comparison is actually on the identical database, without any difference in baseline. From the information given in the papers producing the results we are comparing with (the relation between the values of PRD and PRDN) we can be certain that we are working on the same database25, which is described in28.
The parameters for reproducing the required PRD with methods (a) and (b) are given in the last 3 rows of Tables 5–7. The previous 3 rows in each table give, in seconds, the average time to compress (tc) and recover (tr) a record. As can be observed, the compression times of approaches (a) and (b) are very similar. The given times were obtained as the average of 10 independent runs. Notice that the CR in these tables do not include the additional entropy coding step.
Figure 1 gives the plot of CR vs PRD for the approaches being compared in this section.
Numerical test IV
Finally we would like to highlight the following two features of the proposed compression algorithm.
One of the distinctive features stems from the significance of saving the outputs of the algorithm directly in compressed HDF5 format. In order to highlight this, we compare the size of the file saved in this way against the size of the file obtained by applying a commonly used entropy coding process, Huffman coding, before saving the data in HDF5 format. The implementation of Huffman coding is realized, as in Table 4, by the off the shelf MATLAB functions Huff06 available on29. In Table 8 CRa and CRb indicate, as before, the CR obtained when the outputs of methods (a) and (b) are directly saved in HDF5 format. and indicate the CR when Huffman coding is applied on the outputs (a) and (b) before saving the data in HDF5 format. The rows right below the CRs give the corresponding compression times.
The other distinctive feature of the method is the significance of the proposed Organization and Storage step. In order to illustrate this, we compare the results obtained by method (b) with those obtained using the conventional Run-Length (RL) algorithm30 instead of storing the indices of nonzero coefficients as proposed in this work. The CR corresponding to RL in HDF5 format is indicated in Table 8 as CRRL. When Huffman coding is applied on RL before saving the outputs in compressed HDF5 format, the CR is indicated as .
Table 8.
PRD | 1.0 | 0.9 | 0.8 | 0.7 | 0.6 | 0.5 | 0.4 | 0.3 | 0.2 |
CRa | 40.51 | 37.12 | 33.09 | 29.70 | 25.50 | 22.00 | 16.80 | 10.33 | 6.64 |
43.57 | 40.41 | 36.32 | 32.96 | 28.80 | 25.13 | 20.25 | 14.62 | 9.53 | |
Gain % | 8 | 9 | 10 | 11 | 13 | 14 | 20 | 42 | 43 |
tc (s) | 0.13 | 0.13 | 0.13 | 0.14 | 0.14 | 0.14 | 0.15 | 1.15 | 1.15 |
tc (s) | 4.3 | 4.5 | 5.0 | 5.4 | 5.5 | 6.2 | 8.3 | 10.22 | 15.4 |
Δ a) | 71 | 64 | 50 | 45 | 35 | 30 | 24 | 15 | 8.5 |
PRD0 a) | 0.750 | 0.675 | 0.640 | 0.550 | 0.484 | 0.400 | 0.300 | 0.230 | 0.150 |
CRb | 38.64 | 35.41 | 31.86 | 28.53 | 24.93 | 21.03 | 16.21 | 10.07 | 6.56 |
42.56 | 39.20 | 35.65 | 32.10 | 28.37 | 24.32 | 19.60 | 14.32 | 9.40 | |
Gain % | 10 | 11 | 12 | 13 | 14 | 16 | 21 | 42 | 43 |
tc (s) | 0.11 | 0.11 | 0.11 | 0.11 | 0.11 | 0.11 | 0.12 | 0.12 | 0.12 |
tc (s) | 4.1 | 4.0 | 4.5 | 5.2 | 5.4 | 6.7 | 8.1 | 10.7 | 15.5 |
Δ b) | 92 | 81 | 69 | 58 | 47 | 36 | 25 | 15.5 | 8.5 |
CRRL | 26.63 | 24.41 | 22.42 | 20.34 | 18.14 | 15,68 | 12.50 | 8.32 | 5.61 |
35.06 | 31.78 | 28.80 | 25.93 | 22.91 | 19.66 | 15.85 | 11.63 | 7.82 | |
Gain % | 32 | 30 | 28 | 27 | 26 | 25 | 26 | 40 | 40 |
tc (s) | 0.12 | 0.12 | 0.12 | 0.13 | 0.13 | 0.13 | 0.13 | 0.14 | 0.16 |
tc (s) | 4.5 | 4.9 | 6.2 | 6.4 | 7.1 | 7.4 | 9.0 | 12.8 | 19.5 |
CRRL gives the CR if the outputs of method (b) are stored using the RL algorithm and the arrays are saved in HFD5 format. is the corresponding CR if Huffman codding is applied before saving the arrays in HFD5 format.
Discussion
We notice that, while the results in Table 1 show some differences in CR when different wavelets are used for the DWT, it is clear from the table that the selection of the wavelet family is not the crucial factor for the success of the technique. The same is true for the decomposition level. That said, since the best results correspond to the cdf97 family at decomposition level 4, we have realized the other numerical tests with that wavelet basis.
We chose to produce full results for a mean value PRD of 0.53 (c.f. Table 2) as this value represents a good compromise between compression performance and high visual similitude of the recovered signal and the raw data. Indeed, in15 the quality of the recovered signals giving rise to a mean value PRD of 0.53 is illustrated in relation to the high performance of automatic QRS complex detection. However, the compression ratio of their method is low. For the same mean value of PRD our CR is 5 times larger: 4.515 vs 23.17 (Table 2). As observed in Table 2 the mean value of the local quantity prd is equivalent to the global value (PRD). Nevertheless the prd may differ for some of the segments in a record. Figure 2 plots the prd for record 101 partitioned into Q = 325 segments of length L = 2000 sample points. Notice that there are a few segments corresponding to significantly larger values of prd than the others. Accordingly, with the aim of demonstrating the visual quality of the recovered signals, for each signal in the database we detect the segment of maximum distortion with respect to the prd as
10 |
The left graphs of Fig. 3 correspond to the segments of maximum prd with respect to all the records in the database and segments of length L = 2000. These are: the segment 25 of records 101, when applying the approximation approach (a) (top graph), and segment 175 of record 213 for approach (b) (bottom graph). The upper waveforms in all the graphs are the raw ECG data. The lower waveforms are the corresponding approximations which have been shifted down for visual convenience. The bottom lines in all the graphs represent the absolute value of the difference between the raw data and their corresponding approximation. The right graphs of Fig. 3 have the same description as the left ones but the segments correspond to values of prd close to the mean value prd for the corresponding record.
It is worth commenting that the difference in the results between approaches (a) and (b) is consequence of the fact that the concomitant parameters are set to approximate the whole database at a fixed mean value PRD. In that sense, approach (a) provides us with some flexibility (there are two parameters to be fixed to match the required PRD) whereas for approach (b) the only parameter (Δ) is completely determined by the required PRD. As observed in Table 3, when setting the parameter PRD0 much smaller than the target PRD the approximation is only influenced by the quantization parameter Δ and methods (a) and (b) coincide. Contrarily, when setting the PRD0 too close to the target PRD the quantization parameter needs to be significantly reduced, which affects the compression results. For a target PRD≥0.4 we recommend to set PRD0 as 70–80% of the required PRD.
For values of PRD < 0.4 the storage approach is not as effective as for larger values of PRD. This is noticeable in both Tables 4 and 8. Another feature that appears for PRD < 0.4 is that applying the entropy coding step, before saving the data in compressed HDF5 format, improves the CR much more than for larger values of PRD. This is because for PRD < 0.4 the approximation fits noise and small details, for which components in higher wavelet bands are required. Contrarily, for larger values of PRD the adopted uniform quantization keeps wavelet coefficients in the first bands. As a result, through the proposed technique the location of the nonzero wavelet coefficients is encoded in an array which contains mainly a long stream of ones. For small values of PRD the array’s length increases to include different numbers. This is why the addition of an entropy coding step, such as Huffman coding which assigns smaller bits to the most frequent symbols, becomes more important. In any case, if the outputs are saved in HDF5 format, adding the Huffman coding step is beneficial. Nonetheless, since when implemented in software the improvement comes at expense of computational time, for PRD > 0.4 this step can be avoided and the CR is still very high.
Comparisons with the conventional RL algorithm, in Table 8, enhances the suitability of the proposal for storing the location of nonzero coefficients. A similar storage strategy has been successfully used with other approximation techniques for compression of melodic music31 and X-Ray medical images32. In this case the strategy is even more efficient, because the approximation is realized using a basis and on the whole signal, which intensifies the efficiency of the storage approach.
Conclusions
An effective and efficient method for compressing ECG signals has been proposed. The proposal was tested on the MIT-BIH Arrhythmia database, which gave rise to benchmarks improving upon recently reported results. The main feature of the method is its simplicity and the fact that for values of PRD > 0.4 a dedicated entropy coding to save the outputs can be avoided by saving the outputs of the algorithm in compressed HDF5. This solution involves a time delay which is practically negligible in relation to the signal length: 0.14 s for compressing a 30 min record. Two approaches for reducing wavelet coefficients have been considered. Approach (b) arises from switching off in approach (a) the selection of the largest wavelet coefficients before quantization. It was shown that, when approximating a whole database to obtain a fixed mean value of PRD, approach (a) may render a higher mean vale of CR when the target PRD is greater the 0.4.
The role of the proposed Organization and Store strategy was highlighted by comparison with the conventional Run Length algorithm. Whilst the latter produces smaller CRs, the results are still good in comparison with previously reported benchmarks. This outcome leads to conclude that, using the a wavelet transform on the whole signal, uniform quantization for all the wavelet bands works well in the design of a codec for lossy compression of ECG signals.
Note: The MATLAB codes for implementing the whole approach have been made available on a dedicated website29,33.
Acknowledgements
Thanks are due to K. Skretting, for making available the Huff06 MATLAB function, which has been used for entropy coding, and to P. Getreuer for the waveletcdf97 MATLAB function which has being used for implementation of the CDF 9/7 wavelet transform.
Author Contributions
The author is the only contributor to the paper.
Data Availability
The data used in this paper are available on https://physionet.org/physiobank/database/mitdb/ We have also placed the data, together with the software for implementing the proposed approach, on http://www.nonlinear-approx.info/examples/node012.htm.
Competing Interests
The author declares no competing interests.
Footnotes
Publisher’s note: Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
References
- 1.Gibson CM, et al. Diagnostic and prognostic value of ambulatory ECG (Holter) monitoring in patients with coronary heart disease: a review. J Thromb Thrombolysis. 2007;23:135–145. doi: 10.1007/s11239-006-9015-6. [DOI] [PubMed] [Google Scholar]
- 2.Mittal S, Movsowitz C, Steinberg JS. Ambulatory external electrocardiographic monitoring: focus on atrial fibrillation. J Am Coll Cardiol. 2011;58:1741–1749. doi: 10.1016/j.jacc.2011.07.026. [DOI] [PubMed] [Google Scholar]
- 3.Steinberg JS, et al. ISHNE-HRS expert consensus statement on ambulatory ECG and external cardiac monitoring/telemetry. Heart Rhythm. 2017;14:e55–e96. doi: 10.1016/j.hrthm.2017.03.038. [DOI] [PubMed] [Google Scholar]
- 4.Jalaleddine SMS, Hutchens CG, Strattan RD, Coberly WA. ECG data compression techniques – a unified approach. IEEE Transactions on Biomedical Engineering. 1990;37:329–343. doi: 10.1109/10.52340. [DOI] [PubMed] [Google Scholar]
- 5.Sriraam N, Eswaran C. An Adaptive Error Modeling Scheme for the Lossless Compression of EEG Signals. IEEE Transactions on Information Technology in Biomedicine. 2008;12:587–594. doi: 10.1109/TITB.2007.907981. [DOI] [PubMed] [Google Scholar]
- 6.Srinivasan K, Dauwels J, Reddy MR. A two-dimensional approach for lossless EEG compression. Biomedical Signal Processing and Control. 2011;4:387–394. doi: 10.1016/j.bspc.2011.01.004. [DOI] [Google Scholar]
- 7.Mukhopadhyay SK, Mitra S, Mitra M. A lossless ECG data compression technique using ASCII character encoding. Computers & Electrical Engineering. 2011;37:486–497. doi: 10.1016/j.compeleceng.2011.05.004. [DOI] [Google Scholar]
- 8.Hejrati B, Fathi A, Abdali-Mohammadi F. Efficient lossless multi-channel EEG compression based on channel clustering. Biomedical Signal Processing and Control. 2017;31:295–300. doi: 10.1016/j.bspc.2016.08.024. [DOI] [Google Scholar]
- 9.Miaou S-G, Yen H-L, Lin C-L. Wavelet-based ECG compression using dynamic vector quantization with tree codevectors in single codebook, IEEE Transactions on Biomedical Engineering. 2002;19:671–680. doi: 10.1109/TBME.2002.1010850. [DOI] [PubMed] [Google Scholar]
- 10.Ku C, Hung K, Wu T. Wavelet-based ECG data compression system with linear quality control schem. IEEE Transactions on Biomedical Engineering. 2010;57:1399–1409. doi: 10.1109/TBME.2009.2037605. [DOI] [PubMed] [Google Scholar]
- 11.Lee SJ, Kim J, Lee M. A Real-Time ECG Data Compression and Transmission Algorithm for an e-Health Device. IEEE Transactions on Biomedical Engineering. 2011;58:2448–2455. doi: 10.1109/TBME.2011.2156794. [DOI] [PubMed] [Google Scholar]
- 12.Ma JL, Zhang TT, Dong MC. A Novel ECG Data Compression Method Using Adaptive Fourier Decomposition With Security Guarantee in e-Health Applications. IEEE Journal of Biomedical and Health Informatics. 2015;19:986–994. doi: 10.1109/JBHI.2014.2357841. [DOI] [PubMed] [Google Scholar]
- 13.Fathi A, Faraji-kheirabadi F. ECG compression method based on adaptive quantization of main wavelet packet subbands. Signal, Image and Video Processing. 2016;10:1433–1440. doi: 10.1007/s11760-016-0944-z. [DOI] [Google Scholar]
- 14.Tan, C., Zhang, L. & Wu, H. A Novel Blaschke Unwinding Adaptive Fourier Decomposition based Signal Compression Algorithm with Application on ECG Signals. IEEE Journal of Biomedical and Health Informatics, 10.1109/JBHI.2018.2817192, (22 March 2018). [DOI] [PubMed]
- 15.Elgendi, M., Mohamed, A. & Ward, R. Efficient ECG Compression and QRS Detection for E-Health Applications. Scientific Reports7, 10.1038/s41598-017-00540-x (2017). [DOI] [PMC free article] [PubMed]
- 16.Mamaghanian H, Khaled N, Atienza D, Vandergheynst P. Compressed Sensing for Real-Time Energy-Efficient ECG Compression on Wireless Body Sensor Nodes. IEEE Transactions on Biomedical Engineering. 2011;58:2456–2466. doi: 10.1109/TBME.2011.2156795. [DOI] [PubMed] [Google Scholar]
- 17.Zhang Z, Jung T-P, Makeig S, Rao BD. Compressed Sensing for Energy-Efficient Wireless Telemonitoring of Noninvasive Fetal ECG via Block Sparse Bayesian Learning. IEEE Transactions on Biomedical Engineering. 2013;60:300–309. doi: 10.1109/TBME.2012.2226175. [DOI] [PubMed] [Google Scholar]
- 18.Polanía LF, Carrillo RE, Blanco-Velasco Manuel, Barner KE. Exploiting Prior Knowledge in Compressed Sensing Wireless ECG Systems. IEEE Journal of Biomedical and Health Informatics. 2015;19:508–519. doi: 10.1109/JBHI.2014.2325017. [DOI] [PubMed] [Google Scholar]
- 19.Polanía LF, Plaza RI. Compressed Sensing ECG using Restricted Boltzmann Machines. Biomedical Signal Processing and Control. 2018;45:237–45. doi: 10.1016/j.bspc.2018.05.022. [DOI] [Google Scholar]
- 20.Cohen A, Daubechies I, Feauveau JC. Biorthogonal bases of compactly supported wavelets. Communications on Pure and Applied Mathematics. 1992;45:485–560. doi: 10.1002/cpa.3160450502. [DOI] [Google Scholar]
- 21.Manikandan MS, Dandapat S. Wavelet-based electrocardiogram signal compression methods and their performances: A prospective review. Biomedical Signal Processing and Control. 2014;14:73–107. doi: 10.1016/j.bspc.2014.07.002. [DOI] [Google Scholar]
- 22.https://www.hdfgroup.org/ (Accessed Jan 2, 2019).
- 23.Ziv J, Lenpel A. A Universal Algorithm for Sequential Data Compression. IEEE Transactions on Information Theory. 1977;23:337–343. doi: 10.1109/TIT.1977.1055714. [DOI] [Google Scholar]
- 24.Huffman D. A Method for the Construction of Minimum-Redundancy Codes. Proceedings of the IRE. 1952;9:1098–1101. doi: 10.1109/JRPROC.1952.273898. [DOI] [Google Scholar]
- 25.https://physionet.org/physiobank/database/mitdb/ (Accessed Jan 2, 2019).
- 26.Lu Z, Kim DY, Pearlman WA. Wavelet compression of ECG signals by the set partitioning in hierarchical trees algorithm. IEEE Transactions on Biomedical Engineering. 2000;47:849–856. doi: 10.1109/10.846678. [DOI] [PubMed] [Google Scholar]
- 27.Blanco-Velasco M, Cruz-Roldán F, Godino-Llorente JI. On the use of PRD and CR parameters for ECG compression. Medical Engineering and Physics. 2005;27:798–802. doi: 10.1016/j.medengphy.2005.02.007. [DOI] [PubMed] [Google Scholar]
- 28.Moody GB, Mark RG. RG, The impact of the MIT-BIH Arrhythmia Database. IEEE Eng in Med and Biol. 2001;20:45–50. doi: 10.1109/51.932724. [DOI] [PubMed] [Google Scholar]
- 29.http://www.ux.uis.no/~karlsk/proj99 (Accessed Jan 2, 2019).
- 30.Salomon, D. Data Compression. (Springer-Verlag London, 2007).
- 31.Rebollo-Neira, L. & Sanches, I. Simple scheme for compressing sparse representation of melodic music. Electronics Letters, 10.1049/el.2017.3908 (2017)
- 32.Rebollo-Neira, L. A competitive scheme for storing sparse representation of X-Ray medical images. Plos One, 10.1371/journal.pone.0201455 (2018). [DOI] [PMC free article] [PubMed]
- 33.http://www.nonlinear-approx.info/examples/node012.html (Accessed Jan 2, 2019).
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Data Availability Statement
The data used in this paper are available on https://physionet.org/physiobank/database/mitdb/ We have also placed the data, together with the software for implementing the proposed approach, on http://www.nonlinear-approx.info/examples/node012.htm.