arucoGenerateImageMarkerAsync function

Future<Mat> arucoGenerateImageMarkerAsync(
  1. PredefinedDictionaryType dictionaryId,
  2. int id,
  3. int sidePixels,
  4. 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,
    );