replaced #include <some_opencv_hdr> with #include "some_opencv_hdr" (ticket #719)

This commit is contained in:
Vadim Pisarevsky 2011-05-21 18:32:34 +00:00
parent b58d9edc6a
commit 23768b1826
81 changed files with 188 additions and 192 deletions

View File

@ -44,7 +44,7 @@
//#define DEBUG_CIRCLES
#ifdef DEBUG_CIRCLES
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/highgui/highgui.hpp"
#endif
using namespace cv;

View File

@ -47,7 +47,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/calib3d/calib3d.hpp"

View File

@ -48,11 +48,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/contrib/contrib.hpp"

View File

@ -49,7 +49,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/core/core.hpp"

View File

@ -46,7 +46,7 @@
//#define DEBUG_BLOB_DETECTOR
#ifdef DEBUG_BLOB_DETECTOR
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/highgui/highgui.hpp"
#endif
using namespace cv;

View File

@ -48,7 +48,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/features2d/features2d.hpp"

View File

@ -47,7 +47,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include <iostream>

View File

@ -3,7 +3,7 @@
#include <iostream>
#include <limits>
#include <cvconfig.h>
#include "cvconfig.h"
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/calib3d/calib3d.hpp"

View File

@ -42,9 +42,9 @@
#ifndef __CVCOMMON_H_
#define __CVCOMMON_H_
#include <cxcore.h>
#include <cv.h>
#include <cxmisc.h>
#include "cxcore.h"
#include "cv.h"
#include "cxmisc.h"
#define __BEGIN__ __CV_BEGIN__
#define __END__ __CV_END__

View File

@ -49,7 +49,7 @@
#define _CVCLASSIFIER_H_
#include <cmath>
#include <cxcore.h>
#include "cxcore.h"
#define CV_BOOST_API

View File

@ -53,7 +53,7 @@
#include <cmath>
#include <climits>
#include <highgui.h>
#include "highgui.h"
#ifdef CV_VERBOSE
#include <ctime>

View File

@ -54,8 +54,8 @@
//#include <ipl.h>
#include <cv.h>
#include <highgui.h>
#include "cv.h"
#include "highgui.h"
/* Calculates coefficients of perspective transformation
* which maps <quad> into rectangle ((0,0), (w,0), (w,h), (h,0)):

View File

@ -44,8 +44,8 @@
*
* Measure performance of classifier
*/
#include <cv.h>
#include <highgui.h>
#include "cv.h"
#include "highgui.h"
#include <cstdio>
#include <cmath>

View File

@ -49,7 +49,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/imgproc/imgproc.hpp"

View File

@ -46,7 +46,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/legacy/legacy.hpp"

View File

@ -46,7 +46,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/ml/ml.hpp"

View File

@ -48,7 +48,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/objdetect/objdetect.hpp"

View File

@ -45,7 +45,7 @@
#include <string>
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#ifdef HAVE_TBB

View File

@ -2,11 +2,11 @@
#include <assert.h>
#include <opencv/cxcore.h>
#include <opencv/cv.h>
#include <opencv/cvaux.h>
#include <opencv/cvwimage.h>
#include <opencv/highgui.h>
#include "opencv/cxcore.h"
#include "opencv/cv.h"
#include "opencv/cvaux.h"
#include "opencv/cvwimage.h"
#include "opencv/highgui.h"
#define MODULESTR "cv"

View File

@ -2,7 +2,7 @@
#define __OPENCV_AUTOCALIB_HPP__
#include <vector>
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
#include "matchers.hpp"
// See "Construction of Panoramic Image Mosaics with Global and Local Alignment"

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "blenders.hpp"
#include "util.hpp"

View File

@ -2,7 +2,7 @@
#define __OPENCV_BLENDERS_HPP__
#include <vector>
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
// Simple blender which puts one image over another
class Blender

View File

@ -1,5 +1,5 @@
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "util.hpp"
#include "warpers.hpp"
#include "blenders.hpp"

View File

@ -1,8 +1,8 @@
#include <algorithm>
#include <functional>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/gpu/gpu.hpp"
#include "matchers.hpp"
#include "util.hpp"
@ -20,11 +20,11 @@ void FeaturesFinder::operator ()(const Mat &image, ImageFeatures &features)
// Calculate histogram
Mat hsv;
cvtColor(image, hsv, CV_BGR2HSV);
int hbins = 30, sbins = 32, vbins = 30;
int hist_size[] = { hbins, sbins, vbins };
float hranges[] = { 0, 180 };
float sranges[] = { 0, 256 };
float vranges[] = { 0, 256 };
int hbins = 30, sbins = 32, vbins = 30;
int hist_size[] = { hbins, sbins, vbins };
float hranges[] = { 0, 180 };
float sranges[] = { 0, 256 };
float vranges[] = { 0, 256 };
const float* ranges[] = { hranges, sranges, vranges };
int channels[] = { 0, 1, 2 };
calcHist(&hsv, 1, channels, Mat(), features.hist, 3, hist_size, ranges);

