Skip to content

tonyketcham/Depth-Mapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

69 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ“ท Depth Mapper

Generates a depth map from a focal stack of images, using ideas proposed in this Stanford graphics paper: https://graphics.stanford.edu/papers/focalstack/focalstack.pdf.

Supports JPG input stacks, with the goal of supporting a DNG in-and-out pipeline. A focal stack of DNG images would be fed in as input with one single DNG exported, containing an embedded depth map. This would allow DSLR users the ability to take advantage of the depth masking capabilities of Adobe Camera Raw, Lightroom, and other RAW processors. Previously, only stereoscopic cameras, light field cameras, and digital renders could make use of these masking features.

This project strongly utilizes OpenCV and eventually OpenCL through JavaCV. This wrapper, unlike native OpenCV for Java, allows use of Transparent API for seamless connection between CV and CL.

๐Ÿ—œ๏ธ Example

Take this highly textured scene of 32 input images:

Image in the Stack

Image with shallow depth of field

๐Ÿ“š Focus Stack

Focus stack of highly textured scene

๐Ÿ“ฆ Depth Map

Depth map of highly textured scene

Current State + Future Improvements

The algorithm for performing depth mapping considers the highest rate of change for a given pixel against every pixel at the same coordinate in the remaining images. As it is, the depth mapping performs best assuming images are aligned prior to input. The current alignment algorithm has a poor runtime for high megapixel image stacks (although it does provide quite an accurate alignment) but this time complexity can be improved greatly through a careful combination of ECC and homography-based image alignment.

๐Ÿ”ง Improvements

  • DNG file handling will be implemented for use of the generated depth map as an embedded map for the raw focal stack it represents.
  • The depth mapping algorithm will be significantly improved with image segmentation to constrain regions of pixels to a certain set of input files, as to reduce the noise of non-discriminable regions (regions with very little texture). This reduces haloing around sharp edges.
  • Additional use of OpenCL to improve execution time of image alignment.

๐Ÿ”ฌ Installation

A Maven Eclipse project is provided. Make sure you have OpenCV 4.1.1 installed as a User Library in eclipse as opencv. The project should function with OpenCV 3.* as well, however this has not been tested.

The Launcher.java should be ran and the included folder of test images will be referenced to generate a depth map. Feel free to include your own image stack and play around with it!

About

Generates a depth map from a focal stack of images using OpenCV ๐Ÿ“ท

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages