This repository contains
Sneak peak at the GUI in Fiji/ImagJ2:
The TableCellViewer plugin in KNIME:
Since ClearVolume can, to date, only show images stored in native byte
arrays we need to translate imglib2 image container to native byte type images. While this is ok for 8bit images, 16bit images are represented as arrays of type short
in imglib.
Here you find two things that enable you to display every RealType
image container coming from imglib2 into ClearVolume:
ClearVolumeUnsignedShortType
-- a alternative 16 bit short
type image type implementation that uses a native byte
array to store voxel intensities. An image that is loaded into any imglib2 container using a image factory with this new type can directly be shown in ClearVolume using static methods in class ClearVolume
.RealClearVolumeUnsignedShortConverter
. Feel free to use this converter just as any other imglib2 converter, but we do also provide static convenience methods in class ClearVolume
.