Fix cvCalcOpticalFlow when the status parameter is NULL
issue 2526
This commit is contained in:
parent
dff59ec960
commit
b1384a6da8
@ -1194,8 +1194,8 @@ cvCalcOpticalFlowPyrLK( const void* arrA, const void* arrB,
|
|||||||
st = cv::Mat(count, 1, CV_8U, (void*)status);
|
st = cv::Mat(count, 1, CV_8U, (void*)status);
|
||||||
if( error )
|
if( error )
|
||||||
err = cv::Mat(count, 1, CV_32F, (void*)error);
|
err = cv::Mat(count, 1, CV_32F, (void*)error);
|
||||||
cv::calcOpticalFlowPyrLK( A, B, ptA, ptB, status ? cv::_OutputArray(st) : cv::_OutputArray(),
|
cv::calcOpticalFlowPyrLK( A, B, ptA, ptB, st,
|
||||||
error ? cv::_OutputArray(err) : cv::_OutputArray(),
|
error ? cv::_OutputArray(err) : cv::noArray(),
|
||||||
winSize, level, criteria, flags);
|
winSize, level, criteria, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user