LiamLian0727 / USIS10K

[ICML 2024] Official repository of the paper: "Diving into Underwater: Segment Anything Model Guided Underwater Salient Instance Segmentation and A Large-scale Dataset"
Apache License 2.0
85 stars 10 forks source link

数据集的问题 #4

Closed Ryanye2000 closed 3 months ago

Ryanye2000 commented 3 months ago

屏幕截图 2024-08-17 105230 我是把我自己的图片加上xml格式的数据集用py脚本转换成了coco格式的,但是运行的时候一直提示图片里的内容,我觉得应该是数据集转换的json格式的问题,想问下作者有没有可以提供的转换脚本啊,或者是格式规范

Ryanye2000 commented 3 months ago

test_annotations.json 这是我生成的json文件,如果有什么是导致这个问题的原因,就麻烦作者帮我看一下了,十分感谢

Ryanye2000 commented 3 months ago

我还使用了代码中提供的voc的脚本,就是把bbox的四个点作为segmentation的那个处理了一遍,但是结果还是一样的no pos rois

LiamLian0727 commented 3 months ago

I guess you might be using the wrong bbox format, bounding box form in COCO-style is [top_left_x,top_left_y,w,h]

Ryanye2000 commented 3 months ago

[multi_class_test_annotations.json](https://github.com/user-attachments/files/16643934/multi_class_t 屏幕截图 2024-08-17 151946 est_annotations.json) zhe'l这里我使用了您在代码中提供的转换脚本也就是pascal_voc.py,其中bbox的四个值如图就是xmin,ymin,w,h了,但是还是一样的错误

Ryanye2000 commented 3 months ago

屏幕截图 2024-08-17 154742 屏幕截图 2024-08-17 154754 上图是我的数据集的一条标注信息,下图是您的数据集的一条标注信息,我发现其中键值的顺序不太一样,我的第一个是segmentation信息。你的是id,这个会是报错的原因吗

Ryanye2000 commented 3 months ago

我解决了,是dataset.py需要复写一下,感谢作者