HologramDepthmap Library
HologramDepthmap Library Documentation

Table of Contents

Introduction

This library implements the hologram generation method using depth map data.
It is implemented on the CPU and the GPU to improve the performance of the hologram generation method. Thus, user can compare the performance between the CPU and GPU implementation.

doc_intro.png

Algorithm Reference

The original algorithm is modified in the way that can be easily implemented in parallel.
Back propagate each depth plane to the hologram plane and accumulate the results of each propagation.

doc_algo.png
Depth Map Hologram Generation Algorithm

Software Components

The library consists a main hologram generation module(Hologram folder) and its sample program(HologramDepthmap folder).
The following shows the list of files with the directory structure.

doc_swfolders.png

Main Procedure

The main function of the library is a GenerateHologram() of HologramGenerator class. The following is the procedure of it and functions called form it..

doc_proc.png
GenerateHologram Function Procedure

Environment

How to Build Source Codes

Before building an execution file, you need to install MS Visual Studio 2015 C++ and Qt, also CUDA for the GPU execution.

  1. Download the source code from here.
  2. Go to the directory 'HologramDepthmap'.
  3. Open the Visual Studio soulution file, 'HologramDepthmap.sln'.
  4. Check the configuation of the Qt & CUDA to work with the Visual Studio.
  5. For Qt, you may need to set QTDIR environment variable -> System Properties->Advanced->Environment Variable.
  6. To use FFTW, copy 'libfftw3-3.dll' into the 'bin' directory and copy 'libfftw3-3.lib' into the 'lib' directory.
  7. Visual Studio Build Menu -> Configuration Menu, set "Release" for the Active solution configuration, "x64" for the Active solution platform.
  8. Set 'HologramDepthmap' as a StartUp Project.
  9. Build a Solution.
  10. After building, you can find the execution file, 'HologramDepthmap.exe' under the 'bin' directory.
  11. Execute 'HologramDepthmap.exe', then you can see the following GUI of the sample program.

    doc_exe.png
    the Sample Program & its Execution