getInputSize method
Implementation
(int, int) getInputSize() {
final p = calloc<cobjdetect.Size>();
cvRun(() => cobjdetect.FaceDetectorYN_GetInputSize(ref, p));
final ret = (p.ref.width, p.ref.height);
calloc.free(p);
return ret;
}
(int, int) getInputSize() {
final p = calloc<cobjdetect.Size>();
cvRun(() => cobjdetect.FaceDetectorYN_GetInputSize(ref, p));
final ret = (p.ref.width, p.ref.height);
calloc.free(p);
return ret;
}