Gabriel Selzer
Gabriel Selzer
While reviewing imagej/napari-imagej#70, @ctrueden was hoping that pressing Return while focusing on a keyboardable component of a magicgui widget would call the function with the current inputs. Specifically, he noted:...
**Describe the bug** A clear and concise description of what the bug is. Some widgets, such as [`RangeEdit`](https://github.com/gselzer/magicgui/blob/9ec44a37bdd0c246d1bd93eba9b1434f61d1190e/magicgui/widgets/_concrete.py#L549), seem to prefer `value=None` upon creation with no starting value. Other widgets...
@ctrueden noted that `codecov.yml` slipped into the source distribution. This means that the `MANIFEST.in` I wrote with the intent of being declarative is not declarative enough :sweat_smile: We should fix...
Here's a test (below) that fails. I placed it in `OpSearcherTest.java`. This test creates an Op `TooMuchReductionOp`, a `UnaryComputerOp` that takes an image and a `RealType`, and places its output...
The following script, run in Fiji, throws a `ClassCastException`. I couldn't find any existing issue for this. ```jython #@OpService ops from net.imglib2.img.array import ArrayImgs from net.imglib2.type.numeric.real import DoubleType input =...
There are issues with the way I wrote `OpListing`s. Shocker. 💥 imagej/napari-imagej#96 is a manifestation of one flaw of the current implementation: it does not retain any information about `ItemIO.BOTH`...
As reported in [this zulip chat](https://imagesc.zulipchat.com/#narrow/stream/328100-scyjava/topic/napari-imagej.3A.20MutableOutputWidget/near/296423679), we get a cryptic `IllegalArgumentException` when we call `DefaultGaussRAI.compute()` with a `sigmas` whose length does not match the input dimensionality. We should try our...
When you provide an image of a type that can be negative, the Op can attempt to access the string of valid ascii image characters at a negative index, throwing...
This Op provides an `Op` version of the [ImageJ Core Plugin](https://github.com/imagej/imagej-plugins-commands/tree/master/src/main/java/net/imagej/plugins/commands/correlate) created by Barry Dezonia. Below is a demo of the new `Shadows` Op (middle) run on [this image](http://imagej.net/images/abe.tif) (left),...
This PR adds two Ops adapted from the Sharpen and Smooth ImageJ core plugins. This PR is currently a WIP because: 1) There are edge artifacts present in the Ops...