Skip to content

Commit 926fc20

Browse files
committed
Merge pull request #466 from maccesch:master
2 parents b0cb299 + a540326 commit 926fc20

File tree

6 files changed

+2
-14
lines changed

6 files changed

+2
-14
lines changed

modules/stereo/include/opencv2/stereo.hpp

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
#include "opencv2/core.hpp"
4848
#include "opencv2/features2d.hpp"
4949
#include "opencv2/core/affine.hpp"
50-
#include "../../stereo/src/descriptor.hpp"
51-
#include "../../stereo/src/matching.hpp"
50+
#include "opencv2/stereo/descriptor.hpp"
51+
#include "opencv2/stereo/matching.hpp"
5252

5353
/**
5454
@defgroup stereo Stereo Correspondance Algorithms
@@ -277,9 +277,4 @@ namespace cv
277277
}//stereo
278278
} // cv
279279

280-
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
281-
#include "opencv2/stereo/stereo_c.h"
282280
#endif
283-
284-
#endif
285-

modules/stereo/src/descriptor.hpp renamed to modules/stereo/include/opencv2/stereo/descriptor.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
* The interface contains the main descriptors that will be implemented in the descriptor class *
4545
\*****************************************************************************************************************/
4646

47-
#include "precomp.hpp"
4847
#include <stdint.h>
4948
#ifndef _OPENCV_DESCRIPTOR_HPP_
5049
#define _OPENCV_DESCRIPTOR_HPP_

modules/stereo/src/matching.hpp renamed to modules/stereo/include/opencv2/stereo/matching.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
* The interface contains the main methods for computing the matching between the left and right images *
4545
* *
4646
\******************************************************************************************************************/
47-
#include "precomp.hpp"
4847
#include <stdint.h>
4948

5049
#ifndef _OPENCV_MATCHING_HPP_

modules/stereo/src/descriptor.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
* The file contains the implemented descriptors *
4545
\******************************************************************************************************************/
4646
#include "precomp.hpp"
47-
#include "descriptor.hpp"
4847

4948
namespace cv
5049
{

modules/stereo/src/stereo_binary_bm.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@
4646
\****************************************************************************************/
4747

4848
#include "precomp.hpp"
49-
#include "descriptor.hpp"
50-
#include "matching.hpp"
5149
#include <stdio.h>
5250
#include <limits>
5351

modules/stereo/src/stereo_binary_sgbm.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ SGBM (Semi-global block matching)
5050

5151
#include "precomp.hpp"
5252
#include <limits.h>
53-
#include <descriptor.hpp>
54-
#include <matching.hpp>
5553

5654
namespace cv
5755
{

0 commit comments

Comments
 (0)