Linwei-Chen / LIS

IJCV2023 Instance Segmentation in the Dark
MIT License
78 stars 7 forks source link

json文件 #17

Open wdy0311 opened 3 months ago

wdy0311 commented 3 months ago

你好,请问json文件目前都是奇数命名的图片分割结果,请问偶数命名的如(2.png)这些图片的分割结果出来了吗?谢谢!

Linwei-Chen commented 3 months ago

感谢关注,有的,尾缀+1.json的文件就是您需要的文件 LIS dataset should follow folder structure bellow:

├── LIS │ ├── RGB-normal │ │ ├── JPEGImages │ │ │ ├──1.png │ │ │ ├──3.png │ │ │ ├──5.png │ │ │ ├──... │ ├── RGB-dark │ │ ├── JPEGImages │ │ │ ├──2.JPG │ │ │ ├──4.JPG │ │ │ ├──6.JPG │ │ │ ├──... │ ├── RAW-normal │ │ ├── JPEGImages │ │ │ ├──... │ ├── RAW-dark │ │ ├── JPEGImages │ │ │ ├──... │ ├── annotations │ │ ├──lis_coco_JPG_train+1.json # w/ '+1' indicates labels for dark images │ │ ├──lis_coco_JPG_test+1.json │ │ ├──lis_coco_JPG_traintest+1.json
│ │ ├──lis_coco_png_train.json # w/o '+1' indicates labels for normal images │ │ ├──lis_coco_png_test.json │ │ ├──lis_coco_png_traintest.json │ │ ├──lis_coco_png_train+1.json │ │ ├──lis_coco_png_test+1.json │ │ ├──lis_coco_png_traintest+1.json

wdy0311 commented 3 months ago

您好,我刚确认了一下。+1 后缀的 json 文件也都是奇数的图片。您方便看一下 json 文件吗?谢谢

Linwei-Chen commented 3 months ago

我check了一下,是偶数的,例如"file_name": "./JPEGImages/1950.png"

wdy0311 commented 3 months ago

已成功,谢谢!