Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
65b0ecfe
Commit
65b0ecfe
authored
Mar 25, 2015
by
ippei ito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test accuracy for PR#3829.Fix WOrder warning on gcc
parent
d1902a12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
test_lshindex_flannbased_matcher.cpp
modules/features2d/test/test_lshindex_flannbased_matcher.cpp
+6
-5
No files found.
modules/features2d/test/test_lshindex_flannbased_matcher.cpp
View file @
65b0ecfe
...
...
@@ -283,9 +283,12 @@ class CV_FeatureDetectorMatcherBaseTest : public cvtest::BaseTest
{
private
:
testparam
*
tp
;
double
target_accuracy_margin_from_bfmatcher
;
Feature2D
*
fe
;
// feature detector extractor
DescriptorMatcher
*
bfmatcher
;
// brute force matcher for accuracy of reference
DescriptorMatcher
*
flmatcher
;
// flann matcher to test
Feature2D
*
fe
;
// feature detector extractor
Mat
imgQuery
;
// query image
vector
<
Mat
>
imgOutliers
;
// outlier image
vector
<
KeyPoint
>
query_kp
;
// query key points detect from imgQuery
...
...
@@ -295,8 +298,6 @@ private:
int
totalOutlierDescCnt
;
string
flmatchername
;
testparam
*
tp
;
double
target_accuracy_margin_from_bfmatcher
;
public
:
...
...
@@ -305,10 +306,10 @@ public:
//
CV_FeatureDetectorMatcherBaseTest
(
testparam
*
_tp
,
double
_accuracy_margin
,
Feature2D
*
_fe
,
DescriptorMatcher
*
_flmatcher
,
string
_flmatchername
,
int
norm_type_for_bfmatcher
)
:
tp
(
_tp
),
target_accuracy_margin_from_bfmatcher
(
_accuracy_margin
),
fe
(
_fe
),
flmatcher
(
_flmatcher
),
flmatchername
(
_flmatchername
),
target_accuracy_margin_from_bfmatcher
(
_accuracy_margin
)
flmatchername
(
_flmatchername
)
{
#if defined(INIT_RANDOM_SEED)
// from test/test_eigen.cpp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment