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