Skip to content
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

Bug in CSPN update step? #49

Open
FrederikWarburg opened this issue Sep 28, 2021 · 0 comments
Open

Bug in CSPN update step? #49

FrederikWarburg opened this issue Sep 28, 2021 · 0 comments

Comments

@FrederikWarburg
Copy link

Hi

As I understand, eq. 6 in arxiv paper should correspond to line:

result_depth = (1 - sparse_mask) * result_depth + sparse_mask * raw_depth_input

However, raw_depth_input = blur_depth which is the predicted depth by the network. I wondering if

            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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant