1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

fix unintialized fields

This commit is contained in:
Alexander Alekhin
2014-01-29 18:58:27 +04:00
parent f91f55927e
commit 6fa49f6e80
+3
View File
@@ -598,6 +598,7 @@ namespace cv
struct dim3
{
unsigned int x, y, z;
dim3() : x(0), y(0), z(0) { }
};
public:
PyrLKOpticalFlow()
@@ -607,6 +608,8 @@ namespace cv
iters = 30;
derivLambda = 0.5;
useInitialFlow = false;
waveSize = 0;
}
bool checkParam()