detectAndAnnotateFrames function

void detectAndAnnotateFrames(
  1. Pointer<Mat> image
)

Detect ArUco tags in the cv::aruco::DICT_4X4_50 dictionary and annotate them

Implementation

void detectAndAnnotateFrames(Pointer<Mat> image) {
  final Pointer<ArucoMarkers> markers = detectArucoMarkers(image, dictionary: 0);
  drawMarkers(image, markers);
  markers.dispose();
}