Paper | Pretrained Model | Youtube video 🔥 | Colab demo
Deep Exemplar-based Video Colorization, CVPR2019
Bo Zhang1,3,
Mingming He1,5,
Jing Liao2,
Pedro V. Sander1,
Lu Yuan4,
Amine Bermak1,
Dong Chen3
1Hong Kong University of Science and Technology,2City University of Hong Kong,
3Microsoft Research Asia, 4Microsoft Cloud&AI, 5USC Institute for Creative Technologies
- Python 3.6+
- Nvidia GPU + CUDA, CuDNN
First use the following commands to prepare the environment:
conda create -n ColorVid python=3.6
source activate ColorVid
pip install -r requirements.txt
Then, download the pretrained models from this link, unzip the file and place the files into the corresponding folders:
video_moredata_l1
under thecheckpoints
foldervgg19_conv.pth
andvgg19_gray.pth
under thedata
folder
In order to colorize your own video, it requires to extract the video frames, and provide a reference image as an example.
- Place your video frames into one folder, e.g.,
./sample_videos/v32_180
- Place your reference images into another folder, e.g.,
./sample_videos/v32
If you want to automatically retrieve color images, you can try the retrieval algorithm from this link which will retrieve similar images from the ImageNet dataset. Or you can try this link on your own image database.
python test.py --image-size [image-size] \
--clip_path [path-to-video-frames] \
--ref_path [path-to-reference] \
--output_path [path-to-output]
We provide several sample video clips with corresponding references. For example, one can colorize one sample legacy video using:
python test.py --clip_path ./sample_videos/clips/v32 \
--ref_path ./sample_videos/ref/v32 \
--output_path ./sample_videos/output
Note that we use 216*384 images for training, which has aspect ratio of 1:2. During inference, we scale the input to this size and then rescale the output back to the original size.
We also provide training code for reference. The training can be started by running:
python train.py --data_root [root of video samples] \
--data_root_imagenet [root of image samples] \
--gpu_ids [gpu ids] \
We do not provide the full video dataset due to the copyright issue. For image samples, we retrieve semantically similar images from ImageNet using this repository. Still, one can refer to our code to understand the detailed procedure of augmenting the image dataset to mimic the video frames.
⭐ Please check our Youtube demo for results of video colorization.
If you use this code for your research, please cite our paper.
@inproceedings{zhang2019deep,
title={Deep exemplar-based video colorization},
author={Zhang, Bo and He, Mingming and Liao, Jing and Sander, Pedro V and Yuan, Lu and Bermak, Amine and Chen, Dong},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={8052--8061},
year={2019}
}
If you are also interested in restoring the artifacts in the legacy photo, please check our recent work, bringing old photo back to life.
@inproceedings{wan2020bringing,
title={Bringing Old Photos Back to Life},
author={Wan, Ziyu and Zhang, Bo and Chen, Dongdong and Zhang, Pan and Chen, Dong and Liao, Jing and Wen, Fang},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
pages={2747--2757},
year={2020}
}
This project is licensed under the MIT license.