Skip to content
#

run-length-decoding

Here are 8 public repositories matching this topic...

This Python repository provides an implementation for JPEG image compression with both low and high compression modes. The script employs various transformations and compression techniques to optimize the file size of JPEG images while preserving acceptable image quality.

  • Updated Dec 6, 2023
  • Python

Run-length encoding ( RLE) is a form of lossless data compression in which runs of data (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. This is most useful on data that contains many such runs. I am implementing this using python. One …

  • Updated Feb 23, 2021
  • Python

Improve this page

Add a description, image, and links to the run-length-decoding topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the run-length-decoding topic, visit your repo's landing page and select "manage topics."

Learn more