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

fixed warnings

This commit is contained in:
Ilya Lavrenov
2013-12-06 13:29:53 +04:00
parent b16f0a25af
commit 926cab2baa
10 changed files with 30 additions and 29 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ TEST(Photo_NPR_PencilSketch, regression)
ASSERT_FALSE(source.empty()) << "Could not load input image " << original_path;
Mat result,result1;
pencilSketch(source,result,result1,10,.1,.03);
pencilSketch(source,result,result1, 10, 0.1f, 0.03f);
imwrite(folder + "pencil_sketch.png", result);
imwrite(folder + "color_pencil_sketch.png", result1);