1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Some modifications to sortByKey API.

Add documentation.
This commit is contained in:
peng xiao
2013-07-30 11:53:25 +08:00
parent a6d558042c
commit 892c088e1b
4 changed files with 54 additions and 19 deletions
+1 -1
View File
@@ -235,7 +235,7 @@ TEST_P(SortByKey, Accuracy)
ocl::oclMat oclmat_key(mat_key);
ocl::oclMat oclmat_val(mat_val);
ocl::sort_by_key(oclmat_key, oclmat_val, method, is_gt);
ocl::sortByKey(oclmat_key, oclmat_val, method, is_gt);
SortByKey_STL::sort(mat_key, mat_val, is_gt);
EXPECT_MAT_NEAR(mat_key, oclmat_key, 0.0);