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
eda84163
Commit
eda84163
authored
Jan 26, 2011
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed BruteForceMatcher_GPU (fails if input data is empty)
updated BruteForceMatcher_GPU test
parent
cecfde30
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
467 additions
and
99 deletions
+467
-99
gpu.hpp
modules/gpu/include/opencv2/gpu/gpu.hpp
+1
-1
brute_force_matcher.cpp
modules/gpu/src/brute_force_matcher.cpp
+56
-9
brute_force_matcher.cpp
tests/gpu/src/brute_force_matcher.cpp
+410
-89
No files found.
modules/gpu/include/opencv2/gpu/gpu.hpp
View file @
eda84163
...
...
@@ -1301,7 +1301,7 @@ namespace cv
const
GpuMat
&
maskCollection
);
// Download trainIdx, imgIdx and distance to CPU vector with DMatch
static
void
matchDownload
(
const
GpuMat
&
trainIdx
,
GpuMat
&
imgIdx
,
const
GpuMat
&
distance
,
static
void
matchDownload
(
const
GpuMat
&
trainIdx
,
const
GpuMat
&
imgIdx
,
const
GpuMat
&
distance
,
std
::
vector
<
DMatch
>&
matches
);
// Find one best match from train collection for each query descriptor.
...
...
modules/gpu/src/brute_force_matcher.cpp
View file @
eda84163
...
...
@@ -59,7 +59,7 @@ void cv::gpu::BruteForceMatcher_GPU_base::matchDownload(const GpuMat&, const Gpu
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
match
(
const
GpuMat
&
,
const
GpuMat
&
,
vector
<
DMatch
>&
,
const
GpuMat
&
)
{
throw_nogpu
();
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
makeGpuCollection
(
GpuMat
&
,
GpuMat
&
,
const
vector
<
GpuMat
>&
)
{
throw_nogpu
();
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchCollection
(
const
GpuMat
&
,
const
GpuMat
&
,
GpuMat
&
,
GpuMat
&
,
GpuMat
&
,
const
GpuMat
&
)
{
throw_nogpu
();
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchDownload
(
const
GpuMat
&
,
GpuMat
&
,
const
GpuMat
&
,
std
::
vector
<
DMatch
>&
)
{
throw_nogpu
();
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchDownload
(
const
GpuMat
&
,
const
GpuMat
&
,
const
GpuMat
&
,
std
::
vector
<
DMatch
>&
)
{
throw_nogpu
();
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
match
(
const
GpuMat
&
,
std
::
vector
<
DMatch
>&
,
const
std
::
vector
<
GpuMat
>&
)
{
throw_nogpu
();
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
knnMatch
(
const
GpuMat
&
,
const
GpuMat
&
,
GpuMat
&
,
GpuMat
&
,
GpuMat
&
,
int
,
const
GpuMat
&
)
{
throw_nogpu
();
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
knnMatchDownload
(
const
GpuMat
&
,
const
GpuMat
&
,
std
::
vector
<
std
::
vector
<
DMatch
>
>&
,
bool
)
{
throw_nogpu
();
}
...
...
@@ -142,6 +142,9 @@ bool cv::gpu::BruteForceMatcher_GPU_base::isMaskSupported() const
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchSingle
(
const
GpuMat
&
queryDescs
,
const
GpuMat
&
trainDescs
,
GpuMat
&
trainIdx
,
GpuMat
&
distance
,
const
GpuMat
&
mask
)
{
if
(
queryDescs
.
empty
()
||
trainDescs
.
empty
())
return
;
using
namespace
cv
::
gpu
::
bfmatcher
;
typedef
void
(
*
match_caller_t
)(
const
DevMem2D
&
queryDescs
,
const
DevMem2D
&
trainDescs
,
...
...
@@ -159,7 +162,7 @@ void cv::gpu::BruteForceMatcher_GPU_base::matchSingle(const GpuMat& queryDescs,
}
};
CV_Assert
(
queryDescs
.
channels
()
==
1
);
CV_Assert
(
queryDescs
.
channels
()
==
1
&&
queryDescs
.
depth
()
<
CV_64F
);
CV_Assert
(
trainDescs
.
cols
==
queryDescs
.
cols
&&
trainDescs
.
type
()
==
queryDescs
.
type
());
const
int
nQuery
=
queryDescs
.
rows
;
...
...
@@ -178,6 +181,12 @@ void cv::gpu::BruteForceMatcher_GPU_base::matchSingle(const GpuMat& queryDescs,
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchDownload
(
const
GpuMat
&
trainIdx
,
const
GpuMat
&
distance
,
vector
<
DMatch
>&
matches
)
{
if
(
trainIdx
.
empty
()
||
distance
.
empty
())
return
;
CV_Assert
(
trainIdx
.
type
()
==
CV_32SC1
&&
trainIdx
.
isContinuous
());
CV_Assert
(
distance
.
type
()
==
CV_32FC1
&&
distance
.
isContinuous
()
&&
distance
.
size
().
area
()
==
trainIdx
.
size
().
area
());
const
int
nQuery
=
trainIdx
.
cols
;
Mat
trainIdxCPU
=
trainIdx
;
...
...
@@ -213,6 +222,9 @@ void cv::gpu::BruteForceMatcher_GPU_base::match(const GpuMat& queryDescs, const
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
makeGpuCollection
(
GpuMat
&
trainCollection
,
GpuMat
&
maskCollection
,
const
vector
<
GpuMat
>&
masks
)
{
if
(
empty
())
return
;
if
(
masks
.
empty
())
{
Mat
trainCollectionCPU
(
1
,
trainDescCollection
.
size
(),
CV_8UC
(
sizeof
(
DevMem2D
)));
...
...
@@ -238,7 +250,7 @@ void cv::gpu::BruteForceMatcher_GPU_base::makeGpuCollection(GpuMat& trainCollect
const
GpuMat
&
trainDescs
=
trainDescCollection
[
i
];
const
GpuMat
&
mask
=
masks
[
i
];
CV_Assert
(
mask
.
empty
()
||
(
mask
.
type
()
==
CV_8UC1
));
CV_Assert
(
mask
.
empty
()
||
(
mask
.
type
()
==
CV_8UC1
&&
mask
.
cols
==
trainDescs
.
rows
));
trainCollectionCPU
.
ptr
<
DevMem2D
>
(
0
)[
i
]
=
trainDescs
;
...
...
@@ -253,6 +265,9 @@ void cv::gpu::BruteForceMatcher_GPU_base::makeGpuCollection(GpuMat& trainCollect
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchCollection
(
const
GpuMat
&
queryDescs
,
const
GpuMat
&
trainCollection
,
GpuMat
&
trainIdx
,
GpuMat
&
imgIdx
,
GpuMat
&
distance
,
const
GpuMat
&
maskCollection
)
{
if
(
queryDescs
.
empty
()
||
trainCollection
.
empty
())
return
;
using
namespace
cv
::
gpu
::
bfmatcher
;
typedef
void
(
*
match_caller_t
)(
const
DevMem2D
&
queryDescs
,
const
DevMem2D
&
trainCollection
,
...
...
@@ -273,7 +288,7 @@ void cv::gpu::BruteForceMatcher_GPU_base::matchCollection(const GpuMat& queryDes
}
};
CV_Assert
(
queryDescs
.
channels
()
==
1
);
CV_Assert
(
queryDescs
.
channels
()
==
1
&&
queryDescs
.
depth
()
<
CV_64F
);
const
int
nQuery
=
queryDescs
.
rows
;
...
...
@@ -287,9 +302,16 @@ void cv::gpu::BruteForceMatcher_GPU_base::matchCollection(const GpuMat& queryDes
func
(
queryDescs
,
trainCollection
,
maskCollection
,
trainIdx
,
imgIdx
,
distance
);
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchDownload
(
const
GpuMat
&
trainIdx
,
GpuMat
&
imgIdx
,
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
matchDownload
(
const
GpuMat
&
trainIdx
,
const
GpuMat
&
imgIdx
,
const
GpuMat
&
distance
,
vector
<
DMatch
>&
matches
)
{
if
(
trainIdx
.
empty
()
||
imgIdx
.
empty
()
||
distance
.
empty
())
return
;
CV_Assert
(
trainIdx
.
type
()
==
CV_32SC1
&&
trainIdx
.
isContinuous
());
CV_Assert
(
imgIdx
.
type
()
==
CV_32SC1
&&
imgIdx
.
isContinuous
());
CV_Assert
(
distance
.
type
()
==
CV_32FC1
&&
distance
.
isContinuous
());
const
int
nQuery
=
trainIdx
.
cols
;
Mat
trainIdxCPU
=
trainIdx
;
...
...
@@ -338,6 +360,9 @@ void cv::gpu::BruteForceMatcher_GPU_base::match(const GpuMat& queryDescs, vector
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
knnMatch
(
const
GpuMat
&
queryDescs
,
const
GpuMat
&
trainDescs
,
GpuMat
&
trainIdx
,
GpuMat
&
distance
,
GpuMat
&
allDist
,
int
k
,
const
GpuMat
&
mask
)
{
if
(
queryDescs
.
empty
()
||
trainDescs
.
empty
())
return
;
using
namespace
cv
::
gpu
::
bfmatcher
;
typedef
void
(
*
match_caller_t
)(
const
DevMem2D
&
queryDescs
,
const
DevMem2D
&
trainDescs
,
int
knn
,
...
...
@@ -355,7 +380,8 @@ void cv::gpu::BruteForceMatcher_GPU_base::knnMatch(const GpuMat& queryDescs, con
}
};
CV_Assert
(
queryDescs
.
channels
()
==
1
);
CV_Assert
(
queryDescs
.
channels
()
==
1
&&
queryDescs
.
depth
()
<
CV_64F
);
CV_Assert
(
trainDescs
.
type
()
==
queryDescs
.
type
()
&&
trainDescs
.
cols
==
queryDescs
.
cols
);
const
int
nQuery
=
queryDescs
.
rows
;
const
int
nTrain
=
trainDescs
.
rows
;
...
...
@@ -375,6 +401,12 @@ void cv::gpu::BruteForceMatcher_GPU_base::knnMatch(const GpuMat& queryDescs, con
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
knnMatchDownload
(
const
GpuMat
&
trainIdx
,
const
GpuMat
&
distance
,
vector
<
vector
<
DMatch
>
>&
matches
,
bool
compactResult
)
{
if
(
trainIdx
.
empty
()
||
distance
.
empty
())
return
;
CV_Assert
(
trainIdx
.
type
()
==
CV_32SC1
);
CV_Assert
(
distance
.
type
()
==
CV_32FC1
&&
distance
.
size
()
==
trainIdx
.
size
());
const
int
nQuery
=
distance
.
rows
;
const
int
k
=
trainIdx
.
cols
;
...
...
@@ -434,6 +466,9 @@ namespace
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
knnMatch
(
const
GpuMat
&
queryDescs
,
vector
<
vector
<
DMatch
>
>&
matches
,
int
knn
,
const
vector
<
GpuMat
>&
masks
,
bool
compactResult
)
{
if
(
queryDescs
.
empty
()
||
empty
())
return
;
vector
<
vector
<
DMatch
>
>
curMatches
;
vector
<
DMatch
>
temp
;
temp
.
reserve
(
2
*
knn
);
...
...
@@ -476,6 +511,9 @@ void cv::gpu::BruteForceMatcher_GPU_base::knnMatch(const GpuMat& queryDescs,
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
radiusMatch
(
const
GpuMat
&
queryDescs
,
const
GpuMat
&
trainDescs
,
GpuMat
&
trainIdx
,
GpuMat
&
nMatches
,
GpuMat
&
distance
,
float
maxDistance
,
const
GpuMat
&
mask
)
{
if
(
queryDescs
.
empty
()
||
trainDescs
.
empty
())
return
;
using
namespace
cv
::
gpu
::
bfmatcher
;
typedef
void
(
*
radiusMatch_caller_t
)(
const
DevMem2D
&
queryDescs
,
const
DevMem2D
&
trainDescs
,
float
maxDistance
,
...
...
@@ -498,7 +536,7 @@ void cv::gpu::BruteForceMatcher_GPU_base::radiusMatch(const GpuMat& queryDescs,
const
int
nQuery
=
queryDescs
.
rows
;
const
int
nTrain
=
trainDescs
.
rows
;
CV_Assert
(
queryDescs
.
channels
()
==
1
);
CV_Assert
(
queryDescs
.
channels
()
==
1
&&
queryDescs
.
depth
()
<
CV_64F
);
CV_Assert
(
trainDescs
.
type
()
==
queryDescs
.
type
()
&&
trainDescs
.
cols
==
queryDescs
.
cols
);
CV_Assert
(
trainIdx
.
empty
()
||
trainIdx
.
rows
==
nQuery
);
...
...
@@ -519,6 +557,13 @@ void cv::gpu::BruteForceMatcher_GPU_base::radiusMatch(const GpuMat& queryDescs,
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
radiusMatchDownload
(
const
GpuMat
&
trainIdx
,
const
GpuMat
&
nMatches
,
const
GpuMat
&
distance
,
std
::
vector
<
std
::
vector
<
DMatch
>
>&
matches
,
bool
compactResult
)
{
if
(
trainIdx
.
empty
()
||
nMatches
.
empty
()
||
distance
.
empty
())
return
;
CV_Assert
(
trainIdx
.
type
()
==
CV_32SC1
);
CV_Assert
(
nMatches
.
type
()
==
CV_32SC1
&&
nMatches
.
isContinuous
()
&&
nMatches
.
size
().
area
()
==
trainIdx
.
rows
);
CV_Assert
(
distance
.
type
()
==
CV_32FC1
&&
distance
.
size
()
==
trainIdx
.
size
());
const
int
nQuery
=
trainIdx
.
rows
;
Mat
trainIdxCPU
=
trainIdx
;
...
...
@@ -570,9 +615,11 @@ void cv::gpu::BruteForceMatcher_GPU_base::radiusMatch(const GpuMat& queryDescs,
}
void
cv
::
gpu
::
BruteForceMatcher_GPU_base
::
radiusMatch
(
const
GpuMat
&
queryDescs
,
vector
<
vector
<
DMatch
>
>&
matches
,
float
maxDistance
,
const
vector
<
GpuMat
>&
masks
,
bool
compactResult
)
float
maxDistance
,
const
vector
<
GpuMat
>&
masks
,
bool
compactResult
)
{
if
(
queryDescs
.
empty
()
||
empty
())
return
;
matches
.
resize
(
queryDescs
.
rows
);
vector
<
vector
<
DMatch
>
>
curMatches
;
...
...
tests/gpu/src/brute_force_matcher.cpp
View file @
eda84163
...
...
@@ -47,134 +47,456 @@ using namespace cv;
using
namespace
cv
::
gpu
;
using
namespace
std
;
class
CV_GpuBruteForceMatcherTest
:
public
CvTest
class
CV_GpuBruteForceMatcherTest
:
public
CvTest
{
public
:
CV_GpuBruteForceMatcherTest
()
:
CvTest
(
"GPU-BruteForceMatcher"
,
"BruteForceMatcher"
)
{}
CV_GpuBruteForceMatcherTest
()
:
CvTest
(
"GPU-BruteForceMatcher"
,
"BruteForceMatcher"
),
badPart
(
0.01
f
)
{
}
protected
:
void
run
(
int
)
static
const
int
dim
=
500
;
static
const
int
queryDescCount
=
300
;
// must be even number because we split train data in some cases in two
static
const
int
countFactor
=
4
;
// do not change it
const
float
badPart
;
virtual
void
run
(
int
);
void
generateData
(
GpuMat
&
query
,
GpuMat
&
train
);
void
emptyDataTest
();
void
matchTest
(
const
GpuMat
&
query
,
const
GpuMat
&
train
);
void
knnMatchTest
(
const
GpuMat
&
query
,
const
GpuMat
&
train
);
void
radiusMatchTest
(
const
GpuMat
&
query
,
const
GpuMat
&
train
);
BruteForceMatcher_GPU
<
L2
<
float
>
>
dmatcher
;
};
void
CV_GpuBruteForceMatcherTest
::
emptyDataTest
()
{
GpuMat
queryDescriptors
,
trainDescriptors
,
mask
;
vector
<
GpuMat
>
trainDescriptorCollection
,
masks
;
vector
<
DMatch
>
matches
;
vector
<
vector
<
DMatch
>
>
vmatches
;
try
{
try
{
BruteForceMatcher
<
L2
<
float
>
>
matcherCPU
;
BruteForceMatcher_GPU
<
L2
<
float
>
>
matcherGPU
;
vector
<
DMatch
>
matchesCPU
,
matchesGPU
;
vector
<
vector
<
DMatch
>
>
knnMatchesCPU
,
knnMatchesGPU
;
vector
<
vector
<
DMatch
>
>
radiusMatchesCPU
,
radiusMatchesGPU
;
dmatcher
.
match
(
queryDescriptors
,
trainDescriptors
,
matches
,
mask
);
}
catch
(...)
{
ts
->
printf
(
CvTS
::
LOG
,
"match() on empty descriptors must not generate exception (1).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
try
{
dmatcher
.
knnMatch
(
queryDescriptors
,
trainDescriptors
,
vmatches
,
2
,
mask
);
}
catch
(...)
{
ts
->
printf
(
CvTS
::
LOG
,
"knnMatch() on empty descriptors must not generate exception (1).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
RNG
rng
(
*
ts
->
get_rng
());
try
{
dmatcher
.
radiusMatch
(
queryDescriptors
,
trainDescriptors
,
vmatches
,
10.
f
,
mask
);
}
catch
(...)
{
ts
->
printf
(
CvTS
::
LOG
,
"radiusMatch() on empty descriptors must not generate exception (1).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
const
int
desc_len
=
rng
.
uniform
(
40
,
300
);
try
{
dmatcher
.
add
(
trainDescriptorCollection
);
}
catch
(...)
{
ts
->
printf
(
CvTS
::
LOG
,
"add() on empty descriptors must not generate exception.
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
Mat
queryCPU
(
rng
.
uniform
(
100
,
300
),
desc_len
,
CV_32F
);
rng
.
fill
(
queryCPU
,
cv
::
RNG
::
UNIFORM
,
cv
::
Scalar
::
all
(
0.0
),
cv
::
Scalar
::
all
(
10.0
));
GpuMat
queryGPU
(
queryCPU
);
try
{
dmatcher
.
match
(
queryDescriptors
,
matches
,
masks
);
}
catch
(...)
{
ts
->
printf
(
CvTS
::
LOG
,
"match() on empty descriptors must not generate exception (2).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
const
int
nTrains
=
rng
.
uniform
(
1
,
5
);
try
{
dmatcher
.
knnMatch
(
queryDescriptors
,
vmatches
,
2
,
masks
);
}
catch
(...)
{
ts
->
printf
(
CvTS
::
LOG
,
"knnMatch() on empty descriptors must not generate exception (2).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
vector
<
Mat
>
trainsCPU
(
nTrains
);
vector
<
GpuMat
>
trainsGPU
(
nTrains
);
try
{
dmatcher
.
radiusMatch
(
queryDescriptors
,
vmatches
,
10.
f
,
masks
);
}
catch
(...)
{
ts
->
printf
(
CvTS
::
LOG
,
"radiusMatch() on empty descriptors must not generate exception (2).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
vector
<
Mat
>
masksCPU
(
nTrains
);
vector
<
GpuMat
>
masksGPU
(
nTrains
);
}
for
(
int
i
=
0
;
i
<
nTrains
;
++
i
)
{
Mat
train
(
rng
.
uniform
(
100
,
300
),
desc_len
,
CV_32F
)
;
rng
.
fill
(
train
,
cv
::
RNG
::
UNIFORM
,
cv
::
Scalar
::
all
(
0.0
),
cv
::
Scalar
::
all
(
10.0
));
void
CV_GpuBruteForceMatcherTest
::
generateData
(
GpuMat
&
queryGPU
,
GpuMat
&
trainGPU
)
{
Mat
query
,
train
;
RNG
rng
(
*
ts
->
get_rng
(
));
trainsCPU
[
i
]
=
train
;
trainsGPU
[
i
].
upload
(
train
);
// Generate query descriptors randomly.
// Descriptor vector elements are integer values.
Mat
buf
(
queryDescCount
,
dim
,
CV_32SC1
);
rng
.
fill
(
buf
,
RNG
::
UNIFORM
,
Scalar
::
all
(
0
),
Scalar
(
3
)
);
buf
.
convertTo
(
query
,
CV_32FC1
);
bool
with_mask
=
rng
.
uniform
(
0
,
10
)
<
5
;
if
(
with_mask
)
{
Mat
mask
(
queryCPU
.
rows
,
train
.
rows
,
CV_8U
);
rng
.
fill
(
mask
,
cv
::
RNG
::
UNIFORM
,
cv
::
Scalar
::
all
(
0
),
cv
::
Scalar
::
all
(
200
));
// Generate train decriptors as follows:
// copy each query descriptor to train set countFactor times
// and perturb some one element of the copied descriptors in
// in ascending order. General boundaries of the perturbation
// are (0.f, 1.f).
train
.
create
(
query
.
rows
*
countFactor
,
query
.
cols
,
CV_32FC1
);
float
step
=
1.
f
/
countFactor
;
for
(
int
qIdx
=
0
;
qIdx
<
query
.
rows
;
qIdx
++
)
{
Mat
queryDescriptor
=
query
.
row
(
qIdx
);
for
(
int
c
=
0
;
c
<
countFactor
;
c
++
)
{
int
tIdx
=
qIdx
*
countFactor
+
c
;
Mat
trainDescriptor
=
train
.
row
(
tIdx
);
queryDescriptor
.
copyTo
(
trainDescriptor
);
int
elem
=
rng
(
dim
);
float
diff
=
rng
.
uniform
(
step
*
c
,
step
*
(
c
+
1
)
);
trainDescriptor
.
at
<
float
>
(
0
,
elem
)
+=
diff
;
}
}
masksCPU
[
i
]
=
mask
;
masksGPU
[
i
].
upload
(
mask
);
}
}
queryGPU
.
upload
(
query
);
trainGPU
.
upload
(
train
);
}
matcherCPU
.
add
(
trainsCPU
);
matcherGPU
.
add
(
trainsGPU
);
void
CV_GpuBruteForceMatcherTest
::
matchTest
(
const
GpuMat
&
query
,
const
GpuMat
&
train
)
{
dmatcher
.
clear
();
matcherCPU
.
match
(
queryCPU
,
matchesCPU
,
masksCPU
);
matcherGPU
.
match
(
queryGPU
,
matchesGPU
,
masksGPU
);
// test const version of match()
{
vector
<
DMatch
>
matches
;
dmatcher
.
match
(
query
,
train
,
matches
);
if
(
!
compareMatches
(
matchesCPU
,
matchesGPU
))
if
(
(
int
)
matches
.
size
()
!=
queryDescCount
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Incorrect matches count while test match() function (1).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
else
{
int
badCount
=
0
;
for
(
size_t
i
=
0
;
i
<
matches
.
size
();
i
++
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Match FAIL
\n
"
)
;
ts
->
set_failed_test_info
(
CvTS
::
FAIL_MISMATCH
);
return
;
DMatch
match
=
matches
[
i
]
;
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
(
int
)
i
*
countFactor
)
||
(
match
.
imgIdx
!=
0
)
)
badCount
++
;
}
if
(
(
float
)
badCount
>
(
float
)
queryDescCount
*
badPart
)
{
ts
->
printf
(
CvTS
::
LOG
,
"%f - too large bad matches part while test match() function (1).
\n
"
,
(
float
)
badCount
/
(
float
)
queryDescCount
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
}
}
const
int
knn
=
rng
.
uniform
(
3
,
10
);
// test version of match() with add()
{
vector
<
DMatch
>
matches
;
// make add() twice to test such case
dmatcher
.
add
(
vector
<
GpuMat
>
(
1
,
train
.
rowRange
(
0
,
train
.
rows
/
2
))
);
dmatcher
.
add
(
vector
<
GpuMat
>
(
1
,
train
.
rowRange
(
train
.
rows
/
2
,
train
.
rows
))
);
// prepare masks (make first nearest match illegal)
vector
<
GpuMat
>
masks
(
2
);
for
(
int
mi
=
0
;
mi
<
2
;
mi
++
)
{
masks
[
mi
]
=
GpuMat
(
query
.
rows
,
train
.
rows
/
2
,
CV_8UC1
,
Scalar
::
all
(
1
));
for
(
int
di
=
0
;
di
<
queryDescCount
/
2
;
di
++
)
masks
[
mi
].
col
(
di
*
countFactor
).
setTo
(
Scalar
::
all
(
0
));
}
matcherCPU
.
knnMatch
(
queryCPU
,
knnMatchesCPU
,
knn
,
masksCPU
,
true
);
matcherGPU
.
knnMatch
(
queryGPU
,
knnMatchesGPU
,
knn
,
masksGPU
,
true
);
dmatcher
.
match
(
query
,
matches
,
masks
);
if
(
!
compareMatches
(
knnMatchesCPU
,
knnMatchesGPU
))
if
(
(
int
)
matches
.
size
()
!=
queryDescCount
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Incorrect matches count while test match() function (2).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
else
{
int
badCount
=
0
;
for
(
size_t
i
=
0
;
i
<
matches
.
size
();
i
++
)
{
ts
->
printf
(
CvTS
::
LOG
,
"KNN Match FAIL
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_MISMATCH
);
return
;
DMatch
match
=
matches
[
i
];
int
shift
=
dmatcher
.
isMaskSupported
()
?
1
:
0
;
{
if
(
i
<
queryDescCount
/
2
)
{
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
(
int
)
i
*
countFactor
+
shift
)
||
(
match
.
imgIdx
!=
0
)
)
badCount
++
;
}
else
{
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
((
int
)
i
-
queryDescCount
/
2
)
*
countFactor
+
shift
)
||
(
match
.
imgIdx
!=
1
)
)
badCount
++
;
}
}
}
if
(
(
float
)
badCount
>
(
float
)
queryDescCount
*
badPart
)
{
ts
->
printf
(
CvTS
::
LOG
,
"%f - too large bad matches part while test match() function (2).
\n
"
,
(
float
)
badCount
/
(
float
)
queryDescCount
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_BAD_ACCURACY
);
}
}
}
}
void
CV_GpuBruteForceMatcherTest
::
knnMatchTest
(
const
GpuMat
&
query
,
const
GpuMat
&
train
)
{
dmatcher
.
clear
();
// test const version of knnMatch()
{
const
int
knn
=
3
;
const
float
maxDistance
=
rng
.
uniform
(
25.0
f
,
65.0
f
);
matcherCPU
.
radiusMatch
(
queryCPU
,
radiusMatchesCPU
,
maxDistance
,
masksCPU
,
true
);
matcherGPU
.
radiusMatch
(
queryGPU
,
radiusMatchesGPU
,
maxDistance
,
masksGPU
,
true
);
vector
<
vector
<
DMatch
>
>
matches
;
dmatcher
.
knnMatch
(
query
,
train
,
matches
,
knn
);
if
(
!
compareMatches
(
radiusMatchesCPU
,
radiusMatchesGPU
))
if
(
(
int
)
matches
.
size
()
!=
queryDescCount
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Incorrect matches count while test knnMatch() function (1).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
else
{
int
badCount
=
0
;
for
(
size_t
i
=
0
;
i
<
matches
.
size
();
i
++
)
{
if
(
(
int
)
matches
[
i
].
size
()
!=
knn
)
badCount
++
;
else
{
int
localBadCount
=
0
;
for
(
int
k
=
0
;
k
<
knn
;
k
++
)
{
DMatch
match
=
matches
[
i
][
k
];
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
(
int
)
i
*
countFactor
+
k
)
||
(
match
.
imgIdx
!=
0
)
)
localBadCount
++
;
}
badCount
+=
localBadCount
>
0
?
1
:
0
;
}
}
if
(
(
float
)
badCount
>
(
float
)
queryDescCount
*
badPart
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Radius Match FAIL
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_MISMATCH
);
return
;
ts
->
printf
(
CvTS
::
LOG
,
"%f - too large bad matches part while test knnMatch() function (1).
\n
"
,
(
float
)
badCount
/
(
float
)
queryDescCount
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
)
;
}
}
catch
(
const
cv
::
Exception
&
e
)
}
// test version of knnMatch() with add()
{
const
int
knn
=
2
;
vector
<
vector
<
DMatch
>
>
matches
;
// make add() twice to test such case
dmatcher
.
add
(
vector
<
GpuMat
>
(
1
,
train
.
rowRange
(
0
,
train
.
rows
/
2
))
);
dmatcher
.
add
(
vector
<
GpuMat
>
(
1
,
train
.
rowRange
(
train
.
rows
/
2
,
train
.
rows
))
);
// prepare masks (make first nearest match illegal)
vector
<
GpuMat
>
masks
(
2
);
for
(
int
mi
=
0
;
mi
<
2
;
mi
++
)
{
if
(
!
check_and_treat_gpu_exception
(
e
,
ts
))
throw
;
return
;
masks
[
mi
]
=
GpuMat
(
query
.
rows
,
train
.
rows
/
2
,
CV_8UC1
,
Scalar
::
all
(
1
));
for
(
int
di
=
0
;
di
<
queryDescCount
/
2
;
di
++
)
masks
[
mi
].
col
(
di
*
countFactor
).
setTo
(
Scalar
::
all
(
0
))
;
}
ts
->
set_failed_test_info
(
CvTS
::
OK
);
dmatcher
.
knnMatch
(
query
,
matches
,
knn
,
masks
);
if
(
(
int
)
matches
.
size
()
!=
queryDescCount
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Incorrect matches count while test knnMatch() function (2).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
else
{
int
badCount
=
0
;
int
shift
=
dmatcher
.
isMaskSupported
()
?
1
:
0
;
for
(
size_t
i
=
0
;
i
<
matches
.
size
();
i
++
)
{
if
(
(
int
)
matches
[
i
].
size
()
!=
knn
)
badCount
++
;
else
{
int
localBadCount
=
0
;
for
(
int
k
=
0
;
k
<
knn
;
k
++
)
{
DMatch
match
=
matches
[
i
][
k
];
{
if
(
i
<
queryDescCount
/
2
)
{
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
(
int
)
i
*
countFactor
+
k
+
shift
)
||
(
match
.
imgIdx
!=
0
)
)
localBadCount
++
;
}
else
{
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
((
int
)
i
-
queryDescCount
/
2
)
*
countFactor
+
k
+
shift
)
||
(
match
.
imgIdx
!=
1
)
)
localBadCount
++
;
}
}
}
badCount
+=
localBadCount
>
0
?
1
:
0
;
}
}
if
(
(
float
)
badCount
>
(
float
)
queryDescCount
*
badPart
)
{
ts
->
printf
(
CvTS
::
LOG
,
"%f - too large bad matches part while test knnMatch() function (2).
\n
"
,
(
float
)
badCount
/
(
float
)
queryDescCount
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_BAD_ACCURACY
);
}
}
}
}
private
:
static
void
convertMatches
(
const
vector
<
vector
<
DMatch
>
>&
knnMatches
,
vector
<
DMatch
>&
matches
)
void
CV_GpuBruteForceMatcherTest
::
radiusMatchTest
(
const
GpuMat
&
query
,
const
GpuMat
&
train
)
{
dmatcher
.
clear
();
// test const version of match()
{
matches
.
clear
();
for
(
size_t
i
=
0
;
i
<
knnMatches
.
size
();
++
i
)
copy
(
knnMatches
[
i
].
begin
(),
knnMatches
[
i
].
end
(),
back_inserter
(
matches
));
const
float
radius
=
1.
f
/
countFactor
;
vector
<
vector
<
DMatch
>
>
matches
;
dmatcher
.
radiusMatch
(
query
,
train
,
matches
,
radius
);
if
(
(
int
)
matches
.
size
()
!=
queryDescCount
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Incorrect matches count while test radiusMatch() function (1).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
else
{
int
badCount
=
0
;
for
(
size_t
i
=
0
;
i
<
matches
.
size
();
i
++
)
{
if
(
(
int
)
matches
[
i
].
size
()
!=
1
)
badCount
++
;
else
{
DMatch
match
=
matches
[
i
][
0
];
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
(
int
)
i
*
countFactor
)
||
(
match
.
imgIdx
!=
0
)
)
badCount
++
;
}
}
if
(
(
float
)
badCount
>
(
float
)
queryDescCount
*
badPart
)
{
ts
->
printf
(
CvTS
::
LOG
,
"%f - too large bad matches part while test radiusMatch() function (1).
\n
"
,
(
float
)
badCount
/
(
float
)
queryDescCount
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
}
}
struct
DMatchEqual
:
public
binary_function
<
DMatch
,
DMatch
,
bool
>
// test version of match() with add()
{
bool
operator
()(
const
DMatch
&
m1
,
const
DMatch
&
m2
)
const
int
n
=
3
;
const
float
radius
=
1.
f
/
countFactor
*
n
;
vector
<
vector
<
DMatch
>
>
matches
;
// make add() twice to test such case
dmatcher
.
add
(
vector
<
GpuMat
>
(
1
,
train
.
rowRange
(
0
,
train
.
rows
/
2
))
);
dmatcher
.
add
(
vector
<
GpuMat
>
(
1
,
train
.
rowRange
(
train
.
rows
/
2
,
train
.
rows
))
);
// prepare masks (make first nearest match illegal)
vector
<
GpuMat
>
masks
(
2
);
for
(
int
mi
=
0
;
mi
<
2
;
mi
++
)
{
return
m1
.
imgIdx
==
m2
.
imgIdx
&&
m1
.
queryIdx
==
m2
.
queryIdx
&&
m1
.
trainIdx
==
m2
.
trainIdx
;
masks
[
mi
]
=
GpuMat
(
query
.
rows
,
train
.
rows
/
2
,
CV_8UC1
,
Scalar
::
all
(
1
));
for
(
int
di
=
0
;
di
<
queryDescCount
/
2
;
di
++
)
masks
[
mi
].
col
(
di
*
countFactor
).
setTo
(
Scalar
::
all
(
0
));
}
};
static
bool
compareMatches
(
const
vector
<
DMatch
>&
matches1
,
const
vector
<
DMatch
>&
matches2
)
{
if
(
matches1
.
size
()
!=
matches2
.
size
())
return
false
;
return
equal
(
matches1
.
begin
(),
matches1
.
end
(),
matches2
.
begin
(),
DMatchEqual
());
}
dmatcher
.
radiusMatch
(
query
,
matches
,
radius
,
masks
);
static
bool
compareMatches
(
const
vector
<
vector
<
DMatch
>
>&
matches1
,
const
vector
<
vector
<
DMatch
>
>&
matches2
)
{
vector
<
DMatch
>
m1
,
m2
;
convertMatches
(
matches1
,
m1
);
convertMatches
(
matches2
,
m2
);
return
compareMatches
(
m1
,
m2
);
int
curRes
=
CvTS
::
OK
;
if
(
(
int
)
matches
.
size
()
!=
queryDescCount
)
{
ts
->
printf
(
CvTS
::
LOG
,
"Incorrect matches count while test radiusMatch() function (1).
\n
"
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_INVALID_OUTPUT
);
}
int
badCount
=
0
;
int
shift
=
dmatcher
.
isMaskSupported
()
?
1
:
0
;
int
needMatchCount
=
dmatcher
.
isMaskSupported
()
?
n
-
1
:
n
;
for
(
size_t
i
=
0
;
i
<
matches
.
size
();
i
++
)
{
if
(
(
int
)
matches
[
i
].
size
()
!=
needMatchCount
)
badCount
++
;
else
{
int
localBadCount
=
0
;
for
(
int
k
=
0
;
k
<
needMatchCount
;
k
++
)
{
DMatch
match
=
matches
[
i
][
k
];
{
if
(
i
<
queryDescCount
/
2
)
{
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
(
int
)
i
*
countFactor
+
k
+
shift
)
||
(
match
.
imgIdx
!=
0
)
)
localBadCount
++
;
}
else
{
if
(
(
match
.
queryIdx
!=
(
int
)
i
)
||
(
match
.
trainIdx
!=
((
int
)
i
-
queryDescCount
/
2
)
*
countFactor
+
k
+
shift
)
||
(
match
.
imgIdx
!=
1
)
)
localBadCount
++
;
}
}
}
badCount
+=
localBadCount
>
0
?
1
:
0
;
}
}
if
(
(
float
)
badCount
>
(
float
)
queryDescCount
*
badPart
)
{
curRes
=
CvTS
::
FAIL_INVALID_OUTPUT
;
ts
->
printf
(
CvTS
::
LOG
,
"%f - too large bad matches part while test radiusMatch() function (2).
\n
"
,
(
float
)
badCount
/
(
float
)
queryDescCount
);
ts
->
set_failed_test_info
(
CvTS
::
FAIL_BAD_ACCURACY
);
}
}
}
brute_force_matcher_test
;
\ No newline at end of file
}
void
CV_GpuBruteForceMatcherTest
::
run
(
int
)
{
emptyDataTest
();
GpuMat
query
,
train
;
generateData
(
query
,
train
);
matchTest
(
query
,
train
);
knnMatchTest
(
query
,
train
);
radiusMatchTest
(
query
,
train
);
dmatcher
.
clear
();
}
CV_GpuBruteForceMatcherTest
CV_GpuBruteForceMatcher_test
;
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