Creating a Page of ArUco Markers With OpenCV
Learn how to generate a page filled with ArUco markers.
We'll cover the following...
We'll cover the following...
Creating a single marker
Let’s put the relevant functions in a function so we can easily create markers in an iterative manner.
In the example below, we’ll create such a function with the name create_marker().
Line 5: An empty marker_image will be created as a numpy matrix of zeros. The size will be marker_size in both dimensions. The type is set to uint8.
Line 6: Then we draw the marker using ...