Browse Source

small bug fix.

pull/97/head
Canming Huang 8 years ago
parent
commit
740e94750e
  1. 2
      Emgu.CV.Extern/video/video_c.cpp

2
Emgu.CV.Extern/video/video_c.cpp

@ -179,7 +179,7 @@ int cveBuildOpticalFlowPyramid(
int derivBorder,
bool tryReuseInputImage)
{
cv::buildOpticalFlowPyramid(*img, *pyramid, *winSize, maxLevel, withDerivatives, pyrBorder, derivBorder, tryReuseInputImage);
return cv::buildOpticalFlowPyramid(*img, *pyramid, *winSize, maxLevel, withDerivatives, pyrBorder, derivBorder, tryReuseInputImage);
}
void cveEstimateRigidTransform(cv::_InputArray* src, cv::_InputArray* dst, bool fullAffine, cv::Mat* result)

Loading…
Cancel
Save