run length compression algorithm

7 visualizaciones (últimos 30 días)
Kavita
Kavita el 10 de Jul. de 2019
Respondida: Samatha Aleti el 18 de Jul. de 2019
How to apply run length compression and save compressed data by Run Length Coding in matlab?

Respuestas (1)

Samatha Aleti
Samatha Aleti el 18 de Jul. de 2019
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);

Categorías

Más información sobre Denoising and Compression en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by