seamEstimationResol property
double
get
seamEstimationResol
Implementation
double get seamEstimationResol {
return using<double>((arena) {
final rptr = arena<ffi.Double>();
cvRun(() => cffi.Stitcher_GetSeamEstimationResol(ref, rptr));
return rptr.value;
});
}
set
seamEstimationResol
(double value)
Implementation
set seamEstimationResol(double value) {
cvRun(() => cffi.Stitcher_SetSeamEstimationResol(ref, value));
}