Hi alfonsoros88!
I'm really thanks to your open source project.
In your project, I had a question. That's formula for calculating distance.
You used this function
public static double pixels_to_meters(double x) {
double a = 286.2713350528750;
double b = -75.44461973326037;
double c = 36.00759908705765;
double d = -8.988638172976206;
return a * Math.exp(b * x) + c * Math.exp(d * x);
}
Can you describe about variable(a,b,c,d) and the formula(return)?
Thanks a lot!
Hi alfonsoros88!
I'm really thanks to your open source project.
In your project, I had a question. That's formula for calculating distance.
You used this function
public static double pixels_to_meters(double x) {
double a = 286.2713350528750;
double b = -75.44461973326037;
double c = 36.00759908705765;
double d = -8.988638172976206;
return a * Math.exp(b * x) + c * Math.exp(d * x);
}
Can you describe about variable(a,b,c,d) and the formula(return)?
Thanks a lot!