detectorParameters property
ArucoDetectorParameters
get
detectorParameters
Implementation
ArucoDetectorParameters get detectorParameters {
final out = calloc<cvg.ArucoDetectorParams>();
cvRun(() => ccontrib.cv_aruco_charucoDetector_getDetectorParameters(ref, out));
return ArucoDetectorParameters.fromPointer(out);
}
set
detectorParameters
(ArucoDetectorParameters value)
Implementation
set detectorParameters(ArucoDetectorParameters value) =>
ccontrib.cv_aruco_charucoDetector_setDetectorParameters(ref, value.ref);