-
Notifications
You must be signed in to change notification settings - Fork 42
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
Add CentroidTuple3d op #420
base: master
Are you sure you want to change the base?
Conversation
Thanks @rimadoma! Before we merge this, I think we really need to decide how we are going to handle vectors, matrices, etc., as core data structures. I am rather against adding a vecmath dependency to ImageJ Ops core—though it is actually pretty lightweight, it is also GPL code, which is incompatible with the Ops permissive BSD license. See also fiji/fiji#135 Anyway, this op might belong in its own |
Let's finally decide on matrix libraries at this 2017-12 hackathon! Then this PR can finally be resolved. |
Yes, this thing could go with my other linear algebra ops. There is already a dependency on |
This commit also rebased branch
Switch from org.scijava.vecmath to org.joml.joml.
I resurrected this PR by updating it to use JOML, which is now the consensus linear algebra library (?). Suggestions about for the namespace of this op are welcome. Could start |
If I wanted to create the same op method for a collection of |
Add an op which calculates the centroid of a collection of vectors (
? extends org.scijava.vecmath.Tuple3d
)