Image recoloring without a target image
Image Recoloring Based on Object Color Distributions
Mahmoud Afifi1, Brian Price2, Scott Cohen2, and Michael S. Brown1
1York University 2Adobe Research
Project page
Abstract
We present a method to perform automatic image recoloring based on the distribution of colors associated with objects present in an image. For example, when recoloring an image containing a sky object, our method incorporates the observation that objects of class 'sky' have a color distribution with three dominant modes for blue (daytime), yellow/red (dusk/dawn), and dark (nighttime). Our work leverages recent deep-learning methods that can perform reasonably accurate object-level segmentation. By using the images in datasets used to train deep-learning object segmentation methods, we are able to model the color distribution of each object class in the dataset. Given a new input image and its associated semantic segmentation (i.e., object mask), we perform color transfer to map the input image color histogram to a set of target color histograms that were constructed based on the learned color distribution of the objects in the image. We show that our framework is able to produce compelling color variations that are often more interesting and unique than results produced by existing methods.
Quick start
- Run install_p1
- Run install_p2
- Go to the
demo
directory and copy your input images toinput_images
directory - Run
demo_recoloring
- The recolored images will be in the
recolored_images
directory and the generated semantic masks will be inoutput_masks
directory. - Run
demo_GUI
for our interactive GUI version.
Manual installation
- Install RefineNet for semantic segmentation.
- Download the trained model for ADE20k dataset. In our experiments, we used the ResNet-152 model.
- Create a directory and name it
SS_CNN
. This directory should contain theRefineNet
direcotry after installing RefineNet and MatConvNet (prerequisite for RefineNet). For example, the read me file of RefineNet should be located in the following pathSS_CNN/RefineNet/README.md
- Use the following matlab code to add paths for our sub-directories:
current = pwd;
addpath([current '/colour-transfer-master']);
addpath([current '/cp']);
addpath([current '/emd']);
addpath([current '/getMask']);
addpath([current '/recoloring']);
addpath([current '/general']);
savepath
- Compile mex files for the Earth Mover's Distance (EMD) files located in the
emd
directory. Use the following Matlab code:
mex EMD1.cpp
mex EMD2.cpp
mex EMD3.cpp
Be sure that you select MinGW for C++ Mex file compiling. To change it, use the following Matlab command:
mex -setup C++
- Download Scene Parsing dataset (we only use the training set which includes training images/semantic masks). The dataset should be located in the following path
../ADEChallengeData2016
(assuming you are located in the root directory of our source code). For example, you should be able to read the first training imageADE_train_00000001.jpg
and its semantic mask by writing the following Matlab code:
I = imread(fullfile('..','ADEChallengeData2016','images','training','ADE_train_00000001.jpg'));
M = imread(fullfile('..','ADEChallengeData2016','annotations','training','ADE_train_00000001.png'));
- Download our pre-computed data that includes the distribution of object color distributions (DoD) from here (also, is available here). Make sure that you locate the DoD data in the following path
../data/DoD_data
(assuming you are located in the root directory of our source code). For example, you should be able to load the first cluster data by writing the following Matlab code:
load(fullfile('..','data','DoD_data','airplane_clust_1.mat'));
GUI
Try our GUI version which includes the following features:
- Semantic mask adjustment: You can adjust the semantic mask in an interactive way (semi-automated and manual adjustments are provided).
- Selecting primary object: You can select the primary object to get different results.
To test it, run demo_GUI
from the demo
directory.
Publication
If you use this code, please cite our paper:
Mahmoud Afifi, Brian Price, Scott Cohen, and Michael S. Brown, Image Recoloring Based on Object Color Distributions, Eurographics 2019 - Short Papers, 2019
@inproceedings {afifi2019imageRecoloring,
booktitle = {Eurographics 2019 - Short Papers},
title = {{Image Recoloring Based on Object Color Distributions}},
author = {Afifi, Mahmoud and Price, Brian and Cohen, Scott and Brown, Michael S.},
year = {2019},
publisher = {The Eurographics Association},
ISSN = {1017-4656},
DOI = {10.2312/egs.20191008}
}
Related Research Projects
Citar como
Mahmoud Afifi, Brian Price, Scott Cohen, and Michael S. Brown, Image Recoloring Based on Object Color Distributions, Eurographics 2019 - Short Papers, 2019
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- Image Processing and Computer Vision > Image Processing Toolbox > Image Segmentation and Analysis > Image Segmentation > Color Segmentation >
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
colour-transfer-master
cp
demo
emd
general
getMask
gui
recoloring
No se pueden descargar versiones que utilicen la rama predeterminada de GitHub
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.4 | . |
|
|
1.0.3 | updated description |
|
|
1.0.2 | GUI added. |
|
|
1.0.1 | description updated |
|
|
1.0.0 |
|