Skip to content

Commit

Permalink
more doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-loi committed Dec 12, 2022
1 parent 46bdee8 commit c5a599d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CGProj.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file CGProj.cpp
* \brief Main application for Computer graphics project.
*
* \author Dario Loi
* \author Dario Loi, Flavio Gezzi
* \date December 2022
*********************************************************************/

Expand Down
12 changes: 11 additions & 1 deletion hdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* \file hdr.h
* \brief functions for HDR
*
* \author Dario Loi
* \authors Dario Loi, Flavio Gezzi
* \date December 2022
*********************************************************************/

Expand All @@ -14,6 +14,12 @@ using namespace cimg_library;
/**
* @brief Map LDR images to HDR
*
* Implements the Exposure Fusion algorithm described in Mertens et al. combines
* the information of multiple Low Definition Range (LDR) images to reconstruct
* a High Definition image (HDR).
*
* @see https://web.stanford.edu/class/cs231m/project-1/exposure-fusion.pdf
*
* @tparam T the integral type of the pixel
* @param LDR_images a CImg<T> object containing the LDR images
* @return CImg<T> a CImg<T> object containing the HDR image
Expand All @@ -24,6 +30,8 @@ CImg<T> LDR_to_HDR(CImg<T> const& LDR_images);
/**
* @brief Compute the weights for each LDR image
*
* Computes the normalized weight matrix for a stack of LDR images.
*
* @tparam T the integral type of the pixel
* @param LDR_images a CImg<T> object containing the LDR images
* @return CImg<T> a CImg<T> object containing the weights for each LDR image
Expand Down Expand Up @@ -65,6 +73,8 @@ CImg<T> compute_wexp(CImg<T> const& LDR_images);
/**
* @brief Fuse the LDR images
*
*
*
* @tparam T the integral type of the pixel
* @param LDR_images a CImg<T> object containing the LDR images
* @param weights a CImg<T> object containing the weights for each LDR image
Expand Down

0 comments on commit c5a599d

Please sign in to comment.