OCL: including FAST feature detector.

This commit is contained in:
Peter Andreas Entschev
2013-12-07 22:12:13 -02:00
parent d368bf5210
commit 41bec1b112
9 changed files with 2076 additions and 0 deletions

View File

@@ -54,6 +54,9 @@ extern int LOOP_TIMES;
namespace cvtest {
testing::AssertionResult assertKeyPointsEquals(const char* gold_expr, const char* actual_expr, std::vector<cv::KeyPoint>& gold, std::vector<cv::KeyPoint>& actual);
#define ASSERT_KEYPOINTS_EQ(gold, actual) EXPECT_PRED_FORMAT2(assertKeyPointsEquals, gold, actual)
void showDiff(const Mat& src, const Mat& gold, const Mat& actual, double eps, bool alwaysShow = false);
cv::ocl::oclMat createMat_ocl(cv::RNG& rng, Size size, int type, bool useRoi);