Home

Awesome

Replacing Mobile Camera ISP with a Single Deep Learning Model

<br/> <img src="http://people.ee.ethz.ch/~ihnatova/assets/img/pynet/pynet_teaser.jpg"/> <br/>

1. Overview [Paper] [TensorFlow Implementation] [Project Webpage]

#f03c15  This is an alternative PyTorch implementation of the paper. The original codes and pre-trained models can be found here.

This repository provides PyTorch implementation of the RAW-to-RGB mapping approach and PyNET CNN presented in this paper. The model is trained to convert RAW Bayer data obtained directly from mobile camera sensor into photos captured with a professional Canon 5D DSLR camera, thus replacing the entire hand-crafted ISP camera pipeline. The provided pre-trained PyNET model can be used to generate full-resolution 12MP photos from RAW (DNG) image files captured using the Sony Exmor IMX380 camera sensor. More visual results of this approach for the Huawei P20 and BlackBerry KeyOne smartphones can be found here.

<br/>

2. Prerequisites

<br/>

3. First steps

<br/>

4. PyNET CNN

<br/> <img src="http://people.ee.ethz.ch/~ihnatova/assets/img/pynet/pynet_architecture_github.png" alt="drawing" width="1000"/> <br/>

PyNET architecture has an inverted pyramidal shape and is processing the images at five different scales (levels). The model is trained sequentially, starting from the lowest 5th layer, which allows to achieve good reconstruction results at smaller image resolutions. After the bottom layer is pre-trained, the same procedure is applied to the next level till the training is done on the original resolution. Since each higher level is getting upscaled high-quality features from the lower part of the model, it mainly learns to reconstruct the missing low-level details and refines the results. In this work, we are additionally using one upsampling convolutional layer (Level 0) on top of the model that upscales the image to its target size.

Compared to the original TensorFlow model, this implementation contains three major modifications:

  1. Instance normalization is used in PyNET's level 1.
  2. Transposed convolutional layers are replaced with upsampling convolution.
  3. Modified weight coefficients of the loss functions.
<br/>

5. Training the model

The model is trained level by level, starting from the lowest (5th) one:

python train_model.py level=<level>

Obligatory parameters:

level: 5, 4, 3, 2, 1, 0

Optional parameters and their default values:

batch_size: 50   -   batch size [small values can lead to unstable training] <br/> learning_rate: 5e-5   -   learning rate <br/> restore_epoch: None   -   epoch to restore (when not specified, the last saved model for PyNET's level+1 is loaded)<br/> num_train_epochs: 8, 8, 17, 17, 25, 50 (for levels 5 - 0)   -   the number of training epochs <br/> dataset_dir: raw_images/   -   path to the folder with Zurich RAW to RGB dataset <br/>

</br>

Below we provide the commands used for training the model on four Nvidia Tesla V100 GPUs, each one with 16GB of RAM. When using GPUs with a smaller total amount of memory, the batch size should be adjusted accordingly:

python train_model.py level=5 batch_size=50 num_train_epochs=8
python train_model.py level=4 batch_size=50 num_train_epochs=8
python train_model.py level=3 batch_size=50 num_train_epochs=17
python train_model.py level=2 batch_size=50 num_train_epochs=17
python train_model.py level=1 batch_size=16 num_train_epochs=25
python train_model.py level=0 batch_size=12 num_train_epochs=50
<br/>

6. Test the provided pre-trained models on full-resolution RAW image files

python test_model.py level=0 orig=true

Optional parameters:

use_gpu: true,false   -   run the model on GPU or CPU <br/> dataset_dir: raw_images/   -   path to the folder with Zurich RAW to RGB dataset <br/>

<br/>

7. Test the obtained model on full-resolution RAW image files

python test_model.py level=<level>

Obligatory parameters:

level: 5, 4, 3, 2, 1, 0

Optional parameters:

restore_epoch: None   -   epoch to restore (when not specified, the last saved model for level=<level> is loaded)<br/> use_gpu: true,false   -   run the model on GPU or CPU <br/> dataset_dir: raw_images/   -   path to the folder with Zurich RAW to RGB dataset <br/>

<br/>

8. Folder structure

models/   -   logs and models that are saved during the training process <br/> models/original/   -   the folder with the provided pre-trained PyNET model <br/> raw_images/   -   the folder with Zurich RAW to RGB dataset <br/> results/   -   visual image results saved while training <br/> results/full-resolution/   -   visual results for full-resolution RAW image data saved during the testing <br/>

load_dataset.py   -   python script that loads training data <br/> model.py   -   PyNET implementation (PyTorch) <br/> train_model.py   -   implementation of the training procedure <br/> test_model.py   -   applying the pre-trained model to full-resolution test images <br/> utils.py   -   auxiliary functions <br/> vgg.py   -   loading the pre-trained vgg-19 network <br/>

<br/>

9. Bonus files

These files can be useful for further experiments with the model / dataset:

dng_to_png.py   -   convert raw DNG camera files to PyNET's input format <br/> evaluate_accuracy.py   -   compute PSNR and MS-SSIM scores on Zurich RAW-to-RGB dataset for your own model <br/>

<br/>

10. License

Copyright (C) 2020 Andrey Ignatov. All rights reserved.

Licensed under the CC BY-NC-SA 4.0 (Attribution-NonCommercial-ShareAlike 4.0 International).

The code is released for academic research use only.

<br/>

11. Citation

@article{ignatov2020replacing,
  title={Replacing Mobile Camera ISP with a Single Deep Learning Model},
  author={Ignatov, Andrey and Van Gool, Luc and Timofte, Radu},
  journal={arXiv preprint arXiv:2002.05509},
  year={2020}
}
<br/>

12. Any further questions?

Please contact Andrey Ignatov (andrey@vision.ee.ethz.ch) for more information