3 #include <visp3/core/vpConfig.h>
4 #include <visp3/core/vpIoTools.h>
5 #include <visp3/gui/vpDisplayGDI.h>
6 #include <visp3/gui/vpDisplayOpenCV.h>
7 #include <visp3/gui/vpDisplayX.h>
8 #include <visp3/io/vpImageIo.h>
10 #include <visp3/mbt/vpMbGenericTracker.h>
12 #include <visp3/io/vpVideoReader.h>
14 int main(
int argc,
char **argv)
16 #if defined(VISP_HAVE_OPENCV) && defined(VISP_HAVE_PUGIXML)
17 #ifdef ENABLE_VISP_NAMESPACE
22 std::string opt_videoname_left =
"teabox_left.mp4";
23 std::string opt_videoname_right =
"teabox_right.mp4";
27 for (
int i = 0; i < argc; i++) {
28 if (std::string(argv[i]) ==
"--name" && i + 2 < argc) {
29 opt_videoname_left = std::string(argv[i + 1]);
30 opt_videoname_right = std::string(argv[i + 2]);
32 else if (std::string(argv[i]) ==
"--tracker" && i + 2 < argc) {
33 opt_tracker1 = atoi(argv[i + 1]);
34 opt_tracker2 = atoi(argv[i + 2]);
36 else if (std::string(argv[i]) ==
"--help") {
37 std::cout <<
"\nUsage: " << argv[0]
38 <<
" [--name <video name left> <video name right>]"
39 " [--tracker <1=egde|2=klt|3=hybrid> <1=egde|2=klt|3=hybrid>]"
46 if ((opt_tracker1 < 1 || opt_tracker1 > 3) && (opt_tracker2 < 1 || opt_tracker2 > 3)) {
47 std::cerr <<
"Wrong tracker type. Correct values are: "
48 "1=egde|2=keypoint|3=hybrid."
57 if (!parentname.empty()) {
58 objectname_left = parentname +
"/" + objectname_left;
61 std::cout <<
"Video name: " << opt_videoname_left <<
" ; " << opt_videoname_right << std::endl;
62 std::cout <<
"Tracker requested config files: " << objectname_left <<
".[init, cao]"
63 <<
" and " << objectname_right <<
".[init, cao]" << std::endl;
64 std::cout <<
"Tracker optional config files: " << opt_videoname_left <<
".ppm"
65 <<
" and " << opt_videoname_right <<
".ppm" << std::endl;
75 g_right.
open(I_right);
77 #if defined(VISP_HAVE_X11)
78 vpDisplayX display_left;
79 vpDisplayX display_right;
80 #elif defined(VISP_HAVE_GDI)
83 #elif defined(HAVE_OPENCV_HIGHGUI)
89 display_left.init(I_left, 100, 100,
"Model-based tracker (Left)");
90 display_right.init(I_right, 110 + (
int)I_left.
getWidth(), 100,
"Model-based tracker (Right)");
93 std::vector<int> trackerTypes(2);
94 trackerTypes[0] = opt_tracker1;
95 trackerTypes[1] = opt_tracker2;
99 #if !defined(VISP_HAVE_MODULE_KLT)
100 unsigned int nbTracker = trackerTypes.size();
101 for (
unsigned int i = 0; i < nbTracker; ++i) {
102 if (trackerTypes[i] >= 2) {
103 std::cout <<
"klt and hybrid model-based tracker are not available "
104 "since visp_klt module is missing"
112 tracker.loadConfigFile(objectname_left +
".xml", objectname_right +
".xml");
116 tracker.loadModel(objectname_left +
".cao", objectname_right +
".cao");
119 tracker.setDisplayFeatures(
true);
124 std::ifstream file_cRightMcLeft(
"cRightMcLeft.txt");
125 cRightMcLeft.
load(file_cRightMcLeft);
127 std::map<std::string, vpHomogeneousMatrix> mapOfCameraTransformationMatrix;
129 mapOfCameraTransformationMatrix[
"Camera2"] = cRightMcLeft;
131 tracker.setCameraTransformationMatrix(mapOfCameraTransformationMatrix);
135 tracker.initClick(I_left, I_right, objectname_left +
".init", objectname_right +
".init",
true);
138 while (!g_left.
end() && !g_right.
end()) {
146 tracker.track(I_left, I_right);
151 tracker.getPose(cLeftMo, cRightMo);
156 tracker.getCameraParameters(cam_left, cam_right);
157 tracker.display(I_left, I_right, cLeftMo, cRightMo, cam_left, cam_right,
vpColor::red, 2);
174 std::cerr <<
"Catch a ViSP exception: " << e.
what() << std::endl;
179 std::cout <<
"Install OpenCV and rebuild ViSP to use this example." << std::endl;
Generic class defining intrinsic camera parameters.
static const vpColor none
Display for windows using GDI (available on any windows 32 platform).
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
virtual void setDownScalingFactor(unsigned int scale)
static void display(const vpImage< unsigned char > &I)
static void displayFrame(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, double size, const vpColor &color=vpColor::none, unsigned int thickness=1, const vpImagePoint &offset=vpImagePoint(0, 0), const std::string &frameName="", const vpColor &textColor=vpColor::black, const vpImagePoint &textOffset=vpImagePoint(15, 15))
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
error that can be emitted by ViSP classes.
const char * what() const
Implementation of an homogeneous matrix and operations on such kind of matrices.
void load(std::ifstream &f)
unsigned int getWidth() const
Real-time 6D object pose tracking using its CAD model.
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
void acquire(vpImage< vpRGBa > &I)
void open(vpImage< vpRGBa > &I)
void setFileName(const std::string &filename)