Picture: Outputs generated from our code– from left to right, synthetic input, defocus map output and defocused image.
This repository contains the official matlab implementation of SYNDOF generation used in the following paper:
Deep Defocus Map Estimation using Domain Adaptation, CVPR2019
Junyong Lee (POSTECH), Sungkil Lee (Sungkyunkwan University), Sunghyun Cho (POSTECH) Seungyong Lee (POSTECH)
For any inquiries, please contact junyonglee@postech.ac.kr
All material related to our paper is available via the following links:
Link |
---|
Synthetic Datasets |
Paper PDF |
Paper Repository |
- Download the synthetic datasets and place it under
./data
(file structure should be./data/synthetic_datasets
).
On matlab console, type
# max_coc, input_offset, output_offset, is_random_gen, is_gpu, gpu_num
generate_blur_by_depth(29, 'data', 'out', false, true, 1)
check the results under ./out
, which is structured as,
.
├── ...
├── out
│ ├── blur_map/ # directory for output defocus map
│ ├── blur_map_binary/ # directory for binarized defocus map
│ ├── blur_map_norm/ # directory for normalized defocus map
│ ├── depth_decomposed/ # directory for decomposed depth
│ ├── image/ # directory for input image (with its modified name)
└── ...
We rounded real values of defocus map into the nearest 10th. When you read a defocus map, for example in python, read a file as follows,
image = (np.float32(cv2.imread(file_name, cv2.IMREAD_UNCHANGED))/10.)[:, :, 1]
image = image / 7. # 7 = (maxCoC - 1) / 4, where maxCoC is 29 in this case.
If you find this code useful, please consider citing:
@InProceedings{Lee_2019_CVPR,
author = {Lee, Junyong and Lee, Sungkil and Cho, Sunghyun and Lee, Seungyong},
title = {Deep Defocus Map Estimation Using Domain Adaptation},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June},
year = {2019}
}
This software is being made available under the terms in the LICENSE file.
Any exemptions to these terms requires a license from the Pohang University of Science and Technology.
Project ‘COUPE’ aims to develop software that evaluates and improves the quality of images and videos based on big visual data. To achieve the goal, we extract sharpness, color, composition features from images and develop technologies for restoring and improving by using it. In addition,ersonalization technology through userreference analysis is under study.
Please checkout out other Coupe repositories in our Posgraph github organization.