zzr-idam/UVM-Net

is this model can be used to do image deburing ?

Opened this issue · 4 comments

is this model can be used to do image deburing ?

HI,how to test with my custom blurry image?

We provide the training code, first this model should be trained on your customized dataset and then tested.

There is no need to reduce the number of layers in the UNet, my basic module has three SSMs, you can remove the one that is the most computationally intensive (after reshaping); besides, you can conduct a ReLU or Sigmoid on the output of the UNet and do a residual or multiplication operation with the original input image.

output = nn.ReLU()(UNet(x))

output = output * x - output + 1 // AODNet equation

return output