2 #include <visp3/core/vpConfig.h>
3 #ifdef VISP_HAVE_MODULE_SENSOR
4 #include <visp3/sensor/vpV4l2Grabber.h>
6 #include <visp3/core/vpImageConvert.h>
7 #include <visp3/klt/vpKltOpencv.h>
8 #include <visp3/gui/vpDisplayOpenCV.h>
9 #include <visp3/io/vpVideoReader.h>
11 int main(
int argc,
const char *argv[])
13 #if defined(VISP_HAVE_OPENCV) && (defined(VISP_HAVE_V4L2) || (VISP_HAVE_OPENCV_VERSION >= 0x020100))
15 bool opt_init_by_click =
false;
18 for (
int i=0; i<argc; i++) {
19 if (std::string(argv[i]) ==
"--init-by-click")
20 opt_init_by_click =
true;
21 else if (std::string(argv[i]) ==
"--device")
22 opt_device = atoi(argv[i+1]);
23 else if (std::string(argv[i]) ==
"--help") {
24 std::cout <<
"Usage: " << argv[0] <<
" [--init-by-click] [--device <camera device>] [--help]" << std::endl;
31 #if defined(VISP_HAVE_V4L2)
33 std::ostringstream device;
34 device <<
"/dev/video" << opt_device;
38 #elif defined(VISP_HAVE_OPENCV)
39 cv::VideoCapture g(opt_device);
41 std::cout <<
"Failed to open the camera" << std::endl;
49 #if (VISP_HAVE_OPENCV_VERSION < 0x020408)
50 IplImage * cvI = NULL;
73 if (opt_init_by_click) {
74 #if (VISP_HAVE_OPENCV_VERSION >= 0x020408)
76 std::vector<cv::Point2f> guess;
82 guess.push_back(cv::Point2f((
float)ip.
get_u(), (float)ip.
get_v()));
98 #if defined(VISP_HAVE_V4L2)
100 #elif defined(VISP_HAVE_OPENCV)
116 #if (VISP_HAVE_OPENCV_VERSION < 0x020408)
117 cvReleaseImage(&cvI);
123 std::cout <<
"Catch an exception: " << e << std::endl;
VISP_EXPORT int wait(double t0, double t)
void acquire(vpImage< unsigned char > &I)
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
void open(vpImage< unsigned char > &I)
void setHarrisFreeParameter(double harris_k)
static void convert(const vpImage< unsigned char > &src, vpImage< vpRGBa > &dest)
void setMaxFeatures(const int maxCount)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
void setDevice(const std::string &devname)
void setMinDistance(double minDistance)
error that can be emited by ViSP classes.
static const vpColor green
static void flush(const vpImage< unsigned char > &I)
void display(const vpImage< unsigned char > &I, const vpColor &color=vpColor::red, unsigned int thickness=1)
void setQuality(double qualityLevel)
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
void initTracking(const cv::Mat &I, const cv::Mat &mask=cv::Mat())
void setPyramidLevels(const int pyrMaxLevel)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
Class that is a wrapper over the Video4Linux2 (V4L2) driver.
void setWindowSize(const int winSize)
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
void setBlockSize(const int blockSize)
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
void setUseHarris(const int useHarrisDetector)
void track(const cv::Mat &I)