Tagged Questions

Run-length encoding (RLE) is a very simple form of data compression in which runs of data (that is, sequences in which the same data value occurs in many consecutive data elements) are stored as a single data value and count, rather than as the original run.

learn more… | top users | synonyms

9
votes
2answers
190 views

Lossless hierarchical run length encoding

I want to summarize rather than compress in a similar manner to run length encoding but in a nested sense. For instance, I want : ABCBCABCBCDEEF to become: (2A(2BC))D(2E)F I am not concerned that ...
5
votes
2answers
165 views

Compressing a sinewave table

I have a large array with 1024 entries that have 7 bit values in range(14, 86) This means there are multiple range of indices that have the same value. For example, consider the index range 741 to ...
5
votes
4answers
373 views

Finding the minimum length RLE

The classical RLE algorithm compresses data by using numbers to represent how many times the character following a number appears in the text at that position. For example: AAABBAAABBCECE => ...
4
votes
1answer
55 views

RLE sequence, setting a value

Say I have an arbitrary RLE Sequence. (For those who don't know, RLE compresses an array like [4 4 4 4 4 6 6 1 1] into [(5,4) (2,6) (2,1)]. First comes the number of a particular integer in a run, ...
4
votes
6answers
305 views

What would be a good (de)compression routine for this scenario

I need a FAST decompression routine optimized for restricted resource environment like embedded systems on binary (hex data) that has following characteristics: Data is 8bit (byte) oriented (data ...
3
votes
3answers
175 views

Binary run length encoding

I have a web form, for the contents of which I would like to generate a short representation in Base64. The form, among other things, contains a list of 264 binary values, the greater part of which ...
3
votes
3answers
606 views

Pixel chains from run length encoding

I've been banging my head for a long time on this one I am doing imaging. So far I've binarized my images, meaning that from a grayscale image, every pixel under a certain value are dropped. This ...
3
votes
5answers
500 views

Implementing run-length encoding

I've written a program to perform run length encoding. In typical scenario if the text is AAAAAABBCDEEEEGGHJ run length encoding will make it A6B2C1D1E4G2H1J1 but it was adding extra 1 for each ...
1
vote
2answers
93 views

Compressed SortedSet<Long> implementation

I need to store a large number of Long values in a SortedSet implementation in a space-efficient manner. I was considering bit-set implementations and discovered Javaewah. However, the API expects ...
1
vote
1answer
74 views

Need help with logic on a weird loop

I'm trying to make a loop that will recurse through an array of bytes and compare them to the next one in the array (presumably using a for loop to iterate through each entry). If the two are the same ...
0
votes
1answer
81 views

RLE: encode by two symbols

I've created RLE encoding function, which encodes sequences like "A1A1B7B7B7B7" to such strings: "#A12#B74". void encode(const char *input_path, const char *output_path) { // Begin of ...
0
votes
0answers
38 views

RLE sequence, doing a tailReplace

If I'm constructing a tail replace method for an RLE sequence, is the best way to decompress the sequence, append the new sequence at the given index, and then recompress or is there a better way? ...
0
votes
2answers
130 views

C++ and RLE for sequences of symbols

I have difficulties with how to use RLE on sequences of symbols. For example, I can do RLE encoding on strings like "ASSSAAAEERRRRRRRR" which will be transformed to: "A1S3A3E2R8". But I'd like ...
0
votes
2answers
304 views

Run length decoder in C#

Is it possible that anyone around here might have a run-length DECODER in C#? I'm in real need of said code. Thanks. using System; class RLDEC { static void Main() { int t = ...
0
votes
2answers
119 views

“Splitting” the output of a RLE (groupby) depending on a defined value ( the “character” to split the RLE on )

Consider the "string" ( treat it as an array of digits ) 0 0 1 8 8 8 1 0 The RLE ( "groupby" ) is: [(0,2), (1, 1), (8,3), (1, 1), (0, 1)] We then enrich the above RLE with the sum of the run ...
0
votes
1answer
409 views

Platform-dependent issue in run-length encoding of bmp files using C

I've written a program which opens a bmp file and treats it as a character file and performs run length encoding on it. It produces a valid compressed encoding file, which I read again to perform the ...