mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
Merge branch 4.x
This commit is contained in:
@@ -740,8 +740,8 @@ public:
|
||||
CV_StereoBMTest()
|
||||
{
|
||||
name = "stereobm";
|
||||
fill(rmsEps.begin(), rmsEps.end(), 0.4f);
|
||||
fill(fracEps.begin(), fracEps.end(), 0.022f);
|
||||
std::fill(rmsEps.begin(), rmsEps.end(), 0.4f);
|
||||
std::fill(fracEps.begin(), fracEps.end(), 0.022f);
|
||||
}
|
||||
|
||||
protected:
|
||||
@@ -866,8 +866,8 @@ public:
|
||||
CV_StereoSGBMTest()
|
||||
{
|
||||
name = "stereosgbm";
|
||||
fill(rmsEps.begin(), rmsEps.end(), 0.25f);
|
||||
fill(fracEps.begin(), fracEps.end(), 0.01f);
|
||||
std::fill(rmsEps.begin(), rmsEps.end(), 0.25f);
|
||||
std::fill(fracEps.begin(), fracEps.end(), 0.01f);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user