4 #include <visp3/core/vpConfig.h>
7 #if defined(HAVE_OPENCV_HIGHGUI) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO) && defined(HAVE_OPENCV_VIDEOIO)
11 #include <visp3/core/vpImageConvert.h>
12 #include <visp3/gui/vpDisplayOpenCV.h>
13 #include <visp3/io/vpVideoReader.h>
14 #include <visp3/klt/vpKltOpencv.h>
17 int main(
int argc,
const char *argv[])
19 #ifdef ENABLE_VISP_NAMESPACE
24 std::string opt_videoname =
"video-postcard.mp4";
25 bool opt_init_by_click =
false;
26 unsigned int opt_subsample = 1;
27 for (
int i = 1; i < argc; i++) {
28 if (std::string(argv[i]) ==
"--videoname") {
29 opt_videoname = std::string(argv[++i]);
31 else if (std::string(argv[i]) ==
"--init-by-click") {
32 opt_init_by_click =
true;
34 else if (std::string(argv[i]) ==
"--subsample") {
35 opt_subsample =
static_cast<unsigned int>(std::atoi(argv[++i]));
37 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
38 std::cout <<
"Usage: " << argv[0]
39 <<
" [--videoname <video name>] [--subsample <scale factor>] [--init-by-click]"
40 <<
" [--help] [-h]" << std::endl;
53 Iacq.
subsample(opt_subsample, opt_subsample, I);
82 if (opt_init_by_click) {
84 std::vector<cv::Point2f> feature;
90 feature.push_back(cv::Point2f((
float)ip.
get_u(), (
float)ip.
get_v()));
106 std::cout <<
"Tracker initialized with " << tracker.
getNbFeatures() <<
" features" << std::endl;
110 while (!reader.
end()) {
113 Iacq.
subsample(opt_subsample, opt_subsample, I);
120 std::vector<cv::Point2f> feature;
126 feature.push_back(cv::Point2f((
float)ip.
get_u(), (
float)ip.
get_v()));
156 std::cout <<
"Catch an exception: " << e << std::endl;
166 #if !defined(HAVE_OPENCV_HIGHGUI)
167 std::cout <<
"This tutorial needs OpenCV highgui module that is missing." << std::endl;
169 #if !defined(HAVE_OPENCV_IMGPROC)
170 std::cout <<
"This tutorial needs OpenCV imgproc module that is missing." << std::endl;
172 #if !defined(HAVE_OPENCV_VIDEO)
173 std::cout <<
"This tutorial needs OpenCV video module that is missing." << std::endl;
175 #if !defined(HAVE_OPENCV_VIDEOIO)
176 std::cout <<
"This tutorial needs OpenCV videoio module that is missing." << std::endl;
static const vpColor green
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)
static void display(const vpImage< unsigned char > &I)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
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.
static void convert(const vpImage< unsigned char > &src, vpImage< vpRGBa > &dest)
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
void subsample(unsigned int v_scale, unsigned int h_scale, vpImage< Type > &sampled) const
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
void display(const vpImage< unsigned char > &I, const vpColor &color=vpColor::red, unsigned int thickness=1) const
void setBlockSize(int blockSize)
void setQuality(double qualityLevel)
void track(const cv::Mat &I)
int getNbFeatures() const
Get the number of current features.
void setHarrisFreeParameter(double harris_k)
void setMaxFeatures(int maxCount)
void initTracking(const cv::Mat &I, const cv::Mat &mask=cv::Mat())
void setMinDistance(double minDistance)
void setUseHarris(int useHarrisDetector)
void setWindowSize(int winSize)
void setPyramidLevels(int pyrMaxLevel)
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
bool isVideoFormat() const
void acquire(vpImage< vpRGBa > &I)
void setFileName(const std::string &filename)
long getFirstFrameIndex()
long getFrameIndex() const
VISP_EXPORT int wait(double t0, double t)
VISP_EXPORT double measureTimeMs()