mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
Merge branch 4.x
This commit is contained in:
Binary file not shown.
@@ -489,9 +489,9 @@ class SVG:
|
||||
f.close()
|
||||
|
||||
else:
|
||||
f = codecs.open(fileName, "w", encoding=encoding)
|
||||
f.write(self.standalone_xml(encoding=encoding))
|
||||
f.close()
|
||||
with open(fileName, "w", encoding=encoding) as f:
|
||||
f.write(self.standalone_xml(encoding=encoding))
|
||||
|
||||
|
||||
def inkview(self, fileName=None, encoding="utf-8"):
|
||||
"""View in "inkview", assuming that program is available on your system.
|
||||
|
||||
@@ -18,10 +18,10 @@ class aruco_objdetect_test(NewOpenCVTests):
|
||||
square_size = 100
|
||||
aruco_type = [cv.aruco.DICT_4X4_1000, cv.aruco.DICT_5X5_1000, cv.aruco.DICT_6X6_1000,
|
||||
cv.aruco.DICT_7X7_1000, cv.aruco.DICT_ARUCO_ORIGINAL, cv.aruco.DICT_APRILTAG_16h5,
|
||||
cv.aruco.DICT_APRILTAG_25h9, cv.aruco.DICT_APRILTAG_36h10, cv.aruco.DICT_APRILTAG_36h11]
|
||||
cv.aruco.DICT_APRILTAG_25h9, cv.aruco.DICT_APRILTAG_36h10, cv.aruco.DICT_APRILTAG_36h11, cv.aruco.DICT_ARUCO_MIP_36h12]
|
||||
aruco_type_str = ['DICT_4X4_1000','DICT_5X5_1000', 'DICT_6X6_1000',
|
||||
'DICT_7X7_1000', 'DICT_ARUCO_ORIGINAL', 'DICT_APRILTAG_16h5',
|
||||
'DICT_APRILTAG_25h9', 'DICT_APRILTAG_36h10', 'DICT_APRILTAG_36h11']
|
||||
'DICT_APRILTAG_25h9', 'DICT_APRILTAG_36h10', 'DICT_APRILTAG_36h11', 'DICT_ARUCO_MIP_36h12']
|
||||
marker_size = 0.8*square_size
|
||||
board_width = cols*square_size
|
||||
board_height = rows*square_size
|
||||
|
||||
Reference in New Issue
Block a user