diff --git a/README.md b/README.md index 0b5cd8890a3ada0132f3e07e91a33a4a71368d23..e8151769735c7d3cdfd2f00699ee8a7a866fd3cc 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,10 @@ Later on, we can extend our program to handle more things from the file, like: ## Compression of images - I tested [FLIF](https://flif.info/) compression on ~200 MB file. Compression ratio was good but the speed on the other hand was really bad. Decompression wasn't better, it was slow too. - Even lossy compression was slow. This compression is probably only good for small images. -- Next step is to test B3D compression. +- **Next step is to test B3D compression.** +- Pure LZW creates dictionary as it goes. Can create entries which aren't found in data. +- LZ77 is better variant. +- **Look at Huffman encoding, then maybe Arithmetic and in a spare time install nVidia drivers to test ot B3D library.** ## Space filling (*Peano*) curves - [Wikipedia](https://en.wikipedia.org/wiki/Space-filling_curve)