0

我一直在尝试在 colab 上运行 openpose 模型,但由于 Colab 无法识别该目录,因此无法这样做。代码截图

我已在此消息中提供了代码截图,任何帮助或指导将不胜感激!

编辑1:对第一个答案的修改

代码:

!cd openpose && ./build/examples/openpose/openpose.bin -image_dir /drive/My\ Drive/research_project/Fall\ Detection/$category/testdata/video$video  --render_pose 0 --disable_blending -keypoint_scale 3 --display 0 -write_json /drive/My\ Drive/research_project/Fall\ Detection/$category/jsondata/video$video

输出:

    Error:
           Folder /drive/My Drive/research_project/Fall Detection/Coffee_room/testdata/video0/ does not exist.
4

2 回答 2

0

我相信您需要删除“..”,因为您已经在 os.chdir('/content') 命令的“/content”文件夹中

如果不是这样,那么在最后一行之前的“/My Drive”之后还有一个缺失的“/research project”

于 2021-02-09T21:30:04.523 回答
0

使用%cd您已经将自己移动到的操作[...]/Coffee_room/testdata,因此当您尝试os.chdir命令时,它会引发错误。至少我是这么认为的,截图不让我复制代码尝试重现相同的情况,所以有点难

尝试将您的代码以正确的格式放入这样的问题中

print('Hello, this is my code')
于 2021-02-09T21:41:14.130 回答