1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Tonemapping documentation update

This commit is contained in:
Fedor Morozov
2013-08-05 20:35:48 +04:00
parent cb999a231e
commit 4c0f7f9e59
4 changed files with 38 additions and 20 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ TEST(Photo_Tonemap, regression)
loadImage(test_path + "image.hdr", img);
float gamma = 2.2f;
Ptr<Tonemap> linear = createTonemapLinear(gamma);
Ptr<Tonemap> linear = createTonemap(gamma);
linear->process(img, result);
loadImage(test_path + "linear.png", expected);
result.convertTo(result, CV_8UC3, 255);