Gabriel Einsdorf

Results 21 comments of Gabriel Einsdorf

> Here is what I would like your thoughts on, @ctrueden, @gab1one: Why shouldn't DefaultDataHandleService itself cache DataHandles? I believe this is only safe for read only handles used by...

We do need to make sure a handle is only ever used by one process at a time, CacheService does not guarantee this.

I had the same issue, the log messages when starting planify from the CLI, and the todoist login would just show a blank screen. - `(io.github.alainm23.planify:2): Gtk-WARNING **: 09:54:36.620: Locale...

Yes, the tiff writers (tiff and ome.tiff) are about 6.000% slower than eq. formats like ics. Even with small images. One example: - SCIFIO can write the same image (128,128,...

see https://github.com/knime-ip/knip/commit/46b6799b83512270b9752ec555cef5cbdf95528b for the first big improvement. Writing the 160mb file sequentially now takes about 10 seconds instead of the 44 it took before

Further improvements depend on changes in SCIFIO, I will talk with Mark about that.

Thank you for reporting this, it seems to be a bug with our preview rendering.

@stelfrich @imagejan This issue is related to the Image Cropper not renormalizing the axis minima. I created a metanode [ZeroMin metanode.zip](https://github.com/knime-ip/knip/files/1708255/ZeroMin.metanode.zip) which performs the needed ZeroMin operation. Just add this...

You could always run `Views.zeroMin(..)` on your input images? Something like: ```java RAI myImp = Views.zeroMin(imp); ```

In most cases you will actually get an ImgPlus converted to a ImagePlus, at least in KNIME we always use IJ2 / Imglib2 data structures internally. We do not run...