2 #include <visp3/core/vpConfig.h> 3 #ifdef VISP_HAVE_MODULE_SENSOR 4 #include <visp3/sensor/vpV4l2Grabber.h> 5 #include <visp3/sensor/vp1394CMUGrabber.h> 6 #include <visp3/sensor/vp1394TwoGrabber.h> 7 #include <visp3/sensor/vpFlyCaptureGrabber.h> 8 #include <visp3/sensor/vpRealSense2.h> 10 #include <visp3/core/vpXmlParserCamera.h> 11 #include <visp3/gui/vpDisplayGDI.h> 12 #include <visp3/gui/vpDisplayOpenCV.h> 13 #include <visp3/gui/vpDisplayX.h> 15 #include "pose_helper.h" 27 int main(
int argc,
char **argv)
29 #if (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV)) && \ 30 (defined(VISP_HAVE_V4L2) || defined(VISP_HAVE_DC1394) || defined(VISP_HAVE_CMU1394) || (VISP_HAVE_OPENCV_VERSION >= 0x020100) || defined(VISP_HAVE_FLYCAPTURE) || defined(VISP_HAVE_REALSENSE2) ) 32 std::string opt_intrinsic_file;
33 std::string opt_camera_name;
34 double opt_square_width = 0.12;
37 for (
int i = 0; i < argc; i++) {
38 if (std::string(argv[i]) ==
"--intrinsic" && i + 1 < argc) {
39 opt_intrinsic_file = std::string(argv[i + 1]);
40 }
else if (std::string(argv[i]) ==
"--camera_name" && i + 1 < argc) {
41 opt_camera_name = std::string(argv[i + 1]);
42 }
else if (std::string(argv[i]) ==
"--camera_device" && i + 1 < argc) {
43 opt_device = atoi(argv[i + 1]);
44 }
else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
45 std::cout <<
"\nUsage: " << argv[0]
46 <<
" [--camera_device <camera device> (default: 0)]" 47 <<
" [--intrinsic <xml calibration file> (default: empty)]" 48 " [--camera_name <camera name in xml calibration file> (default: empty)]" 49 " [--square_width <square width in meter (default: 0.12)] [--help] [-h]\n" 50 <<
"\nExample using default camera parameters and square size:\n" 51 <<
" " << argv[0] <<
"\n" 52 <<
"\nExample fully tuned for a 0.1m x 0.1m square:\n" 53 <<
" " << argv[0] <<
" --intrinsic camera.xml --camera_name Camera --square_width 0.1\n" 65 if (!opt_intrinsic_file.empty() && !opt_camera_name.empty()) {
66 std::cout <<
"Intrinsic file: " << opt_intrinsic_file << std::endl;
67 std::cout <<
"Camera name : " << opt_camera_name << std::endl;
69 std::cout <<
"Succeed to read camera parameters from xml file" << std::endl;
71 std::cout <<
"Unable to read camera parameters from xml file" << std::endl;
77 #if defined(VISP_HAVE_V4L2) 79 std::ostringstream device;
80 device <<
"/dev/video" << opt_device;
81 std::cout <<
"Use Video 4 Linux grabber on device " << device.str() << std::endl;
85 #elif defined(VISP_HAVE_DC1394) 87 std::cout <<
"Use DC1394 grabber" << std::endl;
90 #elif defined(VISP_HAVE_CMU1394) 92 std::cout <<
"Use CMU1394 grabber" << std::endl;
95 #elif defined(VISP_HAVE_FLYCAPTURE) 97 std::cout <<
"Use FlyCapture grabber" << std::endl;
100 #elif defined(VISP_HAVE_REALSENSE2) 102 std::cout <<
"Use Realsense 2 grabber" << std::endl;
105 config.disable_stream(RS2_STREAM_DEPTH);
106 config.disable_stream(RS2_STREAM_INFRARED);
107 config.enable_stream(RS2_STREAM_COLOR, 640, 480, RS2_FORMAT_RGBA8, 30);
111 std::cout <<
"Read camera parameters from Realsense device" << std::endl;
113 #elif defined(VISP_HAVE_OPENCV) 114 std::cout <<
"Use OpenCV grabber on device " << opt_device << std::endl;
115 cv::VideoCapture g(opt_device);
117 std::cout <<
"Failed to open the camera" << std::endl;
126 std::cout <<
"Square width : " << opt_square_width << std::endl;
127 std::cout << cam << std::endl;
132 std::vector<vpDot2> dot(4);
133 std::vector<vpPoint> point;
134 std::vector<vpImagePoint> ip;
135 double L = opt_square_width / 2.;
136 point.push_back(
vpPoint(-L, -L, 0));
137 point.push_back(
vpPoint( L, -L, 0));
138 point.push_back(
vpPoint( L, L, 0));
139 point.push_back(
vpPoint(-L, L, 0));
141 #if defined(VISP_HAVE_X11) 143 #elif defined(VISP_HAVE_GDI) 145 #elif defined(VISP_HAVE_OPENCV) 150 bool apply_cv =
false;
156 #if defined(VISP_HAVE_V4L2) || defined(VISP_HAVE_DC1394) || defined(VISP_HAVE_CMU1394) || defined(VISP_HAVE_FLYCAPTURE) || defined(VISP_HAVE_REALSENSE2) 158 #elif defined(VISP_HAVE_OPENCV) 165 ip = track(I, dot, init_cv);
166 computePose(point, ip, cam, init_cv, cMo);
173 std::stringstream ss;
174 ss <<
"Translation: " << std::setprecision(5) << pose[0] <<
" " << pose[1] <<
" " << pose[2] <<
" [m]";
182 std::cout <<
"Computer vision failure." << std::endl;
203 std::stringstream ss;
210 std::cout <<
"Catch an exception: " << e.
getMessage() << std::endl;
212 #elif (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV)) 215 std::cout <<
"Install a 3rd party dedicated to frame grabbing (dc1394, cmu1394, v4l2, OpenCV, FlyCapture, Realsense2), configure and build ViSP again to use this example" << std::endl;
219 std::cout <<
"Install a 3rd party dedicated to image display (X11, GDI, OpenCV), configure and build ViSP again to use this example" << std::endl;
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
void open(vpImage< unsigned char > &I)
unsigned int getWidth() const
static void convert(const vpImage< unsigned char > &src, vpImage< vpRGBa > &dest)
Implementation of an homogeneous matrix and operations on such kind of matrices.
void open(vpImage< unsigned char > &I)
Display for windows using GDI (available on any windows 32 platform).
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
void setDevice(const std::string &devname)
static const vpColor none
error that can be emited by ViSP classes.
void open(const rs2::config &cfg=rs2::config())
XML parser to load and save intrinsic camera parameters.
static void flush(const vpImage< unsigned char > &I)
vpCameraParameters getCameraParameters(const rs2_stream &stream, vpCameraParameters::vpCameraParametersProjType type=vpCameraParameters::perspectiveProjWithDistortion) const
VISP_EXPORT double measureTimeMs()
void open(vpImage< unsigned char > &I)
Class that defines what is a point.
void open(vpImage< unsigned char > &I)
Firewire cameras video capture based on CMU 1394 Digital Camera SDK.
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Generic class defining intrinsic camera parameters.
const char * getMessage(void) const
void acquire(vpImage< unsigned char > &grey)
void setScale(unsigned scale=vpV4l2Grabber::DEFAULT_SCALE)
Class that is a wrapper over the Video4Linux2 (V4L2) driver.
static double deg(double rad)
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))
Implementation of a pose vector and operations on poses.
unsigned int getHeight() const
Class for firewire ieee1394 video devices using libdc1394-2.x api.