diff --git a/README.md b/README.md index d7c4347..4b6f40c 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,11 @@ In this example specifically we shall be compressing a grayscale image. Given th One method to compress an image is to store it in a tree data structure where each node would have up to 4 children. Each of them shall represent a select partition of the image in one of the four quartiles: northwest, northeast, southwest, and southeast. Needless to say, the root node marked with a `-1` will either represent the entire image or another subset of partitions. The partitioning process will continue till each node in the partitioned subset carries the same color intensity. -Let's consider the following image content +Let's consider the following image content: + + ## License MIT \ No newline at end of file diff --git a/assets/compression_tree.png b/assets/compression_tree.png new file mode 100644 index 0000000..aaad48d Binary files /dev/null and b/assets/compression_tree.png differ