Wenwen Zhang
Wenwen Zhang
solved?
nice!!!
There are three different versions of Foggy Cityscapes for the 5000 training+validation+testing Cityscapes images, each characterized by a constant attenuation coefficient which determines the fog density and the visibility range....
最后能调到77.2 吗?
Maybe it can be done by replacing ```mask_new = cv2.resize(mask_old, (w, h), cv2.INTER_NEAREST)``` with ```mask_new = cv2.resize(mask_old, (w, h), interpolation=cv2.INTER_NEAREST)```, but I have not found the reason yet.
Code: ``` mask = np.load(label['mask_file']) mask1 = cv2.resize(mask, (600,600), interpolation=cv2.INTER_NEAREST) mask2 = cv2.resize(mask, (600,600), cv2.INTER_NEAREST) ``` Results:   