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