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
6287c113
Commit
6287c113
authored
Aug 10, 2011
by
Maria Dimashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed compile errors
parent
b535356e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
brief_match_test.cpp
samples/cpp/brief_match_test.cpp
+8
-8
No files found.
samples/cpp/brief_match_test.cpp
View file @
6287c113
...
...
@@ -43,12 +43,12 @@ double match(const vector<KeyPoint>& /*kpts_train*/, const vector<KeyPoint>& /*k
void
help
()
{
printf
(
"This program shows how to use BRIEF descriptor to match points in features2d
\n
"
"It takes in two images, finds keypoints and matches them displaying matches and final homography warped results
\n
"
"Usage:
\n
"
"image1 image2
\n
"
"Example:
\n
"
"box.png box_in_scene.png
\n
"
);
cout
<<
"This program shows how to use BRIEF descriptor to match points in features2d"
<<
endl
<<
"It takes in two images, finds keypoints and matches them displaying matches and final homography warped results"
<<
endl
<<
"Usage: "
<<
endl
<<
"image1 image2 "
<<
endl
<<
"Example: "
<<
endl
<<
"box.png box_in_scene.png "
<<
endl
;
}
const
char
*
keys
=
...
...
@@ -70,8 +70,8 @@ int main(int argc, const char ** argv)
if
(
im1
.
empty
()
||
im2
.
empty
())
{
printf
(
"could not open one of the images...
\n
"
)
;
printf
(
"the cmd parameters have next current value:
\n
"
)
;
cout
<<
"could not open one of the images..."
<<
endl
;
cout
<<
"the cmd parameters have next current value: "
<<
endl
;
parser
.
printParams
();
return
1
;
}
...
...
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