seamEstimationResol property

double get seamEstimationResol

Implementation

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

Implementation

set seamEstimationResol(double value) {
  cvRun(() => cstitching.Stitcher_SetSeamEstimationResol(ref, value));
}