anipose
anipose copied to clipboard
Can I use anipose in colab?
Good afternoon,
Currently, I run deeplabcut in colab for motion analysis, I try to use anipose in the colab. However, it does not work... Looking for the suggestions.
Thanks in advance! C.
Trying to do the same thing. Get stuck on ImportError: cannot import name 'aruco' from 'cv2' (unknown location
with anipose==0.8.1
and aniposelib==0.3.7
. Have you gotten further?
Now I use my laptop's GPU to run this code...
I haven't used anipose within colab at this time. Probably you would have more luck running aniposelib in colab.
@FredrikLastow The aruco import issue comes from installing opencv-python
instead of opencv-contrib-python
.
Perhaps you could try running something like this?
pip uninstall -y opencv-contrib-python
pip install -y opencv-python