2022-1, Gachon University, Department of Software, Computer Vision Term Project
Hint-based colorization reconstructs complete colorful images by propagating the color hint given by users. For the hint-based colorization task, each solution should first convert the provided RGB image to LAB image. The inputs of the model should be an ”L” image (i.e. grayscale image or intensity image) and a color hint map. The output will be a predicted ”AB” image that will be concatenated with the input L image to produce the final colorized image. An overview is shown below.
[example : Real-Time User-Guided Image Colorization with Learned Deep Priors](https://richzhang.github.io/InteractiveColorization/)- Dataset Size : 10000 / 2000
- Using Place365 and ImageNet datasets
- Image size : 256 x 256
- Batch size : 32
- Optimizer : Adam (betas = (0.5, 0.999))
- Learning rate : 5e-4 (~186 epoch) -> 5e-5 (~286 epoch) -> 5e-6 (~324 epoch) -> 5e-8 (~338 epoch)
- Our best model => 338 epoch model
epoch | PSNR | SSIM |
---|---|---|
186 | 31.392856 | 0.966241 |
338 | 31.521526 | 0.966740 |
You can download the optimal weight pth from the link below and run this model.
https://drive.google.com/file/d/14MoLIljh5RvXacBYw33ajaY3Zkd76Mu9/view?usp=sharing
- Ronneberger, Olaf, Philipp Fischer, and Thomas Brox. "U-net: Convolutional networks for biomedical image segmentation." International Conference on Medical image computing and computer-assisted intervention. Springer, Cham, 2015.
- Zhang, Richard, Phillip Isola, and Alexei A. Efros. "Colorful image colorization." European conference on computer vision. Springer, Cham, 2016.
- Zhang, Richard, et al. "Real-time user-guided image colorization with learned deep priors." arXiv preprint arXiv:1705.02999 (2017)
- Xiao, Yi, et al. "Interactive deep colorization using simultaneous global and local inputs." ICASSP 2019-2019 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE, 2019.
- Lu, Chang, et al. "ALResNet: Attention-Driven Lightweight Residual Network for Fast and Accurate Image Recognition." 2021 The 4th International Conference on Machine Learning and Machine Intelligence. 2021.
This project belongs to computer vision Team 6, Gachon Uni. (2022-1)