Huffman Coding This blog will be completed soon please keep in touch in the meantime. Huffman coding is a popular lossless Variable Length Coding (VLC), based on the following principles: Shorter code words are assigned to more probable symbols and longer code words are assigned to less probable symbols. No code word of a symbol […]
image compression
Image Compression: Run Length Encoding in Python
Run Length Encoding is one of the image compression algorithms that is lossless. So let’s get started with simple intro of Run Length Encoding and getting hands dirty. This blog is cross-posted from q-viper.github.io. (Teaser Image taken from here.) If you are interested to learn about Huffman encoding of lossless image compression then please visit […]