Update headers

This commit is contained in:
edgarriba 2014-08-06 08:18:11 +02:00
parent ddf5c86f3a
commit e14f91dd37
4 changed files with 2 additions and 10 deletions

View File

@ -9,7 +9,6 @@
#define ROBUSTMATCHER_H_
#include <iostream>
#include <boost/shared_ptr.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>

View File

@ -9,7 +9,6 @@
#define UTILS_H_
#include <iostream>
#include <cv.h>
#include "PnPProblem.h"

View File

@ -1,9 +1,6 @@
#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

View File

@ -1,8 +1,5 @@
#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 );