getOriginalWindowSize method

(int, int) getOriginalWindowSize()

Implementation

(int, int) getOriginalWindowSize() {
  final p = calloc<cobjdetect.Size>();
  cvRun(() => cobjdetect.CascadeClassifier_getOriginalWindowSize(ref, p));
  final ret = (p.ref.width, p.ref.height);
  calloc.free(p);
  return ret;
}