XiaRho / CMDA

[ICCV23] Official Implementation of CMDA: Cross-Modality Domain Adaptation for Nighttime Semantic Segmentation
27 stars 4 forks source link

[Bug] 提供的数据集文件夹名称似乎与代码不匹配 #2

Closed freopenS closed 8 months ago

freopenS commented 8 months ago

代码中出现了warpwrap的混用,个人推测wrap是本意,因文档中本身引用的是wrap

然而,从这里下载的数据集文件中,文件夹的名字是warp_image,导致无论是在生成Dataset时还是在运行evaluation时都会发生一些匪夷所思的问题。

经过一段时间的排查,我最终确定问题在./create_desc_dataset_txt.py处。这个文件错误地生成了night_dataset_warp.txtnight_test_dataset_warp.txt,从而导致后面一系列表面上的文件查找失败的问题

XiaRho commented 8 months ago

Sorry for mixing up "warp" and "wrap". My intention was to "warp" from the image coordinates to the event coordinates. However, when I wrote the code at the beginning, I mistook "wrap" as "warp", and some parts of the subsequent code didn't get adjusted back, I'll change the relevant code.

freopenS commented 8 months ago

原来如此,感谢你对这个项目的维护