├── LICENSE ├── NBLI ├── NBLI.exe ├── README.md ├── fNBLI ├── fNBLI.exe ├── image ├── Gray.pgm ├── Gray.png ├── RGB.png └── RGB.ppm └── src ├── FileIO.h ├── NBLI ├── AdvancedPredictor.h ├── AutoReorder.h ├── CRC32.h ├── GolombCodeTree.h ├── Header.h ├── Mapper.h ├── NBLI.cpp ├── NBLI.h ├── NBLIcodec.h ├── PlaneModel.h ├── main.cpp └── rANS.h └── imageio ├── imageio.h ├── imageio_png.c ├── imageio_pnm.c └── uPNG ├── uPNG.c └── uPNG.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/LICENSE -------------------------------------------------------------------------------- /NBLI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/NBLI -------------------------------------------------------------------------------- /NBLI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/NBLI.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/README.md -------------------------------------------------------------------------------- /fNBLI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/fNBLI -------------------------------------------------------------------------------- /fNBLI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/fNBLI.exe -------------------------------------------------------------------------------- /image/Gray.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/image/Gray.pgm -------------------------------------------------------------------------------- /image/Gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/image/Gray.png -------------------------------------------------------------------------------- /image/RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/image/RGB.png -------------------------------------------------------------------------------- /image/RGB.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/image/RGB.ppm -------------------------------------------------------------------------------- /src/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/FileIO.h -------------------------------------------------------------------------------- /src/NBLI/AdvancedPredictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/AdvancedPredictor.h -------------------------------------------------------------------------------- /src/NBLI/AutoReorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/AutoReorder.h -------------------------------------------------------------------------------- /src/NBLI/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/CRC32.h -------------------------------------------------------------------------------- /src/NBLI/GolombCodeTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/GolombCodeTree.h -------------------------------------------------------------------------------- /src/NBLI/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/Header.h -------------------------------------------------------------------------------- /src/NBLI/Mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/Mapper.h -------------------------------------------------------------------------------- /src/NBLI/NBLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/NBLI.cpp -------------------------------------------------------------------------------- /src/NBLI/NBLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/NBLI.h -------------------------------------------------------------------------------- /src/NBLI/NBLIcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/NBLIcodec.h -------------------------------------------------------------------------------- /src/NBLI/PlaneModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/PlaneModel.h -------------------------------------------------------------------------------- /src/NBLI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/main.cpp -------------------------------------------------------------------------------- /src/NBLI/rANS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/NBLI/rANS.h -------------------------------------------------------------------------------- /src/imageio/imageio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/imageio/imageio.h -------------------------------------------------------------------------------- /src/imageio/imageio_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/imageio/imageio_png.c -------------------------------------------------------------------------------- /src/imageio/imageio_pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/imageio/imageio_pnm.c -------------------------------------------------------------------------------- /src/imageio/uPNG/uPNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/imageio/uPNG/uPNG.c -------------------------------------------------------------------------------- /src/imageio/uPNG/uPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXuan95/NBLI/HEAD/src/imageio/uPNG/uPNG.h --------------------------------------------------------------------------------