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
Thanks for sharing this amazing work. It helps me a lot. But I am little confused why estimate the value of k1 by (u2 - d2) / (d2 * d)
(u2 - d2) / (d2 * d)
def estimateKappa(points): def estimateKappaP(point): u2 = (point.projectedSensor[0] * point.projectedSensor[0]) + ( point.projectedSensor[1] * point.projectedSensor[1]) d2 = (point.sensor[0] * point.sensor[0]) + (point.sensor[1] * point.sensor[1]) d = math.sqrt(d2) return (u2 - d2) / (d2 * d) return np.mean(list(map(estimateKappaP, points)))
from my side, as we know that: $x_u=x_d(1+k_1r^2)$ $y_u=y_d(1+k_1r^2)$
where $r^2=x_d^2+y_d^2$. But it does not accord with this result (u2 - d2) / (d2 * d).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for sharing this amazing work. It helps me a lot. But I am little confused why estimate the value of k1 by
(u2 - d2) / (d2 * d)
from my side, as we know that:
$x_u=x_d(1+k_1r^2)$
$y_u=y_d(1+k_1r^2)$
where$r^2=x_d^2+y_d^2$ . But it does not accord with this result
(u2 - d2) / (d2 * d)
.The text was updated successfully, but these errors were encountered: