run length compression algorithm

5 次查看(过去 30 天)
Kavita
Kavita 2019-7-10
How to apply run length compression and save compressed data by Run Length Coding in matlab?

回答(1 个)

Samatha Aleti
Samatha Aleti 2019-7-18
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);

类别

Help CenterFile Exchange 中查找有关 Denoising and Compression 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by