Skip to content

Commit 781d850

Browse files
committed
Issue #63: Fix typo (11 instead of 1) and name args for clarity.
1 parent 458a424 commit 781d850

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sksurgeryutils/ui/sksurgerycharucotest_demo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ def __init__(self, camera, width, height, rows, columns, dictionary):
4949
# pylint: disable=no-member
5050
self.dictionary = aruco.getPredefinedDictionary(dictionary)
5151
self.board = aruco.CharucoBoard((rows, columns),
52-
2,
53-
11,
54-
self.dictionary)
52+
squareLength=2,
53+
markerLength=1,
54+
dictionary=self.dictionary)
5555

5656
layout = QtWidgets.QHBoxLayout()
5757

0 commit comments

Comments
 (0)