in core.raft.py line124
the code is
corr = corr_fn(coords1) # index correlation volume
but in line 104-107
if self.args.alternate_corr:
corr_fn = AlternateCorrBlock(fmap1, fmap2, radius=self.args.corr_radius)
else:
corr_fn = CorrBlock(fmap1, fmap2, radius=self.args.corr_radius)
we can see There are two parameters !!!
This is the core Index algorithm of this paper,is that right?
in core.raft.py line124 the code is corr = corr_fn(coords1) # index correlation volume but in line 104-107 if self.args.alternate_corr: corr_fn = AlternateCorrBlock(fmap1, fmap2, radius=self.args.corr_radius) else: corr_fn = CorrBlock(fmap1, fmap2, radius=self.args.corr_radius) we can see There are two parameters !!!
This is the core Index algorithm of this paper,is that right?