-
Notifications
You must be signed in to change notification settings - Fork 0
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
Declare imglib2 functions as ops #56
Comments
Time commitment: 1 week per experimental approach |
We're actually going to quickly try out option 5:
|
What about keeping the javadoc in sync? |
@ctrueden I'm not sure what you mean about keeping the javadoc in sync. I would probably start out by pinning a version of imglib2-algorithm, and we could either copy the javadoc or just leave it out. I'd personally love to javadoc imglib2-algorithm, but I'm very doubtful that doing that would fit within our timeframe. Keep in mind that we'd have to release the SciJava Ops Indexer so that imglib2-algorithm could depend on it, and then file a PR adding the dependency and the javadoc to imglib2-algorithm, and then get imglib2-algorithm released. I think that's a lot harder than keeping things internal. Finally I'll note that I don't think including imglib2-algorithm is necessary for the Paper 1 milestone, but @hinerm did, and I'm not against trying this as far as proving the framework goes. So if you'd prefer to wait on doing this beyond paper 1, we can "do it better" by waiting for the releases like I mention above. |
@hinerm @gselzer I oppose manually maintaining an |
@gselzer @ctrueden learning from ImageJ-Ops I think that relying on code modifications for adoption of ops is a mistake. I am personally uncomfortable not having a proof-of-concept showing dependency-free inclusion of a library in the paper. I am not advocating for a manually curated yaml, but if it came to it I think that would be better than nothing; I think a program to auto-generate a yaml from a library is a perfect use-case to drive and solidify SJOps use. |
@hinerm Could you elaborate? How are you suggesting we tackle this issue for paper 1? |
Just merge the imglib2 algorithm branch seems sufficient for this issue. I didn't know that branch existed yesterday when @gselzer made this comment. I made a separate issue for an |
The branch is out of date now and needs updating to move away from Therapi. Looking at the current state of the branch, resolving #163 first would allow us to improve the annotations in ImgLib2 |
Note that this is very close to done, we're just waiting on the release of the SciJava Ops Indexer, so for now the issue is blocked. |
…provenance-test Clean `ProvenanceTest`
Ensure imglib2-algorithm can declare all its functionality as ops in a dependency-light (or even dependency-free—e.g. XML? Spring? see #55) way.
Of course, the imglib2-algorithm-side work is not technically part of scijava-ops, but we want to be 100% confident the architecture will support this.
We need to decide how to consume imglib2-algorithm from Ops. Possible approaches:
Additional notes:
@OpMethod
and@OpField
and@OpDependency
?@OpMethod
declares functional type—but this could potentially be inferred if we instead have people annotate@Container
and@Mutable
on their method parameters.@Container
+@Mutable
annotation classes… but see next point about op name declaration...@OpMethod
and@OpField
declare fully qualified op name including namespace—maybe no elegant way to get around this.The text was updated successfully, but these errors were encountered: