You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
First of all, thank you for this great work!
I have downloaded both versions of GoPro dataset: GOPRO_Large and GOPRO_Large_all. I see following inconsistencies:
When I load the middle sharp image from GOPRO_Large_all and compare it with the correspond sharp image provided in GOPRO_Large, I see that they are different, although their difference is less than 1 at gray-level. For instance, I expected that GOPRO_Large/train/GOPR0372_07_00/sharp/000047.png be equal to GOPRO_Large_all/train/GOPR0372_07_00/000326.png (the middle frame in the sequence from 000323.png to 00329.png), but it was not the case.
When I follow the procedure mentioned in Provide the blurring generation code? #13 and generate a blurry frame from GOPRO_Large_all, the result is close but does not exactly match the corresponding image in blur_gamma. The steps I take are as follows:
Open all frames in the sequence using PIL.Image
Convert them to numpy arrays and then normalize to range (0, 1)
Decode gamma (pow(img, 2.2))
Average all frames and re-apply gamma (pow(img, 1/2.2))
Clip and quantize to 8-bits.
I was wondering whether you took same steps to generate blurry images (I suspect that you have used ffmpeg to obtain blurry frames of the video). Also, I would appreciate it if you elaborate on the discrepancy between the sharp frames of two versions.
Hi,
First of all, thank you for this great work!
I have downloaded both versions of GoPro dataset: GOPRO_Large and GOPRO_Large_all. I see following inconsistencies:
GOPRO_Large_alland compare it with the correspond sharp image provided inGOPRO_Large, I see that they are different, although their difference is less than 1 at gray-level. For instance, I expected thatGOPRO_Large/train/GOPR0372_07_00/sharp/000047.pngbe equal toGOPRO_Large_all/train/GOPR0372_07_00/000326.png(the middle frame in the sequence from 000323.png to 00329.png), but it was not the case.GOPRO_Large_all, the result is close but does not exactly match the corresponding image inblur_gamma. The steps I take are as follows:pow(img, 2.2))pow(img, 1/2.2))I was wondering whether you took same steps to generate blurry images (I suspect that you have used ffmpeg to obtain blurry frames of the video). Also, I would appreciate it if you elaborate on the discrepancy between the sharp frames of two versions.