Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyricccco authored Nov 6, 2024
1 parent a39e125 commit 54e70ba
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion archs/DualDn_arch.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# -----------------------------------------------------------------------------------
# [ECCV2024] DualDn: Dual-domain Denoising via Differentiable ISP
# [Homepage] https://openimaginglab.github.io/DualDn/
# [Author] Originally Written by Ruikang Li, from MMLab, CUHK.
# [License] Absolutely open-source and free to use, please cite our paper if possible. :)
# -----------------------------------------------------------------------------------

import torch
import torch.nn as nn
from archs.backbone.restormer import Restormer
Expand Down Expand Up @@ -269,4 +276,4 @@ def forward(self, raw, colormask, wb_matrix, rgb_xyz_matrix, ref='D65', gamma_ty
srgb = self.backbone2(in_srgb)
out_srgb = self.conv_out2(srgb) + skip_srgb

return out_raw, out_srgb
return out_raw, out_srgb

0 comments on commit 54e70ba

Please sign in to comment.