Closed D1vt closed 5 years ago
I would like to see your derivatives calculation if you have them, take some photos and put them here. thanks!
Sure:
and
But you can also see it in my code from here: https://github.com/D1vt/DLT3D/blob/d21d136a45b1815dabcfd0a7ef67b24e3d39af4b/Python/sphere.py#L359
Yue's code: https://github.com/EgalYue/Mobile_Marker_Based_Navigation/blob/e1dd1267d8a623f047bc430da11521d28d82f4cb/python/tracking_errors_theory/covariance_mat_sphericalCoordinate.py#L28
This is the final function to calculate the covariance matrix.
In my code I have create this function instead: https://github.com/D1vt/DLT3D/blob/511fbb2b21b0c0750d0e0e65c6aa9db3abb0d240/Python/sphere.py#L272
For the Jacobian function Yue is using 2 functions:
On the other hand I am creating all the matrices (dP/da , dP/db, dP/dc) using these functions:
Regarding the final results for the same set of worldpoints covmatrix is the result from my code and cov from Yue's, you can see that we almost get the same results.
Example 1.
Example 2.
What changes I made to Yue's code: