Markers creation ================ The creation of ArUco markers from a dictionary is illustrated in the code below: ``` python from argaze.ArUcoMarkers import ArUcoMarkersDictionary # Create a dictionary of specific April tags aruco_dictionary = ArUcoMarkersDictionary.ArUcoMarkersDictionary('DICT_APRILTAG_16h5') # Export marker n°5 as 3.5 cm picture with 300 dpi resolution aruco_dictionary.create_marker(5, 3.5).save('./markers/', 300) # Export all dictionary markers as 3.5 cm pictures with 300 dpi resolution aruco_dictionary.save('./markers/', 3.5, 300) ```