Skip to content

Commit 32fb4b9

Browse files
authored
Merge pull request #1432 from okalachev:patch-1
aruco: fix dictionaries format description
2 parents bccbec7 + 0ee3192 commit 32fb4b9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/aruco/src/predefined_dictionaries.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ namespace {
4545
* On each rotation, the marker is divided in bytes assuming a row-major order
4646
* This format allows a faster marker identification.
4747
* For a dictionary composed by M markers of NxN bits, the structure dimensions should be:
48-
* const char name[nMarkers][nBytes][4rotations], or more specifically:
49-
* const char name[M][ceil(NxN/8)][4]
50-
* The element [i][j][k] represents the j-th byte of the i-th marker in the dictionary
51-
* in its k-th rotation.
48+
* const char name[nMarkers][4rotations][nBytes], or more specifically:
49+
* const char name[M][4][ceil(NxN/8)]
50+
* The element [i][j][k] represents the k-th byte of the i-th marker in the dictionary
51+
* in its j-th rotation.
5252
* Each rotation implies a 90 degree rotation of the marker in anticlockwise direction.
5353
*/
5454

0 commit comments

Comments
 (0)