From dbfd6a3dde93a36f90756a8b4a64f37f34869edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Rousseau?= Date: Tue, 15 Dec 2015 11:12:10 +0100 Subject: [PATCH] Set the default value of exposure_weight in createMergeMertens to 1.0 --- modules/photo/include/opencv2/photo.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/photo/include/opencv2/photo.hpp b/modules/photo/include/opencv2/photo.hpp index 3d969124e..c96c6a260 100644 --- a/modules/photo/include/opencv2/photo.hpp +++ b/modules/photo/include/opencv2/photo.hpp @@ -694,7 +694,7 @@ public: @param exposure_weight well-exposedness measure weight */ CV_EXPORTS_W Ptr -createMergeMertens(float contrast_weight = 1.0f, float saturation_weight = 1.0f, float exposure_weight = 0.0f); +createMergeMertens(float contrast_weight = 1.0f, float saturation_weight = 1.0f, float exposure_weight = 1.0f); /** @brief The resulting HDR image is calculated as weighted average of the exposures considering exposure values and camera response.