From 748d85c970a3526859b5c3d776c8740114ee20bb Mon Sep 17 00:00:00 2001 From: Flavio0410 Date: Mon, 12 Dec 2022 17:27:27 +0100 Subject: [PATCH] Add authors name for each function --- hdr.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/hdr.h b/hdr.h index 9a645e4..729bee0 100644 --- a/hdr.h +++ b/hdr.h @@ -23,7 +23,7 @@ CImg LDR_to_HDR(CImg 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 object containing the LDR images * @return CImg a CImg object containing the weights for each LDR image @@ -33,7 +33,7 @@ CImg compute_W(CImg 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 object containing the LDR images * @return CImg a CImg object containing the Laplacian pyramid of the LDR images @@ -43,7 +43,7 @@ CImg compute_contrast(CImg 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 object containing the LDR images * @return CImg a CImg object containing the saturation of the LDR images @@ -53,12 +53,11 @@ CImg compute_saturation(CImg 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 a CImg object containing the exposure of the LDR images */ - */ template CImg compute_wexp(CImg const& LDR_images);