isRLMorphologyPossible static method
Check whether a custom made structuring element can be used with run length morphological operations. (It must consist of a continuous array of single runs per row)
Implementation
static bool isRLMorphologyPossible(InputArray rlStructuringElement) {
final p = calloc<ffi.Bool>();
cvRun(() => ccontrib.ximgproc_rl_isRLMorphologyPossible(rlStructuringElement.ref, p));
final rval = p.value;
calloc.free(p);
return rval;
}