kaiyeh0913 / colorcorrectionmatrix

Compute color correction matrix in python and C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compute Color Correction Matrix (CCM)

We compute Color Correction Matrix A. In other words, we calculate a 4x3 matrix A which approximate the following equation.

Let P be a reference color checker matrix (24 x 3) and O be a color checker matrix to correct (24 x 3).
P = [O 1] A

reference image to correct

Data

We have to prepare color checker patch data as csv format. There are example data in data directory.

  • data/colorchart_photo_strobo_linear.csv
  • data/colorchart_rendered_strobo_linear.csv

They are 24x3 matrix. The data are made by reading pixel values using Natron2

Dependency

  • Python
    • numpy
    • matplotlib
    • Pillow
    • OpenEXR
  • C++
    • args.hxx(included in this repo)
    • Eigen3

Build c++ version of computeCCM

$ cd cpp
$ mkdir build
$ cmake ../
$ make

Usage

# computeCCM.py [-h] [-g GAMMA] reference_csv source_csv output_csv
$ computeCCM.py data/colorchart_photo_strobo_linear.csv data/colorchart_rendered_strobo_linear.csv ccm.csv

This command generates optimal Color Correction Matrix as csv file (ccm.csv)

Test

We can compare reference data and corrected data using plotChart.py

$ plotChart.py ccm.csv data/colorchart_photo_strobo_linear.csv data/colorchart_rendered_strobo_linear.csv ccm.csv chart

plot chart

Each patch shows reference color and corrected color. Upper one is reference and lower one is corrected color. The numbers mean relative error.

Color Correction

Correct given image using CCM. correctColor.py reads jpg or png images, and correctColorExr.py reads exr images.

Usage

$ correctColor.py ccm.csv reference.png corrected

result
corrected image

Image Diff

Generate diff image between a reference image and a corrected image. We compute a difference between two images and take average of rgb for each pixels.

Usage

$ imageDiff.py photo_reference.png corrected.png

diff

The difference is small as the color approaches blue and the difference is big as the color approaches red.

License

CCM is licensed under MIT license.

Third party licenses

  • args.hxx is licensed under MIT License
  • Eigen is licensed under Mozilla Public License

References

About

Compute color correction matrix in python and C++

License:MIT License


Languages

Language:C++ 89.0%Language:Python 10.8%Language:CMake 0.1%