write method

void write(
  1. String filename
)

Write detector

Implementation

void write(String filename) {
  final cp = filename.toNativeUtf8().cast<ffi.Char>();
  cvRun(() => ccontrib.cv_xobjdetect_WBDetector_write(ref, cp));
  calloc.free(cp);
}