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
Sphere(2)
I've copied the example out to a test, I'm not entirely sure if I'm doing it correctly though.
IncrementalInference.jl/test/testSphereMani.jl
Lines 1 to 46 in 6f1d949
The same example previously errored as in: #1284
Edit: updated to the latest commit
The text was updated successfully, but these errors were encountered:
I think this part will definitely cause problems:
Base.convert(::Type{<:Tuple}, M::Sphere{2, ℝ}) = (:Euclid, :Euclid, :Euclid) Base.convert(::Type{<:Tuple}, ::IIF.InstanceType{Sphere{2, ℝ}}) = (:Euclid, :Euclid, :Euclid)
Also not sure if this mean is working properly, since the manifold information is lost, and these are definitely not a standard Euclidean mean:
@test all(isapprox.(mean(vnd.val), [1,0,0], atol=0.1))
This mean is something much closer to: https://manoptjl.org/stable/tutorials/MeanAndMedian.html#The-given-Dataset-1
Sorry, something went wrong.
I fixed the 3 x Euclid in the next commit of that branch. It should just be 2x. I’ll update the first post
Also not sure if this mean is working properly, since the manifold information is lost, and these are definitely not a standard Euclidean mean
The covariance is very small, so it will be very close to 1.0 and the tolerance is 0.1.
I just remembered you said AMP is still based on the identity element. So Sphere(2) won't work for now.
JuliaRobotics/ApproxManifoldProducts.jl#94 fixes the dimension error.
No branches or pull requests
I've copied the example out to a test, I'm not entirely sure if I'm doing it correctly though.
IncrementalInference.jl/test/testSphereMani.jl
Lines 1 to 46 in 6f1d949
The same example previously errored as in: #1284
Edit: updated to the latest commit
The text was updated successfully, but these errors were encountered: