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,
Thanks for your great work!
I want to know how can i get the image like
I mean the image contains red and green parts.
Look for your kind reply!
Thank you!
The text was updated successfully, but these errors were encountered:
We used a grayscale version of the image for all three channels.
Applied ZSSR and EDSR to the same image.
Then created a grascale map = (ZSSR-GT)^2 - (EDSR-GT)^2 where GT is the Ground Truth image. This means that positive values indicate pixels where ZSSR wins
Normalized this map by it's max
Used some spatial smoothing (maybe gaussian blur)
Then take map * (map>0) and add to the green channel, and map * (map<0) to the red channel. (dont forget to clip to 0..1).
Hi,
Thanks for your great work!
I want to know how can i get the image like
I mean the image contains red and green parts.
Look for your kind reply!
Thank you!
The text was updated successfully, but these errors were encountered: