WO2001084848A2 - Loss less image compression - Google Patents

Loss less image compression Download PDF

Info

Publication number
WO2001084848A2
WO2001084848A2 PCT/US2001/014299 US0114299W WO0184848A2 WO 2001084848 A2 WO2001084848 A2 WO 2001084848A2 US 0114299 W US0114299 W US 0114299W WO 0184848 A2 WO0184848 A2 WO 0184848A2
Authority
WO
WIPO (PCT)
Prior art keywords
delta
huffman
value
pixel
tree
Prior art date
Application number
PCT/US2001/014299
Other languages
French (fr)
Other versions
WO2001084848A3 (en
Inventor
Norihisa Suzuki
Henry Rowley
Original Assignee
Zaxel Systems, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Zaxel Systems, Inc. filed Critical Zaxel Systems, Inc.
Priority to AU2001259428A priority Critical patent/AU2001259428A1/en
Publication of WO2001084848A2 publication Critical patent/WO2001084848A2/en
Publication of WO2001084848A3 publication Critical patent/WO2001084848A3/en

Links

Classifications

    • HELECTRICITY
    • H03ELECTRONIC CIRCUITRY
    • H03MCODING; DECODING; CODE CONVERSION IN GENERAL
    • H03M7/00Conversion of a code where information is represented by a given sequence or number of digits to a code where the same, similar or subset of information is represented by a different sequence or number of digits
    • H03M7/30Compression; Expansion; Suppression of unnecessary data, e.g. redundancy reduction
    • H03M7/40Conversion to or from variable length codes, e.g. Shannon-Fano code, Huffman code, Morse code
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04NPICTORIAL COMMUNICATION, e.g. TELEVISION
    • H04N19/00Methods or arrangements for coding, decoding, compressing or decompressing digital video signals
    • H04N19/50Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using predictive coding
    • H04N19/593Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using predictive coding involving spatial prediction techniques
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04NPICTORIAL COMMUNICATION, e.g. TELEVISION
    • H04N19/00Methods or arrangements for coding, decoding, compressing or decompressing digital video signals
    • H04N19/60Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using transform coding
    • H04N19/61Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using transform coding in combination with predictive coding
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04NPICTORIAL COMMUNICATION, e.g. TELEVISION
    • H04N19/00Methods or arrangements for coding, decoding, compressing or decompressing digital video signals
    • H04N19/90Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using coding techniques not provided for in groups H04N19/10-H04N19/85, e.g. fractals
    • H04N19/91Entropy coding, e.g. variable length coding [VLC] or arithmetic coding

Definitions

  • a left delta operation returns a four-by-four (n-by-m) matrix with pixel values computed from the original matrix. For each pixel in the original matrix, a difference is calculated between a current pixel value and a left neighbor pixel value.
  • Fig. 2 represents a simple best-neighbor compression method embodiment of the present invention, and is referred to herein by the general reference numeral 200.
  • Method 200 is similar to method 100, but it only computes the left-delta and above-delta.
  • a typical video stream for compression by method 200 comprises a series of video frames, each video frame comprises a number of scan lines, and each scan line includes a number of pixels.
  • the method 200 comprises a step 202 that sets a current-scan-line address counter to the top scan line of a frame.
  • a step 204 checks if there are less than four (n) scan lines left below the current scan line. If not, a step 206 lowers the current- scan-line address counter by four (n).

Landscapes

  • Engineering & Computer Science (AREA)
  • Multimedia (AREA)
  • Signal Processing (AREA)
  • Theoretical Computer Science (AREA)
  • Compression Or Coding Systems Of Tv Signals (AREA)
  • Compression, Expansion, Code Conversion, And Decoders (AREA)

Abstract

A real-time video compression method compares pixel value differences with neighboring pixels and replaces such pixel values with the minimum of the differences. A marker is attached to a block of pixels, such that all the pixels in that block are compared with neighbors of one direction. Such marker indicates how all the pixels in that block are compared. Intermittent Huffman-tree construction is used such that one tree is used for several frames. Huffman coding is used to compress the resulting frame. A single Huffman-tree is constructed once every q-number of frames. Since the frames do not change frequently, 'q' can be set, for example, to thirty and still not cause much deterioration in compression ratio. When used for real-time video compression, the frequency of Huffman-tree construction is done according to the instantaneous availability of processor time to do the construction. When more processing time is available, the Huffman-trees are computed more frequently. Such frequency variation can be implemented by first checking the input video frame buffer. It it's empty, processor time for Huffman-tree construction is available.

Description

Fast Loss Less Image Compression Based on Neighborhood Comparisons
BACKGROUND OF THE INVENTION
TECHNICAL FIELD
The present invention relates to data compression methods, and more specifically to fast loss-less image compression based on neighborhood comparisons.
DESCRIPTION OF THE PRIOR ART
Video data is typically encoded in large blocks of memory. Even a single frame 1K x 1 K can require a megabyte to describe it. So video data requires large amounts of memory to store it, and high communication bandwidths to transfer it. It therefore is highly advantageous to compress video data. But some compression methods lose information in the process. Some applications can tolerate various degrees of loss, but still others require lossless compression. The typical loss-less video data compression methods use differential pulse code modulation (DPCM). A current pixel value is replaced by the difference from the previous pixel. Since pixel values change rather slowly along scan lines, the difference values will near zero, making compression algorithms particularly effective. But many times the slow change between pixel values occurs in vertical or diagonal bands. So prior art methods that can only take advantage of horizontal bands in the image are compromised.
Huffman coding can be used to compress real-time video data, and such builds a Huffman-tree, and then uses the tree to recode the data. The basic idea is that frequently occurring video codes are replaced by a Huffman-code that requires fewer bits. The occasional video codes that occur infrequently can be described with Huffman-codes that actually need more bits. The combination is an overall gain in compression.
It has been conventional to compute the Huffman-tree once regardless of any real difference resulting from the previous tree, and regardless of available process time to handle the job that instant. The computational time needed to compute the Huffman-tree can equal that needed to run the compression for one image with that tree.
SUMMARY OF THE INVENTION
In general, method embodiments of the present invention compare the pixel value differences with the neighboring pixels and replace the pixel values with the smallest differences. A marker is attached to a n-by-m block of pixels, such that all the pixels in that block are compared with neighbors of one direction. Such marker indicates how all the pixels in that block are compared. Intermittent Huffman-tree construction is used. Huffman coding is used to compress the resulting frame. A single Huffman-tree is constructed once every q-number of frames. Since the frames do not change frequently, "q" can be set to thirty and still not cause much deterioration in compression ratio. When used for real-time video compression, the frequency of Huffman-tree construction is selected according to the instantaneous availability of processor time to do the construction. When more processing time is available, the Huffman-trees are computed more frequently. Such frequency variation can be implemented b y first checking the input video frame buffer for video frames to be compressed. If it's empty, processor time for Huffman-tree construction is available.
BRIEF DESCRIPTION OF THE DRAWINGS
Fig. 1 is a flowchart of a video data compression embodiment of the present invention that uses four delta computations for improved performance where the image has horizontal, vertical, and/or diagonal bands; Fig. 2 is a flowchart of a video data compression embodiment of the present invention that uses two delta computations for improved performance where the image has horizontal and/or vertical bands.
DETAILED DESCRIPTION OF THE INVENTION
The particular description below uses a block of four by four. It can be generalized to a block of n by m, for any numbers n which is smaller than the number of scan lines, and m which is smaller than the number of pixels in one scan line.
Fig. 1 represents a best-neighborhood compression method embodiment of the present invention, and is referred to herein by the general reference numeral 100. A typical video stream for compression by method 100 comprises a series of video frames, each video frame comprises a number of scan lines, and each scan line includes a number of pixels. The method 100 comprises a step 102 that sets a current-scan-line address counter to the top scan line of a frame. A step 104 checks if there are less than four (n) scan lines left below the current scan line. If not, a step 106 lowers the current-scan-line address counter by four (n). A step 108 sets a cursor address counter to the first, or left-most pixel of the current scan line. A step 110 checks to see if there are less than four (m) pixels to the right of the cursor. If so, control returns to step 104. Otherwise, a step 112 advances the cursor address counter to the right by four (m). A step 114 selects, for example, a four-by-four (n-by-m) pixel matrix with a cursor pixel at a bottom-right corner.
A step 116 computes four pixel-differential (delta) values for the selected pixel matrix, i.e., left delta, left-above delta, above delta, and right-above delta. An evaluation measure is computed for each delta matrix resulting from four delta operations. The delta matrix with the best (lowest) evaluation measure is selected. One marker is added to indicate which delta matrix was selected. The original matrix is replaced with the selected delta matrix and its marker. Huffman coding is applied to the marker.
A step 118 applies pixel left-delta computation to the remaining scan lines below current and top most scan line. Pixel left-delta computation replaces the pixel values of the entire scan line except the left most pixel. Each pixel is replaced by the difference between the value of that pixel and the original value of the immediately left neighbor pixel. A step 122 applies run-length coding. A step 124 Huffman codes each pixel of the whole frame.
In method embodiments of the present invention, a left delta operation returns a four-by-four (n-by-m) matrix with pixel values computed from the original matrix. For each pixel in the original matrix, a difference is calculated between a current pixel value and a left neighbor pixel value.
A left-above delta operation returns a four-by-four (n-by-m) matrix with pixel values computed from the original matrix. For each pixel in an original matrix, a difference is calculated between a current pixel value and a diagonally left and above neighbor pixel value.
An above delta operation returns a four-by-four (n-by-m) matrix with pixel values computed from the original matrix. For each pixel in the original matrix, a difference is calculated between a current pixel value and an above-neighbor pixel value.
A right-above delta operation returns a four-by-four (n-by-m) matrix with pixel values computed from the original matrix. For each pixel in the original matrix, a difference is calculated between a current pixel value and the diagonally right and above neighbor pixel value. The Huffman coding comprises Huffman-tree building, and encoding based on the Huffman-tree. The Huffman-tree building takes substantial amount of time. So if we make the Huffman-tree for every image frame, the computation time is too long so that the algorithm does not run in real time. So compression like MPEG uses Huffman coding but uses one Huffman-tree for the entire video. This is not satisfactory in many cases since the compression ratio deteriorates. Our invention is to create the Huffman-tree once in a while. One approach is to create the Huffman-tree for once every fixed number of frames. The frequency of tree generation is computed so that the computation time for tree generation per frame is about one tenth of encoding time. Another approach is an adaptive approach. If the computer is fast and a lot of cycles are left, then we should run Huffman-tree generation more frequently to get better compression ratio. We approach this problem by looking at the input buffer. Whenever input buffer becomes empty or near empty, that means the compression system is catching up with the video input, and therefore time is left to do other things, such as tree generation. So the algorithm is to look at the input buffer size and if the size becomes below a threshold, then Huffman-tree generation is invoked.
Fig. 2 represents a simple best-neighbor compression method embodiment of the present invention, and is referred to herein by the general reference numeral 200. Method 200 is similar to method 100, but it only computes the left-delta and above-delta. A typical video stream for compression by method 200 comprises a series of video frames, each video frame comprises a number of scan lines, and each scan line includes a number of pixels. The method 200 comprises a step 202 that sets a current-scan-line address counter to the top scan line of a frame. A step 204 checks if there are less than four (n) scan lines left below the current scan line. If not, a step 206 lowers the current- scan-line address counter by four (n). A step 208 sets a cursor address counter to the first, or left-most pixel of the current scan line. A step 210 checks to see if there are less than four (m) pixels to the right of the cursor. If so, control returns to step 204. Otherwise, a step 212 advances the cursor address counter to the right by four (m). A step 214 selects, for example, a four-by-four (n-by-m) pixel matrix with a cursor pixel at a bottom-right corner.
A step 216 computes two pixel-differential (delta) values for the selected pixel matrix, i.e., left delta and above delta. An evaluation measure is computed for each delta matrix resulting from the two delta operations. The delta matrix with the best (lowest) evaluation measure is selected. One marker is added to indicate which delta matrix was selected. The original matrix is replaced with the selected delta matrix and its marker. Huffman coding is applied to the marker.
A step 218 applies pixel left-delta computation to the remaining scan lines below current and top most scan line. A step 222 applies run-length coding. A step 224 Huffman codes each scan line of the whole frame.
The evaluation measures mentioned for steps 116 and 216 are preferably equal to the sum of the absolute values of the all the pixels in a four-by-four (n- by-m) resulting delta matrix. If some pixel value differences cannot be computed because the pixel is at the edge of a frame, the evaluation value does not exist or is indicated. Consider the compression example represented in Table I. TABLE I Compression Example
Figure imgf000007_0001
A first matrix to be processed is presented in Table II.
TABLE II First Matrix
Figure imgf000007_0002
In the second row and second column there is a current value of 17. A left delta computes 17-12= 5. An above-left delta computes 17-14= 3. An above delta computes 17-18=-1. An above-right delta computes 17-22=-5. Each of the sixteen current pixel positions are similarly computed to generate a left delta matrix, a left-above delta matrix, an above delta matrix, and a right-above delta matrix. A completed left delta matrix produces an evaluation measure = nil for the first matrix in Table II. The computation of a left-above delta matrix also produces an evaluation measure = nil.
An above delta matrix results in an evaluation measure = 27, as in Table III.
TABLE III Above Delta Matrix
Figure imgf000007_0003
A right-above delta matrix, as in Table IV, results in an evaluation measure = 83. TABLE IV Right-Above Delta Matrix
Figure imgf000008_0001
Therefore, the evaluation measure comparison shows that the above delta (A) is best for the first 4x4 pixel matrix. A second matrix is represented in Table V.
TABLE V Second Exemplary 4x4 Matrix
Figure imgf000008_0002
A left delta matrix of such second matrix, as in Table VI, results in evaluation measure = 38.
TABLE VI Left Delta Matrix
Figure imgf000008_0003
A left above delta matrix results in an evaluation measure = 59.
TABLE VII Left Above Delta Matrix
Figure imgf000008_0004
An above delta matrix results in an evaluation measure = 51.
TABLE VIII Above Delta Matrix
Figure imgf000009_0001
A right above delta matrix results in an evaluation measure = nil.
Therefore, the evaluation measure comparison shows that the left delta (L) is best for the second 4x4 pixel matrix. Pixel left delta of the first scan line is represented in Table IX.
TABLE IX Pixel Left Delta Of The First Scan Line
15 1 3 -6 -5 1 3 2
Table X represents a result.
TABLE X Result
Figure imgf000009_0002
Neighbor matrix markers are:
A L Huffman compression processing results in the Huffman-tree of Table XI.
TABLE XI Huffman-Tree
Figure imgf000010_0001
The compression ratio for this example is (200-133)/200=34%
In general, method embodiments of the present invention compare the pixel value differences with the neighboring pixels and replace the pixel values with the smallest of the several differences. A marker is attached to a block of pixels, such that all the pixels in that block are compared with neighbors of one direction. Such marker indicates how all the pixels in that block are compared. Intermittent Huffman-tree construction is used. Huffman coding is used to compress the resulting frame. A single Huffman-tree is constructed once every q-number of frames. Since the frames do not change frequently, "q" can be set to thirty and still not cause much deterioration in compression ratio. When used for real-time video compression, the frequency of Huffman-tree construction is selected according to the instantaneous availability of processor time to do the construction. When more processing time is available, the Huffman-trees are computed more frequently. Such frequency variation can be implemented b y first checking the input video frame buffer. If it's empty, processor time for Huffman-tree construction is available.
Loss-less compression of images has been implemented using the fact that color and brightness of the images change gradually on the surface so the values of neighboring pixels do not change drastically. In other words, each pixel is constrained by its neighbors because the image data is not completely arbitrary.
Many compression methods are based on differential pulse code modulation (DPCM), which creates a "predictor" from some linear function of the pixels preceding a point in a scan line. The actual pixel value is replaced with a difference between the actual pixel value and the predictor. Such predictor often equals the value of the immediately preceding pixel. In this way the whole pixel values of the images are close to zero, and can be compressed either by using fewer bits to represent pixels or using Huffman coding to compress.
If each pixel were assigned its own marker, the total amount of data needed for such markers can be substantial, e.g., one quarter of the total. Such overhead can be significantly reduced by dividing the image into a number of small n-by- m blocks. All the pixels in a block are assigned one marker. The one marker is attached to each block that indicates which of the four comparisons is selected. So all the pixels in each block are compared their neighboring pixels in a single way. The shape and size of the block can take any form. In one embodiment of the present invention, the n-by-m block dimension was set to be a four-by- four square matrix.
After all the absolute pixel values have been reduced to small-numeric differential values, Huffman coding is used to compress the frame. But the Huffman coding of video can be time-expensive. Huffman coding consists of two phases, one to create the Huffman-tree for encoding, and a next to encode the pixels. The first-phase Huffman-tree-generation processing time can require as much as the second-phase time needed to encode the whole image. In order to reduce the time we perform tree generation once for several frames. Since the images do not change drastically between sequential frames, this often does not degrade the compression ratio. Two different schemes can be used to set the frequency of Huffman-tree generation, one fixed and one variable. A fixed number of frames can be made to share a single Huffman-tree, e.g., thirty frames. The variable method generates Huffman trees according to the processor power available at the time. The availability of processing power is assessed by looking at the number of entries in an input buffer that need to be compressed. Little or no work to do means more time can be spent on generating more frequent Huffman trees.
Although the invention is preferably described herein with reference to the preferred embodiment, one skilled in the art will readily appreciate that other applications may be substituted for those set forth herein without departing from the spirit and scope of the present invention. Accordingly, the invention should only be limited by the Claims included below.

Claims

1. A video compression method wherein a video stream comprises a series of video frames, each video frame comprises a number of scan lines, and each scan line includes a number of pixels, the method comprising the steps of: finding a left-delta value that represents a difference between a current pixel value and a left-adjacent pixel value; finding a left-above-delta value that represents a difference between said current pixel value and a value of an adjacent pixel above and to the left in a preceding scan line; finding an above-delta value that represents a difference between said current pixel value and a value of an adjacent pixel above in said preceding scan line; finding a right-above-delta value that represents a difference between said current pixel value and a value of an adjacent pixel above and to the right in said preceding scan line; calculating a minimum of an absolute value for each of said left-delta value, left-above-delta value, above-delta value, and right-above-delta value; replacing said current pixel value with one of said left-delta value, left-above-delta value, above-delta value, and right-above-delta value found to be closest to a zero value in the step of calculating a minimum; and marking a replaced pixel value with a marker to indicate which one of said left-delta value, left-above-delta value, above-delta value, and right- above-delta value was found to be closest to a zero value in the step of calculating a minimum.
2. The method of claim 1 , further comprising the step of: repeating the preceding steps for each pixel in a video frame.
3. The method of claim 2, further comprising the step of: compressing the replaced pixel values using run-length coding.
4. The method of claim 3, further comprising the step of: Huffman-encoding the pixel values compressed by run-length coding and markers.
5. The method of claim 4, wherein: the Huffman-encoding includes the steps of computing a Huffman- tree, and using said tree.
6. The method of claim 5, wherein: the Huffman-encoding computes said Huffman-tree once only q- number of video frames.
7. The method of claim 5, wherein: the Huffman-encoding computes said Huffman-tree at a frequency that is dependent on available processor overhead.
8. A video compression method wherein a video stream comprises a series of video frames, each video frame comprises a number of scan lines, and each scan line includes a number of pixels, the method comprising the steps of: finding a left-delta value that represents a difference between a current pixel value and a left-adjacent pixel value; finding an above-delta value that represents a difference between said current pixel value and a value of an adjacent pixel above in a preceding scan line; calculating a minimum of an absolute value for each of said left-delta value and above-delta value; replacing said current pixel value with one of said left-delta value and above-delta value found to be closest to a zero value in the step of calculating a minimum; and marking a replaced pixel value with a marker to indicate which one of said left-delta value and above-delta value was found to be closest to a zero value in the step of calculating a minimum.
9. The method of claim 8, further comprising the step of: repeating the preceding steps for each pixel in a video frame.
10. The method of claim 9, further comprising the step of: compressing the replaced pixel values using run-length coding.
11. The method of claim 10, further comprising the step of: Huffman-encoding the pixel values compresses by run-length coding and markers.
12. The method of claim 11 , wherein: the Huffman encoding includes steps of computing a Huffman tree.
13. The method of claim 12, wherein: the Huffman-encoding computes said Huffman-tree once only q- number of video frames.
14. The method of claim 12, wherein: the Huffman-encoding computes said Huffman-tree at a frequency that is dependent on available processor overhead.
15. A video compression method wherein a video stream comprises a series of video frames, each video frame comprises a number of scan lines, and each scan line includes a number of pixels, the method comprising the steps of: finding a left-delta n-by-m pixel matrix for a current n-by-m pixel matrix; finding a above-delta n-by-m pixel matrix for said current n-by-m pixel matrix; calculating an evaluation measure for each of said n-by-m delta matrices, said evaluation measure is equal to the sum of the absolute values of all the pixels in an n-by-m delta matrix; replacing said current n-by-m pixel matrix with one of said left-delta and above-delta pixel matrices whose evaluation measure was found to be closest to a zero value; and marking a replaced n-by-m pixel matrix with a marker to indicate which one of said left-delta and above-delta evaluation measures was found to be closest to a zero value.
16. The method of claim 15, further comprising the step of: repeating the preceding steps for each pixel in a video frame.
17. The method of claim 16, further comprising the step of: compressing the replaced pixel values using run-length coding.
18. The method of claim 17, further comprising the step of:
Huffman-encoding the pixel values compresses by run-length coding and markers.
19. The method of claim 18, wherein: the Huffman encoding includes steps of computing a Huffman tree.
20. The method of claim 19, wherein: the Huffman-encoding computes said Huffman-tree once only q- number of video frames.
21. The method of claim 19, wherein: the Huffman-encoding computes said Huffman-tree at a frequency that is dependent on available processor overhead.
22. A video compression method wherein a video stream comprises a series of video frames, each video frame comprises a number of scan lines, and each scan line includes a number of pixels, the method comprising the steps of: finding a left-delta n-by-m pixel matrix for a current n-by-m pixel matrix; finding a left-above-delta n-by-m pixel matrix for a current n-by-m pixel matrix; finding an above-delta n-by-m pixel matrix for a current n-by-m pixel matrix; finding a right-above-delta n-by-m pixel matrix for a current n-by-m pixel matrix; calculating an evaluation measure for each of said n-by-m delta matrices, said evaluation measure is equal to the sum of the absolute values of all the pixels in an n-by-m delta matrix; replacing said current n-by-m pixel matrix with one of said left- delta, left-above-delta, above-delta, and right-above-delta pixel matrices whose evaluation measure was found to be closest to a zero value; and marking a replaced n-by-m pixel matrix with a marker to indicate which one of said left-delta, left-above-delta, above-delta, and right-above-delta evaluation measures was found to be closest to a zero value.
23. The method of claim 22, further comprising the step of: repeating the preceding steps for each pixel in a video frame.
24. The method of claim 23, further comprising the step of: compressing the replaced pixel values using run-length coding.
25. The method of claim 24, further comprising the step of:
Huffman-encoding the pixel values compressed by run-length coding and markers.
26. The method of claim 25, wherein: the Huffman-encoding includes the steps of computing a Huffman- tree, and using said tree.
27. The method of claim 26, wherein: the Huffman-encoding computes said Huffman-tree once only q- number of video frames.
28. The method of claim 26, wherein: the Huffman-encoding computes said Huffman-tree at a frequency that is dependent on available processor overhead.
PCT/US2001/014299 2000-05-02 2001-05-02 Loss less image compression WO2001084848A2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU2001259428A AU2001259428A1 (en) 2000-05-02 2001-05-02 Fast loss less image compression based on neighborhood comparisons

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US56278400A 2000-05-02 2000-05-02
US09/562,784 2000-05-02

Publications (2)

Publication Number Publication Date
WO2001084848A2 true WO2001084848A2 (en) 2001-11-08
WO2001084848A3 WO2001084848A3 (en) 2002-02-07

Family

ID=24247763

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2001/014299 WO2001084848A2 (en) 2000-05-02 2001-05-02 Loss less image compression

Country Status (2)

Country Link
AU (1) AU2001259428A1 (en)
WO (1) WO2001084848A2 (en)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2381176A (en) * 2002-03-15 2003-04-23 Sendo Int Ltd Reduction in power consumption by modifying pixel values
CN104639834A (en) * 2015-02-04 2015-05-20 惠州Tcl移动通信有限公司 Method and system for transmitting camera image data
US9554747B2 (en) 2013-08-26 2017-01-31 EveryFit, Inc. Power efficient system and method for measuring physical activity in resource constrained devices
US9581612B2 (en) 2013-08-26 2017-02-28 EveryFit, Inc. Systems and methods for a power efficient method for detecting wear and non-wear of a sensor
US9947198B2 (en) 2013-08-26 2018-04-17 EveryFit, Inc. Systems and methods for context-aware transmission of longitudinal safety and wellness data wearable sensors
CN108600765A (en) * 2011-11-07 2018-09-28 英孚布瑞智有限私人贸易公司 The coding/decoding method of motion vector
CN116489369A (en) * 2023-06-26 2023-07-25 深圳市美力高集团有限公司 Driving digital video compression processing method

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0720379A2 (en) * 1994-12-28 1996-07-03 Canon Kabushiki Kaisha Encoding method and device therefor
EP0743794A2 (en) * 1995-05-16 1996-11-20 Canon Kabushiki Kaisha Image encoding apparatus and method
US5835034A (en) * 1995-07-18 1998-11-10 Hewlett-Packard Company System and method for lossless image compression
US5945933A (en) * 1998-01-27 1999-08-31 Infit Ltd. Adaptive packet compression apparatus and method

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0720379A2 (en) * 1994-12-28 1996-07-03 Canon Kabushiki Kaisha Encoding method and device therefor
EP0743794A2 (en) * 1995-05-16 1996-11-20 Canon Kabushiki Kaisha Image encoding apparatus and method
US5835034A (en) * 1995-07-18 1998-11-10 Hewlett-Packard Company System and method for lossless image compression
US5945933A (en) * 1998-01-27 1999-08-31 Infit Ltd. Adaptive packet compression apparatus and method

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
OSAKO F ET AL: "A DYNAMIC COMPUTATION RESOURCE SCALABLE ALGORITHM FOR SOFTWARE VIDEO CODEC" ZKG. ZEMENT, KALK, GIPS, BAUVERLAG, WIESBADEN, DE, vol. 143, 10 September 1997 (1997-09-10), pages 515-518, XP000986619 ISSN: 0340-5095 *

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2381176A (en) * 2002-03-15 2003-04-23 Sendo Int Ltd Reduction in power consumption by modifying pixel values
GB2381176B (en) * 2002-03-15 2003-10-22 Sendo Int Ltd Image processing for a display
CN108600765A (en) * 2011-11-07 2018-09-28 英孚布瑞智有限私人贸易公司 The coding/decoding method of motion vector
US9554747B2 (en) 2013-08-26 2017-01-31 EveryFit, Inc. Power efficient system and method for measuring physical activity in resource constrained devices
US9581612B2 (en) 2013-08-26 2017-02-28 EveryFit, Inc. Systems and methods for a power efficient method for detecting wear and non-wear of a sensor
US9947198B2 (en) 2013-08-26 2018-04-17 EveryFit, Inc. Systems and methods for context-aware transmission of longitudinal safety and wellness data wearable sensors
CN104639834A (en) * 2015-02-04 2015-05-20 惠州Tcl移动通信有限公司 Method and system for transmitting camera image data
CN116489369A (en) * 2023-06-26 2023-07-25 深圳市美力高集团有限公司 Driving digital video compression processing method
CN116489369B (en) * 2023-06-26 2023-09-08 深圳市美力高集团有限公司 Driving digital video compression processing method

Also Published As

Publication number Publication date
AU2001259428A1 (en) 2001-11-12
WO2001084848A3 (en) 2002-02-07

Similar Documents

Publication Publication Date Title
US5909513A (en) Bit allocation for sequence image compression
US6882750B2 (en) Fast loss less image compression system based on neighborhood comparisons
US6654419B1 (en) Block-based, adaptive, lossless video coder
US6081209A (en) Search system for use in compression
US11647195B2 (en) Image encoding device, image decoding device, and the programs thereof
US6501859B1 (en) Image compression using wavelet data or original image data depending on code amount
JP4522199B2 (en) Image encoding apparatus, image processing apparatus, control method therefor, computer program, and computer-readable storage medium
JPH10243396A (en) Adaptive quantization method and method for encoding video signal data and system for encoding sampling-processed video signal data
US20020027954A1 (en) Method and device for gathering block statistics during inverse quantization and iscan
US5007102A (en) Data compression using block list transform
Tischer et al. Context-based lossless image compression
US8396308B2 (en) Image coding based on interpolation information
WO2001084848A2 (en) Loss less image compression
JPH0787491A (en) Quantization device, inverse quantization device, picture processing unit and quantization method, reversed quantization method and picture processing method
EP3843399A1 (en) Video image component prediction method and apparatus, and computer storage medium
Shah et al. A review of contemporary image compression techniques and standards
US6084913A (en) Method for compressing dynamic image information and system and device therefor
EP3319318B1 (en) Intra compression of screen content based on soft context formation
CN113365080A (en) Encoding and decoding method, device and storage medium for string coding technology
JPH0856358A (en) Image data encoding device
JP2550021B2 (en) Signal transmission and reception method using data compression
Manju et al. Screen content coding using code repository for compound image compression
El-Harby Two Improved Color Images Compression Systems
JPH03240173A (en) Image data compressing system
JPH03285460A (en) Picture data compressing and encoding system

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A2

Designated state(s): AE AL AM AT AU AZ BA BB BG BR BY CA CH CN CR CU CZ DE DK DM EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX NO NZ PL PT RO RU SD SE SG SI SK SL TJ TM TR TT TZ UA UG UZ VN YU ZA ZW

AL Designated countries for regional patents

Kind code of ref document: A2

Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE TR BF BJ CF CG CI CM GA GN GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
AK Designated states

Kind code of ref document: A3

Designated state(s): AE AL AM AT AU AZ BA BB BG BR BY CA CH CN CR CU CZ DE DK DM EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX NO NZ PL PT RO RU SD SE SG SI SK SL TJ TM TR TT TZ UA UG UZ VN YU ZA ZW

AL Designated countries for regional patents

Kind code of ref document: A3

Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE TR BF BJ CF CG CI CM GA GN GW ML MR NE SN TD TG

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

122 Ep: pct application non-entry in european phase
NENP Non-entry into the national phase

Ref country code: JP

DPE2 Request for preliminary examination filed before expiration of 19th month from priority date (pct application filed from 20040101)