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

A math problem about proability fusion in sensor fusion module #12893

Open
LC041336 opened this issue Nov 1, 2020 · 0 comments
Open

A math problem about proability fusion in sensor fusion module #12893

LC041336 opened this issue Nov 1, 2020 · 0 comments
Assignees
Labels
Apollo 6.0 Module: Perception Indicates perception related issues

Comments

@LC041336
Copy link

LC041336 commented Nov 1, 2020

What is the math method or principle for "welsh_var_loss"??? If somebody knows it, please give me a reference link. Thanks a lot!!!
'''
double WelshVarLossFun(double dist, double th, double scale)
{
double p = 1e-6;
if (dist < th)
{
p = 1 - 1e-6;
}
else
{
dist -= th;
dist /= scale;
p = std::exp(-dist * dist);
}
return p;
}

'''

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Apollo 6.0 Module: Perception Indicates perception related issues
Projects
None yet
Development

No branches or pull requests

6 participants