Skip to content

Commit

Permalink
Move non-CV functionality from core.hpp to separate utility.hpp header
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Kamaev committed Mar 20, 2013
1 parent 1ad7af3 commit 89356ff
Show file tree
Hide file tree
Showing 90 changed files with 709 additions and 621 deletions.
1 change: 1 addition & 0 deletions apps/sft/include/sft/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
#define __SFT_COMMON_HPP__

#include <opencv2/core.hpp>
#include <opencv2/core/utility.hpp>
#include <opencv2/softcascade.hpp>

namespace cv {using namespace softcascade;}
Expand Down
1 change: 1 addition & 0 deletions include/opencv/cv.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@

#include "opencv2/core/core_c.h"
#include "opencv2/core.hpp"
#include "opencv2/core/utility.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/imgproc.hpp"
#include "opencv2/video.hpp"
Expand Down
5 changes: 4 additions & 1 deletion modules/calib3d/src/precomp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@
#include "opencv2/calib3d.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/core/internal.hpp"
#include "opencv2/features2d.hpp"

#include "opencv2/core/utility.hpp"
#include "opencv2/core/internal.hpp"

#include <vector>

#ifdef HAVE_TEGRA_OPTIMIZATION
Expand Down
2 changes: 1 addition & 1 deletion modules/calib3d/test/test_precomp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
#ifndef __OPENCV_TEST_PRECOMP_HPP__
#define __OPENCV_TEST_PRECOMP_HPP__

#include <iostream>
#include "opencv2/ts.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/calib3d.hpp"
#include "opencv2/highgui.hpp"
#include <iostream>

namespace cvtest
{
Expand Down
1 change: 1 addition & 0 deletions modules/contrib/src/detection_based_tracker.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#if defined(__linux__) || defined(LINUX) || defined(__APPLE__) || defined(ANDROID)
#include "opencv2/contrib/detection_based_tracker.hpp"
#include "opencv2/core/utility.hpp"

#include <pthread.h>

Expand Down
2 changes: 2 additions & 0 deletions modules/contrib/src/precomp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
#include "opencv2/objdetect.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/imgproc/imgproc_c.h"

#include "opencv2/core/utility.hpp"
#include "opencv2/core/internal.hpp"

namespace cv
Expand Down
Loading

0 comments on commit 89356ff

Please sign in to comment.