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
e14f91dd
Commit
e14f91dd
authored
Aug 06, 2014
by
edgarriba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update headers
parent
ddf5c86f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
10 deletions
+2
-10
RobustMatcher.h
...ode/calib3d/real_time_pose_estimation/src/RobustMatcher.h
+0
-1
Utils.h
...torial_code/calib3d/real_time_pose_estimation/src/Utils.h
+0
-1
main_detection.cpp
.../calib3d/real_time_pose_estimation/src/main_detection.cpp
+1
-4
main_verification.cpp
...lib3d/real_time_pose_estimation/src/main_verification.cpp
+1
-4
No files found.
samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/RobustMatcher.h
View file @
e14f91dd
...
...
@@ -9,7 +9,6 @@
#define ROBUSTMATCHER_H_
#include <iostream>
#include <boost/shared_ptr.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
...
...
samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/Utils.h
View file @
e14f91dd
...
...
@@ -9,7 +9,6 @@
#define UTILS_H_
#include <iostream>
#include <cv.h>
#include "PnPProblem.h"
...
...
samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/main_detection.cpp
View file @
e14f91dd
#include <iostream>
#include <time.h>
#include "cv.h"
#include "highgui.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
...
...
@@ -155,7 +152,7 @@ int main(int argc, char *argv[])
// Create & Open Window
cv
::
namedWindow
(
"REAL TIME DEMO"
,
CV_
WINDOW_KEEPRATIO
);
cv
::
namedWindow
(
"REAL TIME DEMO"
,
cv
::
WINDOW_KEEPRATIO
);
cv
::
VideoCapture
cap
;
// instantiate VideoCapture
...
...
samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/main_verification.cpp
View file @
e14f91dd
#include <iostream>
#include "cv.h"
#include "highgui.h"
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/nonfree/features2d.hpp>
...
...
@@ -132,7 +129,7 @@ int main(int, char**)
registration
.
setNumMax
(
n
);
// Create & Open Window
cv
::
namedWindow
(
"MODEL GROUND TRUTH"
,
CV_
WINDOW_KEEPRATIO
);
cv
::
namedWindow
(
"MODEL GROUND TRUTH"
,
cv
::
WINDOW_KEEPRATIO
);
// Set up the mouse events
cv
::
setMouseCallback
(
"MODEL GROUND TRUTH"
,
onMouseModelVerification
,
0
);
...
...
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