MULTIMEDIA AND QUALITY OF SERVICE
COMPRESSION
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
The following run of characters is encoded using RLE compression-the original run is 12 bytes, but how many bytes is the compressed file?aaabbbcccccd
|
7 bytes
|
|
12 bytes
|
|
6 bytes
|
|
8 bytes
|
Explanation:
Detailed explanation-1: -RLE is run-length encoding. It is used to encode the location of foreground objects in segmentation. Instead of outputting a mask image, you give a list of start pixels and how many pixels after each of those starts is included in the mask.
Detailed explanation-2: -What is Run Length Encoding code in C? Run Length Encoding (RLE) is a technique for compressing data with long repeated-value runs. The RLE code in C reads an input string and outputs a compressed string with the counts of consecutive characters.
There is 1 question to complete.