├── CMakeLists.txt ├── LICENSE ├── README.md ├── inc ├── imageMarlin.hpp ├── marlin.h └── marlin.hpp ├── src ├── configuration.cc ├── dictionary.cc ├── distribution.hpp ├── entropyCoder.cc ├── entropyDecoder.cc ├── imageBlockEC.cc ├── imageBlockEC.hpp ├── imageCoder.cc ├── imageDecoder.cc ├── imageHeader.cc ├── imageTransformer.cc ├── imageTransformer.hpp ├── instantiations.h ├── marlin.cc ├── prebuilt.cc ├── profiler.cc └── profiler.hpp ├── test └── correctness.cc └── utils ├── buildPrecalculatedDictionaries.cc ├── imageMarlin.cc └── testImage.cc /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/README.md -------------------------------------------------------------------------------- /inc/imageMarlin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/inc/imageMarlin.hpp -------------------------------------------------------------------------------- /inc/marlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/inc/marlin.h -------------------------------------------------------------------------------- /inc/marlin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/inc/marlin.hpp -------------------------------------------------------------------------------- /src/configuration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/configuration.cc -------------------------------------------------------------------------------- /src/dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/dictionary.cc -------------------------------------------------------------------------------- /src/distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/distribution.hpp -------------------------------------------------------------------------------- /src/entropyCoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/entropyCoder.cc -------------------------------------------------------------------------------- /src/entropyDecoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/entropyDecoder.cc -------------------------------------------------------------------------------- /src/imageBlockEC.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/imageBlockEC.cc -------------------------------------------------------------------------------- /src/imageBlockEC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/imageBlockEC.hpp -------------------------------------------------------------------------------- /src/imageCoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/imageCoder.cc -------------------------------------------------------------------------------- /src/imageDecoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/imageDecoder.cc -------------------------------------------------------------------------------- /src/imageHeader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/imageHeader.cc -------------------------------------------------------------------------------- /src/imageTransformer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/imageTransformer.cc -------------------------------------------------------------------------------- /src/imageTransformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/imageTransformer.hpp -------------------------------------------------------------------------------- /src/instantiations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/instantiations.h -------------------------------------------------------------------------------- /src/marlin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/marlin.cc -------------------------------------------------------------------------------- /src/prebuilt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/prebuilt.cc -------------------------------------------------------------------------------- /src/profiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/profiler.cc -------------------------------------------------------------------------------- /src/profiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/src/profiler.hpp -------------------------------------------------------------------------------- /test/correctness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/test/correctness.cc -------------------------------------------------------------------------------- /utils/buildPrecalculatedDictionaries.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/utils/buildPrecalculatedDictionaries.cc -------------------------------------------------------------------------------- /utils/imageMarlin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/utils/imageMarlin.cc -------------------------------------------------------------------------------- /utils/testImage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinezTorres/marlin/HEAD/utils/testImage.cc --------------------------------------------------------------------------------