Merge pull request #466 from maccesch:master

pull/467/head
Vadim Pisarevsky 9 years ago
commit 926fc203ff
  1. 9
      modules/stereo/include/opencv2/stereo.hpp
  2. 1
      modules/stereo/include/opencv2/stereo/descriptor.hpp
  3. 1
      modules/stereo/include/opencv2/stereo/matching.hpp
  4. 1
      modules/stereo/src/descriptor.cpp
  5. 2
      modules/stereo/src/stereo_binary_bm.cpp
  6. 2
      modules/stereo/src/stereo_binary_sgbm.cpp

@ -47,8 +47,8 @@
#include "opencv2/core.hpp"
#include "opencv2/features2d.hpp"
#include "opencv2/core/affine.hpp"
#include "../../stereo/src/descriptor.hpp"
#include "../../stereo/src/matching.hpp"
#include "opencv2/stereo/descriptor.hpp"
#include "opencv2/stereo/matching.hpp"
/**
@defgroup stereo Stereo Correspondance Algorithms
@ -277,9 +277,4 @@ namespace cv
}//stereo
} // cv
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/stereo/stereo_c.h"
#endif
#endif

@ -44,7 +44,6 @@
* The interface contains the main descriptors that will be implemented in the descriptor class *
\*****************************************************************************************************************/
#include "precomp.hpp"
#include <stdint.h>
#ifndef _OPENCV_DESCRIPTOR_HPP_
#define _OPENCV_DESCRIPTOR_HPP_

@ -44,7 +44,6 @@
* The interface contains the main methods for computing the matching between the left and right images *
* *
\******************************************************************************************************************/
#include "precomp.hpp"
#include <stdint.h>
#ifndef _OPENCV_MATCHING_HPP_

@ -44,7 +44,6 @@
* The file contains the implemented descriptors *
\******************************************************************************************************************/
#include "precomp.hpp"
#include "descriptor.hpp"
namespace cv
{

@ -46,8 +46,6 @@
\****************************************************************************************/
#include "precomp.hpp"
#include "descriptor.hpp"
#include "matching.hpp"
#include <stdio.h>
#include <limits>

@ -50,8 +50,6 @@ SGBM (Semi-global block matching)
#include "precomp.hpp"
#include <limits.h>
#include <descriptor.hpp>
#include <matching.hpp>
namespace cv
{

Loading…
Cancel
Save