Contains three compression method alghorithms for point cloud data, and also a point cloud to test it.
Compression options:
Run with Lz78
python main.py comp lz78
Run with Lz77
python main.py comp lz77
Run with Huffman
python main.py comp huff
Run with Huffman and Lz78
python main.py comp hul8
Decompression options:
Run with Lz78
python main.py decomp lz78
Run with Lz77
python main.py decomp lz77
Run with Huffman
python main.py decomp huff
Run with Huffman and Lz78
python main.py decomp hul8