run length compression algorithm

How to apply run length compression and save compressed data by Run Length Coding in matlab?

Antworten (1)

Samatha Aleti
Samatha Aleti am 18 Jul. 2019

0 Stimmen

Hi,
You can use the Run length Encoding function which is available in MATLAB File Exchange. Here is the link to download and use
Here is an example
X = [56 56 56 56 28 28 255 255 9 9 9];
Y = rle(X);

Kategorien

Mehr zu Denoising and Compression finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 10 Jul. 2019

Beantwortet:

am 18 Jul. 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by