Data Compression Flashcards
1
Q
Define run-length encoding:
A
A method of compressing data (often images) by removing repeated data
2
Q
Define dictionary encoding:
A
A method of compressing data in text files by replacing common strings
3
Q
How does jpeg compression work:
A
The image is split into 8x8 grids, and removes the data least likely to affect the perception of the image, and then uses run-time encoding
4
Q
How does run-length encoding work:
A
Identifies sequences of identical data values / colour pixels and represents these as one data value / one pixel colour, together with a count of how many such values are in the sequence