princeton-vl / RAFT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hhh

keacifer opened this issue · comments

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?