From fbfa1a220773a6bee9f3a802ea545d3df24f7cb1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Vojt=C4=9Bch=20Moravec?= <theazgra@gmail.com>
Date: Thu, 14 Feb 2019 14:25:17 +0100
Subject: [PATCH] Updated of the plan.

---
 README.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 0b5cd88..e815176 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)
-- 
GitLab