errorCovPost property
Mat
get
errorCovPost
Implementation
Mat get errorCovPost {
final p = Mat.empty();
cvRun(() => cvideo.cv_KalmanFilter_get_errorCovPost(ref, p.ptr));
return p;
}
set
errorCovPost
(Mat m)
Implementation
set errorCovPost(Mat m) {
cvRun(() => cvideo.cv_KalmanFilter_set_errorCovPost(ref, m.ref));
}