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
518106af
Commit
518106af
authored
Jun 08, 2011
by
Maria Dimashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix and some enchantments for matching_to_many_images sample (#869)
parent
d225ab23
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
4 deletions
+30
-4
matching_to_many_images.cpp
samples/cpp/matching_to_many_images.cpp
+30
-4
No files found.
samples/cpp/matching_to_many_images.cpp
View file @
518106af
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/contrib/contrib.hpp"
#include <iostream>
#include <fstream>
...
...
@@ -48,16 +49,21 @@ void maskMatchesByTrainImgIdx( const vector<DMatch>& matches, int trainImgIdx, v
void
readTrainFilenames
(
const
string
&
filename
,
string
&
dirName
,
vector
<
string
>&
trainFilenames
)
{
const
char
dlmtr
=
'/'
;
trainFilenames
.
clear
();
ifstream
file
(
filename
.
c_str
()
);
if
(
!
file
.
is_open
()
)
return
;
size_t
pos
=
filename
.
rfind
(
dlmtr
);
size_t
pos
=
filename
.
rfind
(
'\\'
);
char
dlmtr
=
'\\'
;
if
(
pos
==
String
::
npos
)
{
pos
=
filename
.
rfind
(
'/'
);
dlmtr
=
'/'
;
}
dirName
=
pos
==
string
::
npos
?
""
:
filename
.
substr
(
0
,
pos
)
+
dlmtr
;
while
(
!
file
.
eof
()
)
{
string
str
;
getline
(
file
,
str
);
...
...
@@ -142,6 +148,12 @@ void computeDescriptors( const Mat& queryImage, vector<KeyPoint>& queryKeypoints
cout
<<
"< Computing descriptors for keypoints..."
<<
endl
;
descriptorExtractor
->
compute
(
queryImage
,
queryKeypoints
,
queryDescriptors
);
descriptorExtractor
->
compute
(
trainImages
,
trainKeypoints
,
trainDescriptors
);
int
totalTrainDesc
=
0
;
for
(
vector
<
Mat
>::
const_iterator
tdIter
=
trainDescriptors
.
begin
();
tdIter
!=
trainDescriptors
.
end
();
tdIter
++
)
totalTrainDesc
+=
tdIter
->
rows
;
cout
<<
"Query descriptors count: "
<<
queryDescriptors
.
rows
<<
"; Total train descriptors count: "
<<
totalTrainDesc
<<
endl
;
cout
<<
">"
<<
endl
;
}
...
...
@@ -149,9 +161,23 @@ void matchDescriptors( const Mat& queryDescriptors, const vector<Mat>& trainDesc
vector
<
DMatch
>&
matches
,
Ptr
<
DescriptorMatcher
>&
descriptorMatcher
)
{
cout
<<
"< Set train descriptors collection in the matcher and match query descriptors to them..."
<<
endl
;
TickMeter
tm
;
tm
.
start
();
descriptorMatcher
->
add
(
trainDescriptors
);
descriptorMatcher
->
train
();
tm
.
stop
();
double
buildTime
=
tm
.
getTimeMilli
();
tm
.
start
();
descriptorMatcher
->
match
(
queryDescriptors
,
matches
);
tm
.
stop
();
double
matchTime
=
tm
.
getTimeMilli
();
CV_Assert
(
queryDescriptors
.
rows
==
(
int
)
matches
.
size
()
||
matches
.
empty
()
);
cout
<<
"Number of matches: "
<<
matches
.
size
()
<<
endl
;
cout
<<
"Build time: "
<<
buildTime
<<
" ms; Match time: "
<<
matchTime
<<
" ms"
<<
endl
;
cout
<<
">"
<<
endl
;
}
...
...
@@ -168,7 +194,7 @@ void saveResultImages( const Mat& queryImage, const vector<KeyPoint>& queryKeypo
{
maskMatchesByTrainImgIdx
(
matches
,
i
,
mask
);
drawMatches
(
queryImage
,
queryKeypoints
,
trainImages
[
i
],
trainKeypoints
[
i
],
matches
,
drawImg
,
Scalar
::
all
(
-
1
),
Scalar
::
all
(
-
1
),
mask
);
matches
,
drawImg
,
Scalar
(
255
,
0
,
0
),
Scalar
(
0
,
255
,
255
),
mask
);
string
filename
=
resultDir
+
"/res_"
+
trainImagesNames
[
i
];
if
(
!
imwrite
(
filename
,
drawImg
)
)
cout
<<
"Image "
<<
filename
<<
" can not be saved (may be because directory "
<<
resultDir
<<
" does not exist)."
<<
endl
;
...
...
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