-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Update RAFT Stereo to be more sync with CREStereo implementation #6575
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
YosuaMichael
merged 10 commits into
pytorch:main
from
YosuaMichael:prototype/update-raft
Sep 14, 2022
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ff976a6
Update raft_stereo to sync forward param with CREStereo and have outp…
YosuaMichael af5b09e
Merge branch 'main' into prototype/update-raft
YosuaMichael 75cb8af
Add flow_init param to docstring
YosuaMichael d3972dd
Use output_channels instead of output_channel
YosuaMichael 523a151
Merge branch 'main' into prototype/update-raft
YosuaMichael 3ad4035
Merge branch 'main' into prototype/update-raft
YosuaMichael 36b5ed4
Replace depth with disparity since what we predict actually disparity…
YosuaMichael 9167e22
Merge branch 'prototype/update-raft' of github.com:YosuaMichael/visio…
YosuaMichael 3908125
Merge branch 'main' into prototype/update-raft
YosuaMichael 957c1f3
Merge branch 'main' into prototype/update-raft
YosuaMichael File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only change for which I don't have context, but I understand it's a new feature.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When wanting to perform inference at a resolution significantly larger than that at which the model is trained, you can perform cascaded inference.
Cascaded inference first computes the flow for a downsampled version of the image, and uses that flow as a prior for the full resolution image.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to give more context:
Here is the code for the cascaded inference: https://github.com/pytorch/vision/blob/test-crestereo-training/references/stereo_matching/evaluation.py#L57
And here is reference to original raft implementation on this part: https://github.com/princeton-vl/RAFT-Stereo/blob/main/core/raft_stereo.py#L104