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.
1
vote
1answer
49 views
Use plyr to summarize a data.frame and get counts of each unique item
I have a data.frame with task assignments from a ticket tracking system.
Assignments <- data.frame('Task'=c(1, 1, 2, 3, 2, 2, 1), 'Assignee'=c('Alice', 'Bob', 'Alice', 'Alice', 'Bob', 'Chuck', ...
1
vote
2answers
100 views
Compressing by counting repetitive elements (Haskell)
I'm looking for a straight-forward combination of standard higher-order functions to compress a list by counting repetitive elements.
For example the result for
"abbccccb"
would be :
[(1, 'a'), ...
4
votes
1answer
78 views
Substract last N values from rle() object
The following function is used to create a path overview for the following dataset:
tc <- textConnection('
path touchpoint time
abc A 1
abc A ...
-1
votes
1answer
266 views
Run Length Encoding - SIMD
I am trying to optimise the run length coding. I was thinking of implementing it in SIMD. I spent a few hours working on the algo but couldn't proceed much. Is it worth giving it a shot? I am working ...
1
vote
1answer
65 views
Identify or count continuously repeated number (actually missing value: nan) in the list
Basically, I would like to identify whether the missing values in data set are continuously repeated or not. If there are countinously repeated missing values in the data set, I would like to know ...
0
votes
1answer
81 views
Qt Run Length Encoding (RLE) of QByteArray
I want to do Run Length Encoding on a Qt QByteArray of largely redundant image data. Right now I am using QByteArrays qCompress and qUncompress functions which use zlib with the default compression ...
0
votes
2answers
176 views
DCT based Video Encoding Process
I am having some issues that I am hoping you will be able to clarify. I have self taught myself a video encoding process similar to Mpeg2. The process is as follows:
Split an RGBA image into 4 ...
0
votes
2answers
178 views
Efficient to apply Run-Length Transform after Move to Front Transform and BWT?
I'm new to encoding so I'm trying to understand the basics. I came across a document that was describing a lossless text compression technique, and in this document was a figure that illustrated how ...
0
votes
0answers
235 views
Stack overflow error in RLE decompression
I am practicing for an exam right now, and one of the review problems is to take a string that is compressed using Run Length Encoding, and decompressing, but ONLY USING RECURSION. This problem can ...
-2
votes
3answers
296 views
java byte vs c++ BYTE
I know Java byte range is -128 to 127, but C++ BYTE is a unsigned char (0 to 255.)
I want to convert a C++ function to Java, and in C++ I have a LPBYTE (which is a pointer to BYTE array.) I've tried ...
0
votes
2answers
421 views
Python Compression Run Length encoding
I am trying to learn about run length encoding and I found this challenge online that I cant do. It requires you to write a compression function called compression(strg) that takes a binary string ...
1
vote
3answers
1k views
Run Length Encoding in Matlab
I'm very new with MatLab, I have Run Length Encoding code but it seems to not work, can you help me?
I have this input :
ChainCode = ...
0
votes
1answer
208 views
run-length encoding linked list in place (Java)
My LinkedList is singularly linked (Each node has a count + next reference).
I need to create runlengthencode method which takes a LinkedList and returns the run-length encoded version of the list ...
-2
votes
2answers
2k views
java Run-length encoding
I have no idea how to start my assignment.
We got to make a Run-length encoding program,
for example, the users enters this string:
aaaaPPPrrrrr
is replaced with
4a3P5r
Can someone help me get ...
1
vote
5answers
159 views
Remove code duplication from RLE pattern, without resorting to Haskell?
The RLE (run length encoding) pattern seems to come up a lot in my work.
The essence of it is that you are outputting a reduction of the elements encountered since the last 'break' each time that you ...
-1
votes
1answer
154 views
C# LinkedList vs List for Run Length Encoding?
Which one of these would be more suitable for RLE on bytes? I need to be able to insert data in the list reasonably quickly, but I also need to be able to find out where say uncompressed byte 3987 ...
0
votes
1answer
620 views
Run length encoding using O(1) space
Can we do the run-length encoding in place(assuming the input array is very large)
We can do for the cases such as AAAABBBBCCCCDDDD
A4B4C4D4
But how to do it for the case such as ABCDEFG?
where the ...
0
votes
1answer
224 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 ...
4
votes
1answer
270 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, ...
0
votes
2answers
448 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 ...
3
votes
3answers
1k 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 ...
1
vote
2answers
301 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 ...
5
votes
2answers
270 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 ...
9
votes
2answers
398 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 ...
1
vote
1answer
106 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
994 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
238 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 ...
1
vote
3answers
500 views
How to do run length encoding?
I have a long string for example it could be "aaaaaabbccc". Need to represent it as "a6b2c3". What's the best way to do this? I could do this in linear time by comparing characters and incrementing ...
5
votes
4answers
534 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 => ...
3
votes
3answers
909 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 ...
4
votes
6answers
448 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
5answers
947 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 ...
0
votes
1answer
521 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 ...