View File

@ -1,10 +1,10 @@
#ifndef __OPENCV_MATCHERS_HPP__
#define __OPENCV_MATCHERS_HPP__
#ifndef __OPENCV_MATCHERS_HPP__
#define __OPENCV_MATCHERS_HPP__
#include <vector>
#include <opencv2/core/core.hpp>
#include <opencv2/features2d/features2d.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
struct ImageFeatures
{
cv::Size img_size;
@ -79,6 +79,6 @@ protected:
int num_matches_thresh2_;
cv::Ptr<FeaturesMatcher> impl_;
};
};
#endif // __OPENCV_MATCHERS_HPP__

View File

@ -1,6 +1,6 @@
#include <algorithm>
#include "opencv2/core/core_c.h"
#include <opencv2/calib3d/calib3d.hpp>
#include "opencv2/calib3d/calib3d.hpp"
#include "autocalib.hpp"
#include "motion_estimators.hpp"
#include "util.hpp"
@ -116,9 +116,9 @@ void BundleAdjuster::estimate(const vector<ImageFeatures> &features, const vecto
for (int i = 0; i < num_images_ - 1; ++i)
{
for (int j = i + 1; j < num_images_; ++j)
{
const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j];
if (matches_info.confidence > conf_thresh_)
{
const MatchesInfo& matches_info = pairwise_matches_[i * num_images_ + j];
if (matches_info.confidence > conf_thresh_)
edges_.push_back(make_pair(i, j));
}
}

View File

@ -2,7 +2,7 @@
#define __OPENCV_MOTION_ESTIMATORS_HPP__
#include <vector>
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
#include "matchers.hpp"
#include "util.hpp"

View File

@ -1,4 +1,4 @@
#include <opencv2/imgproc/imgproc.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include <gcgraph.hpp>
#include "seam_finders.hpp"
#include "util.hpp"

View File

@ -2,7 +2,7 @@
#define __OPENCV_SEAM_FINDERS_HPP__
#include <vector>
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
class SeamFinder
{

View File

@ -3,7 +3,7 @@
#include <vector>
#include <list>
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
#define ENABLE_LOG 1

View File

@ -1,8 +1,8 @@
#ifndef __OPENCV_WARPERS_HPP__
#define __OPENCV_WARPERS_HPP__
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
class Warper
{

View File

@ -1,7 +1,7 @@
#ifndef _OPENCV_IMAGESTORAGE_H_
#define _OPENCV_IMAGESTORAGE_H_
#include <highgui.h>
#include "highgui.h"
using namespace cv;

View File

@ -48,7 +48,7 @@
#endif
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#include "opencv2/video/tracking.hpp"

View File

@ -35,9 +35,9 @@
//M*/
#include <opencv2/core/core.hpp>
#include <opencv2/contrib/contrib.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/contrib/contrib.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <cstdio>

View File

@ -25,10 +25,10 @@
#include <stdlib.h>
#include <ctype.h>
#include <opencv2/core/core.hpp>
#include <opencv2/video/background_segm.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/video/background_segm.hpp"
#include <opencv2/imgproc/imgproc_c.h>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/highgui/highgui.hpp"
using namespace std;
using namespace cv;

View File

@ -1,6 +1,6 @@
#include <opencv2/video/background_segm.hpp>
#include <opencv2/legacy/blobtrack.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/video/background_segm.hpp"
#include "opencv2/legacy/blobtrack.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <opencv2/imgproc/imgproc_c.h>
#include <stdio.h>

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc_c.h>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/highgui/highgui.hpp"
#include <stdio.h>
void help()
{

View File

@ -1,5 +1,5 @@
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <ctype.h>
#include <stdio.h>

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc_c.h>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/highgui/highgui.hpp"
#include <stdio.h>
void help()

View File

@ -1,7 +1,7 @@
#include <opencv2/core/core.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>

View File

@ -1,5 +1,5 @@
#include <opencv2/video/tracking.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/video/tracking.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdio.h>
void help()
{

View File

@ -4,11 +4,11 @@
* Author: Liu Liu
* liuliu.1987+opencv@gmail.com
*/
#include <opencv2/core/core.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include <opencv2/imgproc/imgproc_c.h>
#include <iostream>

View File

@ -5,7 +5,7 @@
#include <stdio.h>
#ifdef HAVE_CONFIG_H
#include <cvconfig.h>
#include "cvconfig.h"
#endif
#ifdef HAVE_TBB
#include "tbb/task_scheduler_init.h"

View File

@ -2,7 +2,7 @@
* Copyright<EFBFBD> 2009, Liu Liu All rights reserved.
*/
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/imgproc/imgproc_c.h"

View File

@ -7,7 +7,7 @@
*
*/
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"

View File

@ -1,5 +1,5 @@
#include <opencv2/video/background_segm.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/video/background_segm.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdio.h>
using namespace cv;

View File

@ -4,10 +4,10 @@
* Created on: Oct 17, 2010
* Author: ethan
*/
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <vector>
#include <iostream>

View File

@ -1,8 +1,8 @@
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <map>

View File

@ -3,9 +3,9 @@
#include <algorithm>
#include <iterator>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
using namespace cv;
using namespace std;

View File

@ -1,6 +1,6 @@
#include <opencv2/video/tracking.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/video/tracking.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <ctype.h>

View File

@ -1,6 +1,6 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/contrib/contrib.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/contrib/contrib.hpp"
#include <iostream>

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
using namespace cv;

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <math.h>
#include <iostream>

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <fstream>
#include <iostream>

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>

View File

@ -1,6 +1,6 @@
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
using namespace cv;

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdio.h>

View File

@ -1,6 +1,6 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include <iostream>
#include <fstream>

View File

@ -1,5 +1,5 @@
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
using namespace cv;

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>

View File

@ -1,6 +1,6 @@
#include <opencv2/video/tracking.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/video/tracking.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>

View File

@ -1,5 +1,5 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>

View File

@ -3,7 +3,7 @@
#include "ml.h"
#include <stdio.h>
#include <iostream>
#include <opencv2/flann/flann.hpp>
#include "opencv2/flann/flann.hpp"
using namespace cv; // all the new API is put into "cv" namespace. Export its content
using namespace std;

View File

@ -1,7 +1,7 @@
#include <stdio.h>
#include <opencv2/core/core.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
using namespace cv;

View File

@ -1,7 +1,7 @@
#define CV_NO_BACKWARD_COMPATIBILITY
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdlib.h>
#include <stdio.h>

View File

@ -1,8 +1,8 @@
// WARNING: this sample is under construction! Use it on your own risk.
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>

View File

@ -1,6 +1,6 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/video/background_segm.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/video/background_segm.hpp"
#include <stdio.h>
#include <string>

View File

@ -8,10 +8,10 @@
*
*/
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <ctype.h>
#include <stdio.h>

View File

@ -8,7 +8,7 @@
* that was generated with imagelist_creator.cpp
* easy as CV_PI right?
*/
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <vector>

View File

@ -7,7 +7,7 @@
* A starter sample for using opencv, get a video stream and display the images
* easy as CV_PI right?
*/
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <vector>
#include <stdio.h>

View File

@ -5,10 +5,10 @@
* Author: erublee
*/
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/features2d/features2d.hpp>
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/features2d/features2d.hpp"
#include <iostream>
#include <list>
#include <vector>

View File

@ -4,11 +4,11 @@
#include "cvconfig.h"
#include <iostream>
#include <iomanip>
#include <opencv2/contrib/contrib.hpp>
#include <opencv2/objdetect/objdetect.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "opencv2/contrib/contrib.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/gpu/gpu.hpp"
using namespace std;
using namespace cv;

View File

@ -3,8 +3,8 @@
#include "cvconfig.h"
#include <iostream>
#include <iomanip>
#include <opencv2/opencv.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "opencv2/opencv.hpp"
#include "opencv2/gpu/gpu.hpp"
#ifdef HAVE_CUDA
#include "NCVHaarObjectDetection.hpp"

View File

@ -7,9 +7,9 @@
#endif
#include <iostream>
#include <cvconfig.h>
#include <opencv2/core/core.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "cvconfig.h"
#include "opencv2/core/core.hpp"
#include "opencv2/gpu/gpu.hpp"
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB)

View File

@ -8,10 +8,10 @@
#endif
#include <iostream>
#include <cvconfig.h>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "cvconfig.h"
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/gpu/gpu.hpp"
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB)

View File

@ -1,7 +1,7 @@
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/gpu/gpu.hpp"
#include <stdlib.h>
#include <stdio.h>

View File

@ -7,9 +7,9 @@
#endif
#include <iostream>
#include <cvconfig.h>
#include <opencv2/core/core.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "cvconfig.h"
#include "opencv2/core/core.hpp"
#include "opencv2/gpu/gpu.hpp"
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB)

View File

@ -5,7 +5,7 @@
#include <cstdio>
#include <vector>
#include <string>
#include <opencv2/core/core.hpp>
#include "opencv2/core/core.hpp"
#define TAB " "

View File

@ -1,8 +1,8 @@
#include <stdexcept>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/gpu/gpu.hpp"
#include "performance.h"
using namespace std;

View File

@ -8,10 +8,10 @@
#endif
#include <iostream>
#include <cvconfig.h>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "cvconfig.h"
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/gpu/gpu.hpp"
#if !defined(HAVE_CUDA) || !defined(HAVE_TBB)

View File

@ -1,9 +1,9 @@
#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/gpu/gpu.hpp>
#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/gpu/gpu.hpp"
using namespace std;
using namespace cv;