cszn / BSRGAN

Designing a Practical Degradation Model for Deep Blind Image Super-Resolution (ICCV, 2021) (PyTorch) - We released the training code!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How can I get ISP model for your degrade model?

yichuangzhang opened this issue · comments

How can I get ISP model for your degrade model?
commented

@yichuangzhang I have the same problem.Please,have you found the corresponding code?

Read the paper. They cite a model in the paper.
https://github.com/timothybrooks/unprocessing - that's the repository for the reverse ISP model. You'll have to train in on your own.

I don't think it is a trainable ISP model what you are looking for. I assume they just organized a series of image processing/unprocessing steps found in unprocessing into PyTorch classes (instead of Tensorflow). These classes inherit from nn.Module in PyTorch and are grouped within a isp_model class, allowing/forcing them to use the forward() method inside the degradation workflow.

So i guess this just enables PyTorch's functionalities for image processing.