Fixed the multi-band blending test

This commit is contained in:
Alexey Spizhevoy 2012-02-01 10:00:38 +00:00
parent 386578bc3f
commit d8fa374167

View File

@ -73,6 +73,6 @@ TEST(MultiBandBlender, CanBlendTwoImages)
Mat result; result_s.convertTo(result, CV_8U);
Mat expected = imread(string(cvtest::TS::ptr()->get_data_path()) + "stitching/baboon_lena.png");
double rmsErr = norm(expected, result, NORM_L2) / sqrt(expected.size().area());
double rmsErr = norm(expected, result, NORM_L2) / sqrt(double(expected.size().area()));
ASSERT_LT(rmsErr, 1e-3);
}