├── .gitignore ├── ColorCor.cpp ├── Makefile ├── README.md ├── docs └── chroma.pdf └── examples ├── after.png ├── after1.png ├── after2.png ├── before.png ├── before1.png └── before2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/.gitignore -------------------------------------------------------------------------------- /ColorCor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/ColorCor.cpp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/README.md -------------------------------------------------------------------------------- /docs/chroma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/docs/chroma.pdf -------------------------------------------------------------------------------- /examples/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/examples/after.png -------------------------------------------------------------------------------- /examples/after1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/examples/after1.png -------------------------------------------------------------------------------- /examples/after2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/examples/after2.png -------------------------------------------------------------------------------- /examples/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/examples/before.png -------------------------------------------------------------------------------- /examples/before1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/examples/before1.png -------------------------------------------------------------------------------- /examples/before2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/ColorCorrection/HEAD/examples/before2.png --------------------------------------------------------------------------------