mirror of
https://github.com/opencv/opencv.git
synced 2025-06-29 16:11:00 +08:00
calib3d: uninitialzed fields in usac
This commit is contained in:
parent
5564d73071
commit
d986cc4861
@ -421,7 +421,7 @@ struct SPRT_history {
|
|||||||
double epsilon, delta, A;
|
double epsilon, delta, A;
|
||||||
// number of samples processed by test
|
// number of samples processed by test
|
||||||
int tested_samples; // k
|
int tested_samples; // k
|
||||||
SPRT_history () {
|
SPRT_history () : epsilon(0), delta(0), A(0) {
|
||||||
tested_samples = 0;
|
tested_samples = 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user