Commit fb74aa76 authored by Marc-Stefan Cassola's avatar Marc-Stefan Cassola

Fixed include error

parent 173512b9
...@@ -47,8 +47,8 @@ ...@@ -47,8 +47,8 @@
#include "opencv2/core.hpp" #include "opencv2/core.hpp"
#include "opencv2/features2d.hpp" #include "opencv2/features2d.hpp"
#include "opencv2/core/affine.hpp" #include "opencv2/core/affine.hpp"
#include "../../stereo/src/descriptor.hpp" #include "stereo/descriptor.hpp"
#include "../../stereo/src/matching.hpp" #include "stereo/matching.hpp"
/** /**
@defgroup stereo Stereo Correspondance Algorithms @defgroup stereo Stereo Correspondance Algorithms
...@@ -277,9 +277,4 @@ namespace cv ...@@ -277,9 +277,4 @@ namespace cv
}//stereo }//stereo
} // cv } // cv
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/stereo/stereo_c.h"
#endif #endif
#endif
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
* The interface contains the main descriptors that will be implemented in the descriptor class * * The interface contains the main descriptors that will be implemented in the descriptor class *
\*****************************************************************************************************************/ \*****************************************************************************************************************/
#include "precomp.hpp"
#include <stdint.h> #include <stdint.h>
#ifndef _OPENCV_DESCRIPTOR_HPP_ #ifndef _OPENCV_DESCRIPTOR_HPP_
#define _OPENCV_DESCRIPTOR_HPP_ #define _OPENCV_DESCRIPTOR_HPP_
......
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
* The interface contains the main methods for computing the matching between the left and right images * * The interface contains the main methods for computing the matching between the left and right images *
* * * *
\******************************************************************************************************************/ \******************************************************************************************************************/
#include "precomp.hpp"
#include <stdint.h> #include <stdint.h>
#ifndef _OPENCV_MATCHING_HPP_ #ifndef _OPENCV_MATCHING_HPP_
......
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
* The file contains the implemented descriptors * * The file contains the implemented descriptors *
\******************************************************************************************************************/ \******************************************************************************************************************/
#include "precomp.hpp" #include "precomp.hpp"
#include "descriptor.hpp"
namespace cv namespace cv
{ {
......
...@@ -46,8 +46,6 @@ ...@@ -46,8 +46,6 @@
\****************************************************************************************/ \****************************************************************************************/
#include "precomp.hpp" #include "precomp.hpp"
#include "descriptor.hpp"
#include "matching.hpp"
#include <stdio.h> #include <stdio.h>
#include <limits> #include <limits>
......
...@@ -50,8 +50,6 @@ SGBM (Semi-global block matching) ...@@ -50,8 +50,6 @@ SGBM (Semi-global block matching)
#include "precomp.hpp" #include "precomp.hpp"
#include <limits.h> #include <limits.h>
#include <descriptor.hpp>
#include <matching.hpp>
namespace cv namespace cv
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment