File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ namespace {
45
45
* On each rotation, the marker is divided in bytes assuming a row-major order
46
46
* This format allows a faster marker identification.
47
47
* 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.
52
52
* Each rotation implies a 90 degree rotation of the marker in anticlockwise direction.
53
53
*/
54
54
You can’t perform that action at this time.
0 commit comments