2017-12-04 - Fiji + KNIP hackathon
Revision as of 12:50, 18 December 2017 by Haesleinhuepf (talk | contribs) (Added things Robert and Loic did during the hackathon)
From Monday, December 4, 2017 through Friday, December 15, 2017, the Max Planck Institute of Molecular Cell Biology and Genetics hosts ~50 developers at the Center for Systems Biology in Dresden, Germany for a hackathon to develop ImageJ2 and Fiji core infrastructure and plugins.
https://gitter.im/fiji/hackathon_dd_2017
Contents
- 1 Voluntary hackathon calendar
- 2 Hackathon google doc
- 3 Hackathon on Twitter (#hackdd17)
- 4 Technical Discussions
- 5 Hackathon Progress
- 5.1 ilastik - (Dominik Kutra, Carsten Haubold)
- 5.2 SciView - (Kyle Harrington, Ulrik Günther, Curtis Rueden)
- 5.3 ImageJ server - (Curtis Rueden, Petr Bainar)
- 5.4 SciJava - (Curtis Rueden)
- 5.5 ImageJ Ops - (Curtis Rueden)
- 5.6 ImageJ Legacy - (Curtis Rueden)
- 5.7 ImageJ Launcher - (Curtis Rueden)
- 5.8 Bio-Formats - (Curtis Rueden)
- 5.9 ClearControl / ClearVolume / ClearCL (Robert Haase, Loic Royer)
Voluntary hackathon calendar
Hackathon google doc
https://docs.google.com/document/d/1h4uCt4PAEdeGQQwwVZC73o_Anq6-AI2KZiSzxY8kWng/edit
Hackathon on Twitter (#hackdd17)
https://twitter.com/hashtag/hackdd17?vertical=default&src=hash
Technical Discussions
N5, not HDF5
For more info on N5, check out the github repository here.
- feels like HDF5, but stores chunks(blocks) in separate files in the file system.
- is a Java library, but Constantin Pape already wrote a C++/python version of it: z5 (also matches "zarr" library), https://github.com/constantinpape/z5
- attributes are stored in an additional JSON file
- Discussion: should we define standard now as to how data should be stored in there to prevent an emergence of a zoo of different flavors as there is for HDF5?
- how to do time series where each timestep / angle could have different image size
- if we want a general "N5 viewer" for images, we'd have to add calibration data
- put this information around the N5 dataset, because it behaves more like a dataset within an H5 file.
- Perhaps make it versioned? Because a duck is not always a duck...
- why another file format?
- parallel writes (awesome for clusters with shared filesystem)
- there is a special type for label blocks
- blocks can have a halo
- the block grid does not need to be filled dense, some blocks could be missing
- couldn't this just be another flavor of HDF5?
- are parallel writes to the same block prevented by some kind of locks?
- the HDF5 team should be included in the discussions to learn from their mistakes - there is lots of information on parallel writing of HDF5 files out there
- Try to write a N5 dataset into a FUSE filesystem/file??? Could this be a work-around for the many-small-files issue?
BigDataViewer
- There is a fork of BigDataViewer for JavaFx. [1]
- BigDataViewer will be splitted into a UI independent part, and the Swing UI. This will make it possible to merge the JavaFx and Swing Version of BigDataViewer .
We discussed opportunities to improvement for the Bdv design:
- Slim the core of bdv, make it less smart and more predictable.
- Bdv handle for different UI toolkits,
- Use property pattern for settings like active source ...
- Actively add/remove views
- Update views (force cache-dropping) - for BDV add/remove views
- Access to color settings, overlap rendering, …
- Allow Grouping of views (externally is ok)
- Consider Accumulator / Composite that works with type other than ARGBType
- Make it easy to disable or replace Dialogs
- Make it easy to remove an overlay
- BdvVistools show function for converters/volatile
Matrix and Vector libraries
- Discussion notes: https://docs.google.com/document/d/12a_9AhFMJywm7y-SfZHuWB5cXwEkpCGt03Sxq8JVfMI/edit
- Compared different matrix and vector libaries: https://github.com/imglib/imglib2-matrix-shootout
- Conclusion:
- use ojAlgo for N-D matrix operations
- vector3 and vector4 is a complicated conclusion. probably use mastodon and JOML
ImageJ/Fiji parallelization
- initial focus on embarassingly parallel data
- specific parallel (cluster) implementation will be abstracted
- from the system architecture point of view, the design can be inspired by the search bar feature implementation
- started use case definition
Hackathon Progress
ilastik - (Dominik Kutra, Carsten Haubold)
- developed an ImageJ2 plugin that allows to stream raw data and predictions from the work in progress ilastik processing backend: https://github.com/ilastik/org.ilastik.bdvsource
- discussed with Philipp Hanslovsky about the benefits of using the N5 format for communication
- the label block format together with the fact that datasets can be stored sparse could be a great foundation for label storage / communication
- played around with Constantin Pape's C++/Python N5 reader as available format on the ilastik server
- noticed that the only thing needed to serve a N5 dataset on the web is to serve the directory contents. Philipp wrote a N5 REST reader for BigCAT to talk to the ilastik server that way
- worked on some caching problems in the ilastik server
- discussed possible interfaces between Matthias Arzt's LabKit and ilastik-backend for interactive segmentation in ImageJ/BigDataViewer with an ilastik classifier backend
SciView - (Kyle Harrington, Ulrik Günther, Curtis Rueden)
- set up automatic deployment of Fiji update site that works on all operating sustems
- imglib2 images as textures on 3D objects
- imagej2-style logging
- public availability of SciView plugin
ImageJ server - (Curtis Rueden, Petr Bainar)
- discussed its design with respect to the ImageJ/Fiji architecture as well as its future use cases
- identified the most imminent issues, raised them on GitHub and brainstormed possible solutions
- worked on a new JavaScript client with enhanced UI, making use of the Angular framework
- demoed the new client to the community
- encouraged members of the community to use annotations specifying whether a SciJava plugin can run headless or not
SciJava - (Curtis Rueden)
- Added a minimum Java build version feature to pom-scijava-base (scijava/pom-scijava-base@54bf6664).
- Implemented
#@script
directive (scijava/scijava-common@d9dce68b, scijava/scijava-common#294). - In response to a question from Klim Kolyvanov, cleaned up the
PrefService
and fixed related parameter persistence bugs (scijava/scijava-common@195878b7). - With Robert Haase and Deborah Schmidt, developed a
SearchService
API for extensible text-based searches (scijava/scijava-search). Initially supports searching SciJava modules (e.g. commands and scripts) and ImageJ web resources. Also offers a code snippet executer, as suggested by Kyle Harrington. - In response to a question from Richard Domander, fixed a bug with
DynamicCommand
validater method callbacks (scijava/scijava-common@13e4ec32). - In response to a question from Richard Domander, added a short-term workaround for the fact that you cannot execute
DynamicCommand
viaCommandService#run
(scijava/scijava-common@753dd703).
ImageJ Ops - (Curtis Rueden)
- Merged Gabriel Selzer's improvements to the transform namespace for intervals (imagej/imagej-ops#515).
- Merged Vladimír Ulman's Gabor and bigauss filters (imagej/imagej-ops#485).
- Merged Gabriel Selzer's Frangi vesselness filter (imagej/imagej-ops#525).
- Merged Brian Northan's bug-fix to the IFFT op (imagej/imagej-ops#529).
- Merged Brian Northan's diffraction-based kernel, useful for generating PSFs for deconvolution (imagej/imagej-ops#530).
- Merged Kyle Harrington's morphological thinning ops, ported from KNIME (imagej/imagej-ops#317).
- Merged Eike Heinz's Sobel and Hessian filters (imagej/imagej-ops#349).
- With Gabriel Einsdorf, worked on fusion ops for combining RAIs that overlap (imagej/imagej-ops#230). PR was closed without merge, but a demo of RAI fusion was pushed to my sandbox (ctrueden/sandbox@b5518112).
- In response to a question from Klim Kolyvanov, pushed an example of using the slice op to iterate an op over planes (ctrueden/sandbox@753dd703).
ImageJ Legacy - (Curtis Rueden)
- In response to a question from Klim Kolyvanov, fixed bug with parameter visibility (imagej/imagej-legacy@e89ce40e).
ImageJ Launcher - (Curtis Rueden)
- Merged Stefan Helfrich's CI configuration for AppVeyor and Travis CI (imagej/imagej-launcher#49).
- Made minimal changes required for the the Launcher to work with Java 9 (imagej/imagej-launcher@e501d695).
Bio-Formats - (Curtis Rueden)
- In response to a question from Christian Tischer and David Hörl, filed a PR to enable the high-level Bio-Formats API to accept file patterns directly (openmicroscopy/bioformats#3019).
- Fixed new and existing Java-8 installations of Fiji to work properly with Bio-Formats again (1). This entailed creating a script that instructs users of the old Java 6 version of Fiji to please enable the Fiji-Legacy update site, and instructs users of the new Java 8 version of Fiji to please enable the Java-8 update site.
ClearControl / ClearVolume / ClearCL (Robert Haase, Loic Royer)
- Made Image Quality / Focus measurements from Royer et Al. Nat. Biotechnol. (2016) available as Fiji plugin on a preliminarily update site
- Added support for image quality measurements in regions, tissue depth (rings) or tiled over the whole image
- Fixed bugs regarding discovery of OpenCL files distributed using ClearCLs mechanism
- Adapted ClearControl software to run on another microscope
- Revived code for controlling filter wheels and deformable mirrors
- Merged changes from Max to ClearControl-lightsheet preparing his time stepping procedures