isEmpty method

bool isEmpty()

Implementation

bool isEmpty() {
  final p = calloc<ffi.Bool>();
  cvRun(() => ccontrib.ximgproc_RFFeatureGetter_Empty(ref, p));
  final rval = p.value;
  calloc.free(p);
  return rval;
}