You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
keacifer
changed the title
This project code may have a low-level error, I don't think it can run!
hhh
Aug 26, 2022
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?
The text was updated successfully, but these errors were encountered: