An open API service indexing awesome lists of open source software.

https://github.com/youssef-saaed/data-compression-techniques-from-scratch

Data compression algorithms implemented from scratch: LZ77, LZ78, Huffman (Standard & Adaptive), Vector Quantization, Image DPCM.
https://github.com/youssef-saaed/data-compression-techniques-from-scratch

adaptive-huffman data-compression dpcm huffman-coding java lz77 lz78 predictive-coding standard-huffman vector-quantization

Last synced: about 1 month ago
JSON representation

Data compression algorithms implemented from scratch: LZ77, LZ78, Huffman (Standard & Adaptive), Vector Quantization, Image DPCM.

Awesome Lists containing this project

README

          

# Data Compression Techniques From Scratch

In this repository, I will implement some data compression algorithms from scratch. At this time, the available algorithm implementations are:

- [LZ77](./LZ77)
- [LZ78](./LZ78)
- [Standard Huffman](./Standard%20Huffman)
- [Adaptive Huffman](./Adaptive%20Huffman)
- [Vector Quantization](./VectorQuantization)
- [Image DPCM](./ImageDPCM/)

There is a README.md for each algorithm in its directory.

**Developed by Yousef Said**