Open Lwy-1998 opened 1 year ago
我是用1_generate_image_info.py这个代码里生成的panoptic_gt_id文件夹下的文件,需要修改一下路径
@a541203686 Hi,你好,我目前遇到题主这个问题,虽然明白是路径上的问题,但还不太清楚该怎么改,可以给一些详细修改信息吗,感谢
请问题主解决了吗
Go to the following file:
VO_Module/droid_slam/data_readers/vkitti2.py
At lines 91-92, you need to change the path for panoptic_gt_id
folder.
The exact replacement is:
segments = sorted( glob.glob(osp.join("datasets/Virtual_KITTI2/ALL_15-deg-left", 'panoptic_gt_id/*.png')))
Hope this helps
Go to the following file:
VO_Module/droid_slam/data_readers/vkitti2.py
At lines 91-92, you need to change the path forpanoptic_gt_id
folder. The exact replacement is:segments = sorted( glob.glob(osp.join("datasets/Virtual_KITTI2/ALL_15-deg-left", 'panoptic_gt_id/*.png')))
Hope this helps
好像不work,我替换掉了还是一样的错误
经过实验,因为我kitti数据没下载全。 下载全后,额外加上
segments = sorted( glob.glob(osp.join("datasets/Virtual_KITTI2/ALL_15-deg-left", 'panoptic_gt_id/*.png')))
就work了。 起码他跑起来了……
然后又再其他地方报了out of range错误hhh
I try to run generate_dynamic_masks.py and it looks like the segment fileis missing
seg = self.__class__.segment_read(segments_list[i])
我装了好久的环境,环境已经能在droid-slam上正常运行,也配置了panopticapi-0.1这个包。 我debug了一下,这里越界好像是因为没有加载到segment的数据,但是我并没有找这个数据在哪里。。。 请问一下这里segment应该在哪里生成呢?