added SURF_GPU.

added support of CV_32FC1 type to gpu copyMakeBorder.
This commit is contained in:
Vladislav Vinogradov
2010-12-20 12:49:40 +00:00
parent a2ace58bb0
commit 0e45a637c4
7 changed files with 1511 additions and 12 deletions

View File

@@ -493,9 +493,7 @@ void cv::gpu::BruteForceMatcher_GPU_base::radiusMatch(const GpuMat& queryDescs,
}
};
int major, minor;
getComputeCapability(getDevice(), major, minor);
CV_Assert(100 * major + 10 * minor >= 110); // works onle on device with CC >= 1.1
CV_Assert(hasAtomicsSupport(getDevice()));
const int nQuery = queryDescs.rows;
const int nTrain = trainDescs.rows;