-
Hi all, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @skyshi0, Sorry, do you want to track your animal or just get frame-by-frame inference of pose? Best, Elizabeth |
Beta Was this translation helpful? Give feedback.
-
Hello, I am curious what error message you are getting when you try locations = f["tracks"][:].T ? The In [4]: np.random.rand(4,3,2,1).shape
Out[4]: (4, 3, 2, 1)
In [5]: np.random.rand(4,3,2,1).T.shape
Out[5]: (1, 2, 3, 4) . By the way, if you are missing pose data, this is likely due to accidentally having a track set on a pose somewhere, so it is best to Tracks > Delete Multiple > All for single animal projects before exporting to an analysis file. Thanks, |
Beta Was this translation helpful? Give feedback.
Hello,
I am curious what error message you are getting when you try
?
The
"tracks"
key just has a big numpy stored of shape# frames
by# nodes
by2
by# tracks
. So if you have just a single animal, we expect the numpy to have shape 1 at the end - which is still able to be transposed per the example below:.
By the way, if you are missing pose data, this is likely due to accidentally having a track set on a pose somewhere, so it is best to Tracks > Delete Multiple > All for single animal projects before exporting to an analysis file.
Thanks,
…