YapengTian / TDAN-VSR-CVPR-2020

TDAN: Temporally-Deformable Alignment Network for Video Super-Resolution, CVPR 2020
MIT License
400 stars 62 forks source link

dcn输入 #71

Closed xiximelon closed 3 months ago

xiximelon commented 1 year ago

以下调用DCN部分的代码,fea = (self.dconv_1(fea, offset1))中self.dconv_1输入的是特征和偏移量,但是fea特征是连接了support帧和参考帧的特征,是否应该只输入supp的特征进行align? fea = torch.cat([ref, supp], dim=1) fea =self.cr(fea) offset1 = self.off2d_1(fea)\ fea = (self.dconv_1(fea, offset1))