Skip to content

Commit

Permalink
Add authors name for each function
Browse files Browse the repository at this point in the history
  • Loading branch information
Flavio0410 committed Dec 12, 2022
1 parent 1dc31fa commit 748d85c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions hdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CImg<T> LDR_to_HDR(CImg<T> const& LDR_images);

/**
* @brief Compute the weights for each LDR image
*
* @author Dario Loi
* @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 All @@ -33,7 +33,7 @@ CImg<T> compute_W(CImg<T> const& LDR_images);

/**
* @brief Compute the Laplacian pyramid of the LDR images
*
* @author Flavio Gezzi
* @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 Laplacian pyramid of the LDR images
Expand All @@ -43,7 +43,7 @@ CImg<T> compute_contrast(CImg<T> const& LDR_images);

/**
* @brief Compute the saturation of the LDR images
*
* @author Flavio Gezzi
* @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 saturation of the LDR images
Expand All @@ -53,12 +53,11 @@ CImg<T> compute_saturation(CImg<T> const& LDR_images);

/**
* @brief Compute the exposure of the LDR images
*
* @author Dario Loi
* @tparam T the integral type of the pixel
* @param LDR_images
* @return CImg<T> a CImg<T> object containing the exposure of the LDR images
*/
*/
template<typename T>
CImg<T> compute_wexp(CImg<T> const& LDR_images);

Expand Down

0 comments on commit 748d85c

Please sign in to comment.