stereo module in opencv_contrib is renamed to xstereopull/2767/head
parent
b4459e1f06
commit
18f0bd2fa1
110 changed files with 110 additions and 193 deletions
@ -1,2 +1,2 @@ |
||||
set(the_description "ArUco Marker Detection") |
||||
ocv_define_module(aruco opencv_core opencv_imgproc opencv_calib3d WRAP python java objc) |
||||
ocv_define_module(aruco opencv_core opencv_imgproc opencv_3d opencv_calib WRAP python java objc) |
||||
|
@ -1,2 +1,2 @@ |
||||
set(the_description "Background Segmentation Algorithms") |
||||
ocv_define_module(bgsegm opencv_core opencv_imgproc opencv_video opencv_calib3d WRAP python java objc) |
||||
ocv_define_module(bgsegm opencv_core opencv_imgproc opencv_video opencv_3d WRAP python java objc) |
||||
|
@ -1,2 +1,2 @@ |
||||
set(the_description "Custom Calibration Pattern") |
||||
ocv_define_module(ccalib opencv_core opencv_imgproc opencv_calib3d opencv_features2d opencv_highgui WRAP python) |
||||
ocv_define_module(ccalib opencv_core opencv_imgproc opencv_3d opencv_calib opencv_features2d opencv_highgui WRAP python) |
||||
|
@ -1,2 +1,2 @@ |
||||
set(the_description "Optical Flow Algorithms") |
||||
ocv_define_module(optflow opencv_core opencv_imgproc opencv_calib3d opencv_video opencv_ximgproc opencv_imgcodecs opencv_flann WRAP python) |
||||
ocv_define_module(optflow opencv_core opencv_imgproc opencv_3d opencv_video opencv_ximgproc opencv_imgcodecs opencv_flann WRAP python) |
||||
|
@ -1,2 +1,2 @@ |
||||
set(the_description "rapid - silhouette based 3D object tracking") |
||||
ocv_define_module(rapid opencv_core opencv_imgproc opencv_calib3d WRAP python) |
||||
ocv_define_module(rapid opencv_core opencv_imgproc opencv_3d WRAP python) |
||||
|
@ -1,2 +1,2 @@ |
||||
set(the_description "Shape descriptors and matchers") |
||||
ocv_define_module(shape opencv_core opencv_imgproc opencv_calib3d WRAP python) |
||||
ocv_define_module(shape opencv_core opencv_imgproc opencv_3d WRAP python) |
||||
|
@ -1,2 +0,0 @@ |
||||
set(the_description "Stereo Correspondence") |
||||
ocv_define_module(stereo opencv_imgproc opencv_features2d opencv_core opencv_tracking) |
@ -1,49 +0,0 @@ |
||||
/*M///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
|
||||
//
|
||||
// By downloading, copying, installing or using the software you agree to this license.
|
||||
// If you do not agree to this license, do not download, install,
|
||||
// copy or use the software.
|
||||
//
|
||||
//
|
||||
// License Agreement
|
||||
// For Open Source Computer Vision Library
|
||||
//
|
||||
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
|
||||
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
|
||||
// Copyright (C) 2013, OpenCV Foundation, all rights reserved.
|
||||
// Third party copyrights are property of their respective owners.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without modification,
|
||||
// are permitted provided that the following conditions are met:
|
||||
//
|
||||
// * Redistribution's of source code must retain the above copyright notice,
|
||||
// this list of conditions and the following disclaimer.
|
||||
//
|
||||
// * Redistribution's in binary form must reproduce the above copyright notice,
|
||||
// this list of conditions and the following disclaimer in the documentation
|
||||
// and/or other materials provided with the distribution.
|
||||
//
|
||||
// * The name of the copyright holders may not be used to endorse or promote products
|
||||
// derived from this software without specific prior written permission.
|
||||
//
|
||||
// This software is provided by the copyright holders and contributors "as is" and
|
||||
// any express or implied warranties, including, but not limited to, the implied
|
||||
// warranties of merchantability and fitness for a particular purpose are disclaimed.
|
||||
// In no event shall the Intel Corporation or contributors be liable for any direct,
|
||||
// indirect, incidental, special, exemplary, or consequential damages
|
||||
// (including, but not limited to, procurement of substitute goods or services;
|
||||
// loss of use, data, or profits; or business interruption) however caused
|
||||
// and on any theory of liability, whether in contract, strict liability,
|
||||
// or tort (including negligence or otherwise) arising in any way out of
|
||||
// the use of this software, even if advised of the possibility of such damage.
|
||||
//
|
||||
//M*/
|
||||
|
||||
#ifdef __OPENCV_BUILD |
||||
#error this is a compatibility header which should not be used inside the OpenCV library |
||||
#endif |
||||
|
||||
#include "opencv2/stereo.hpp" |
||||
|
@ -1,2 +1,2 @@ |
||||
set(the_description "Structured Light API") |
||||
ocv_define_module(structured_light opencv_core opencv_imgproc opencv_calib3d opencv_phase_unwrapping OPTIONAL opencv_viz WRAP python java objc) |
||||
ocv_define_module(structured_light opencv_core opencv_imgproc opencv_3d opencv_stereo opencv_calib opencv_phase_unwrapping OPTIONAL opencv_viz WRAP python java objc) |
||||
|
@ -1,2 +1,2 @@ |
||||
set(the_description "Extended image processing module. It includes edge-aware filters and etc.") |
||||
ocv_define_module(ximgproc opencv_core opencv_imgproc opencv_calib3d opencv_imgcodecs opencv_video WRAP python java objc) |
||||
ocv_define_module(ximgproc opencv_core opencv_imgproc opencv_3d opencv_stereo opencv_imgcodecs opencv_video WRAP python java objc) |
||||
|
@ -0,0 +1,2 @@ |
||||
set(the_description "Stereo Correspondence") |
||||
ocv_define_module(xstereo opencv_imgproc opencv_features2d opencv_core opencv_stereo opencv_tracking) |
@ -1,7 +1,7 @@ |
||||
#include <opencv2/core.hpp> |
||||
#include <opencv2/highgui.hpp> |
||||
#include <fstream> |
||||
#include <opencv2/stereo.hpp> |
||||
#include <opencv2/xstereo.hpp> |
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@ |
||||
#include <opencv2/core.hpp> |
||||
#include <opencv2/stereo.hpp> |
||||
#include <opencv2/xstereo.hpp> |
||||
|
||||
using namespace cv; |
||||
using namespace std; |
@ -1,4 +1,4 @@ |
||||
#include "opencv2/stereo.hpp" |
||||
#include "opencv2/xstereo.hpp" |
||||
#include "opencv2/imgproc.hpp" |
||||
#include "opencv2/highgui.hpp" |
||||
#include <stdio.h> |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue