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

Confidence parameter #274

Open
Clayes97 opened this issue Sep 18, 2023 · 5 comments
Open

Confidence parameter #274

Clayes97 opened this issue Sep 18, 2023 · 5 comments

Comments

@Clayes97
Copy link

Hello, I am not understanding what the confidence parameter represents.

Should It be something related on how much I want to fulfill the constraint related to the screeming? Is therefore what is called alpha in the papers?

Thanks a lot for your answer

@mkazhdan
Copy link
Owner

Not quite. The alpha parameter for screening is defined by --pointWeight.

In addition, it is possible that you have more confidence in some samples than others. (For example, if a point is facing the camera you are likely to be more confident than in a point viewed at a grazing angle).
To support this, the code allows you to encode your confidence in the magnitude of the normal.
The code then computes the magnitude of the normal raises it to the power of --confidence, and further scales the screening weight at that sample by the exponentiated normal magnitude. (By default --confidence has value 0 so that the local weight is 1 for all samples, but you could set it to a positive value if you have encoded confidence in the magnitude of a sample's normal.)

@Clayes97
Copy link
Author

So, if I got it: There are some points p of my point cloud for which I'm suspicious about their position (due to the sensor). Therefore, I weight their contribution in the screening constraint as w (p) = ||n_p||^{(confidence)} in order to say that for those points I dont want a perfect interpolation?

@mkazhdan
Copy link
Owner

Yes. Assuming that when you generated the point cloud you made the magnitudes of the normals of those points smaller.

@Clayes97
Copy link
Author

Amazing! But just a last question: how do I select those points? How does the code understand which points suffer the confidence?

@mkazhdan
Copy link
Owner

mkazhdan commented Sep 18, 2023 via email

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

2 participants