Regarding Problem 5_ Task 05 Aruco Marker MAT file #166
Unanswered
AnasAlsharo
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I'm a matlab guy so I was also confused. It's a way of how Python stores the data. See my example: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Dr. Yeum.
When I try to print the mat['aruco_marker'] it gives the following output:
[[[0 0 1 0 0]
[0 0 0 1 1]
[0 1 0 0 1]
[0 1 1 1 1]]
[[1 0 1 0 1]
[1 0 0 1 0]
[1 1 0 0 0]
[1 1 1 0 1]]
[[1 0 0 1 1]
[0 0 1 0 1]
[0 1 0 0 0]
[1 0 0 1 0]]
[[1 1 0 1 1]
[0 1 1 1 1]
[1 0 1 1 0]
[0 1 0 0 1]]]
Which is a 4- (4x5) binary matrices. I would expect having 5 - (4x4) matrices as we have five distinct markers each is 4x4.
Am I getting anything wrong here?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions