mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
5.0 KiB
123 lines
5.0 KiB
//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, Intel Corporation, 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*/ |
|
|
|
#include "precomp.hpp" |
|
#include "opencv2/calib3d/calib3d_c.h" |
|
|
|
CvStereoBMState* cvCreateStereoBMState( int /*preset*/, int numberOfDisparities ) |
|
{ |
|
CvStereoBMState* state = (CvStereoBMState*)cvAlloc( sizeof(*state) ); |
|
if( !state ) |
|
return 0; |
|
|
|
state->preFilterType = CV_STEREO_BM_XSOBEL; //CV_STEREO_BM_NORMALIZED_RESPONSE; |
|
state->preFilterSize = 9; |
|
state->preFilterCap = 31; |
|
state->SADWindowSize = 15; |
|
state->minDisparity = 0; |
|
state->numberOfDisparities = numberOfDisparities > 0 ? numberOfDisparities : 64; |
|
state->textureThreshold = 10; |
|
state->uniquenessRatio = 15; |
|
state->speckleRange = state->speckleWindowSize = 0; |
|
state->trySmallerWindows = 0; |
|
state->roi1 = state->roi2 = cvRect(0,0,0,0); |
|
state->disp12MaxDiff = -1; |
|
|
|
state->preFilteredImg0 = state->preFilteredImg1 = state->slidingSumBuf = |
|
state->disp = state->cost = 0; |
|
|
|
return state; |
|
} |
|
|
|
void cvReleaseStereoBMState( CvStereoBMState** state ) |
|
{ |
|
if( !state ) |
|
CV_Error( CV_StsNullPtr, "" ); |
|
|
|
if( !*state ) |
|
return; |
|
|
|
cvReleaseMat( &(*state)->preFilteredImg0 ); |
|
cvReleaseMat( &(*state)->preFilteredImg1 ); |
|
cvReleaseMat( &(*state)->slidingSumBuf ); |
|
cvReleaseMat( &(*state)->disp ); |
|
cvReleaseMat( &(*state)->cost ); |
|
cvFree( state ); |
|
} |
|
|
|
void cvFindStereoCorrespondenceBM( const CvArr* leftarr, const CvArr* rightarr, |
|
CvArr* disparr, CvStereoBMState* state ) |
|
{ |
|
cv::Mat left = cv::cvarrToMat(leftarr), right = cv::cvarrToMat(rightarr); |
|
const cv::Mat disp = cv::cvarrToMat(disparr); |
|
|
|
CV_Assert( state != 0 ); |
|
|
|
cv::Ptr<cv::StereoBM> sm = cv::StereoBM::create(state->numberOfDisparities, |
|
state->SADWindowSize); |
|
sm->setPreFilterType(state->preFilterType); |
|
sm->setPreFilterSize(state->preFilterSize); |
|
sm->setPreFilterCap(state->preFilterCap); |
|
sm->setBlockSize(state->SADWindowSize); |
|
sm->setNumDisparities(state->numberOfDisparities > 0 ? state->numberOfDisparities : 64); |
|
sm->setTextureThreshold(state->textureThreshold); |
|
sm->setUniquenessRatio(state->uniquenessRatio); |
|
sm->setSpeckleRange(state->speckleRange); |
|
sm->setSpeckleWindowSize(state->speckleWindowSize); |
|
sm->setDisp12MaxDiff(state->disp12MaxDiff); |
|
|
|
sm->compute(left, right, disp); |
|
} |
|
|
|
CvRect cvGetValidDisparityROI( CvRect roi1, CvRect roi2, int minDisparity, |
|
int numberOfDisparities, int SADWindowSize ) |
|
{ |
|
return (CvRect)cv::getValidDisparityROI( roi1, roi2, minDisparity, |
|
numberOfDisparities, SADWindowSize ); |
|
} |
|
|
|
void cvValidateDisparity( CvArr* _disp, const CvArr* _cost, int minDisparity, |
|
int numberOfDisparities, int disp12MaxDiff ) |
|
{ |
|
cv::Mat disp = cv::cvarrToMat(_disp), cost = cv::cvarrToMat(_cost); |
|
cv::validateDisparity( disp, cost, minDisparity, numberOfDisparities, disp12MaxDiff ); |
|
}
|
|
|