color_transfer
color_transfer copied to clipboard
Performs color transfer between two images. Loosely based on the "Color Transfer between Images" paper by Reinhard et al., 2001.
I have identified a simple enhancement of the basic Reinhard method which for some input image pairs can produce images of far better quality. https://github.com/TJCoding/Enhanced-Image-Colour-Transfer The implementation is in C++...
I believe the original paper means that we want the source image to mimic the color performance of the target image, and output a transferred **source image**. However, in your...
When I use following line to install the lib, `pip install color_transfer` and use codes in the `example.py`, there will be errors: `TypeError: color_transfer() got an unexpected keyword argument 'preserve_paper'`...
Any interest in including a utility function for choosing the 'truest to source' color transfer? I've implemented an (unoptimized) [`auto_color_transfer`](https://github.com/AdamSpannbauer/color_transfer/blob/master/color_transfer/__init__.py#L88) function that attempts to choose the best combination of `clip`...