waveCorrection property

bool get waveCorrection

Implementation

bool get waveCorrection {
  return using<bool>((arena) {
    final rptr = arena<ffi.Bool>();
    cvRun(() => cstitching.Stitcher_GetWaveCorrection(ref, rptr));
    return rptr.value;
  });
}
set waveCorrection (bool value)

Implementation

set waveCorrection(bool value) {
  cvRun(() => cstitching.Stitcher_SetWaveCorrection(ref, value));
}