We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi
As I understand, eq. 6 in arxiv paper should correspond to line:
CSPN/cspn_pytorch/models/cspn.py
Line 81 in b3e487b
if sparse_depth is not None: result_depth = ( 1 - sparse_mask ) * result_depth + sparse_mask * raw_depth_input
should be
if sparse_depth is not None: result_depth = ( 1 - sparse_mask ) * result_depth + sparse_mask * sparse_depth
such that you keep the depth at the points where you have depth?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
As I understand, eq. 6 in arxiv paper should correspond to line:
CSPN/cspn_pytorch/models/cspn.py
Line 81 in b3e487b
However, raw_depth_input = blur_depth which is the predicted depth by the network. I wondering if
should be
such that you keep the depth at the points where you have depth?
The text was updated successfully, but these errors were encountered: