gain property
Mat
get
gain
Implementation
Mat get gain {
final p = calloc<cvideo.Mat>();
cvRun(() => cvideo.KalmanFilter_GetGain(ref, p));
return Mat.fromPointer(p);
}
set
gain
(Mat m)
Implementation
set gain(Mat m) {
cvRun(() => cvideo.KalmanFilter_SetGain(ref, m.ref));
}