arucoGenerateImageMarkerAsync function
Future<Mat>
arucoGenerateImageMarkerAsync(
- PredefinedDictionaryType dictionaryId,
- int id,
- int sidePixels,
- int borderBits,
Implementation
Future<Mat> arucoGenerateImageMarkerAsync(
PredefinedDictionaryType dictionaryId,
int id,
int sidePixels,
int borderBits,
) async =>
cvRunAsync<Mat>(
(callback) => ccontrib.ArucoGenerateImageMarker_Async(
dictionaryId.value,
id,
sidePixels,
borderBits,
callback,
),
matCompleter,
);