ZSSR
ZSSR copied to clipboard
About the image of paper
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!
If I remember correctly:
- 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).