From 13153086b68d276d16ae56970840e936e531adae Mon Sep 17 00:00:00 2001 From: Ajay Joshi Date: Thu, 26 Dec 2024 10:40:56 -0800 Subject: [PATCH 1/2] test for zanzibar --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index c06321b..f56c577 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ ## Run codec python3 driver.py [path of image to be compressed] compressed/[name of compressed image file] + # HiFiC paper - part of Tensorflow compression ## Run codec python3 tfci.py [mode = compress/decompress] [model=hific-lo/hific-hi] @@ -11,6 +12,8 @@ Decode: python3 tfci.py decompress ../data/image_compression_benchmark/big_build # K-means clustering-based codec ## Run codec python3 kmeans.py [path of image to be compressed] compressed/[name of compressed image file] reconstructed/[name of decoded image file] [number of clusters] + + # Classical algorithms - JPEG/PNG ## Build codec @@ -18,3 +21,7 @@ Compile: make all Remove all executables: make clean ## Run codec ./mycodec [path of image to be compressed] compressed/[name of compressed image file] reconstructed/[name of decoded image file] + + + + From ab5ea0def1e653d8dfb036cf4487b164c198aea9 Mon Sep 17 00:00:00 2001 From: Ajay Joshi Date: Thu, 26 Dec 2024 11:44:53 -0800 Subject: [PATCH 2/2] second commit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f56c577..410eff4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ ## Run codec python3 driver.py [path of image to be compressed] compressed/[name of compressed image file] - # HiFiC paper - part of Tensorflow compression ## Run codec python3 tfci.py [mode = compress/decompress] [model=hific-lo/hific-hi] @@ -17,6 +16,7 @@ python3 kmeans.py [path of image to be compressed] compressed/[name of compresse # Classical algorithms - JPEG/PNG ## Build codec + Compile: make all Remove all executables: make clean ## Run codec