コード例 #1
0
ファイル: test_filters.cpp プロジェクト: codeinventory/opencv
 void Near(double threshold, bool relative)
 {
     if (relative)
         OCL_EXPECT_MATS_NEAR_RELATIVE(dst, threshold);
     else
         OCL_EXPECT_MATS_NEAR(dst, threshold);
 }
コード例 #2
0
ファイル: test_warp.cpp プロジェクト: Algomorph/opencv
 void Near(double threshold = 0.0)
 {
     if (depth < CV_32F)
         EXPECT_MAT_N_DIFF(dst_roi, udst_roi, cvRound(dst_roi.total()*threshold));
     else
         OCL_EXPECT_MATS_NEAR_RELATIVE(dst, threshold);
 }