Package com.xinapse.multisliceimage
package com.xinapse.multisliceimage
The package
com.xinapse.multisliceimage
is used to represent and handle
multi-dimensional Medical Images in different file formats. The
following pixel data types are fully implemented:
- 1 bit per pixel binary
(
PixelDataType.BINARY
). - 1 unsigned byte per pixel
(
PixelDataType.UBYTE
). - 1 signed byte per pixel
(
PixelDataType.BYTE
). - 1 unsigned short per pixel
(
PixelDataType.USHORT
). - 1 signed short per pixel
(
PixelDataType.SHORT
). - 1 unsigned int per pixel
(
PixelDataType.UINT
). - 1 signed int per pixel
(
PixelDataType.INT
). - 1 signed long per pixel
(
PixelDataType.LONG
). - 1 float per pixel
(
PixelDataType.FLOAT
). - 1 double per pixel
(
PixelDataType.DOUBLE
). - 2 floats per pixel (interlaced) forming complex numbers
(
PixelDataType.COMPLEX
). - 3 unsigned bytes per pixel (non-interlaced) representing red,
green and blue planes
(
PixelDataType.RGB_BY_PLANE
). This is equivalent to theAnalyze RGB
format. - 4 unsigned bytes per pixel (interlaced) representing red,
green, blue and alpha values
(
PixelDataType.COLOURPACKED
). This is equivalent to theUNC COLORPACKED
format.
-
ClassDescriptionClass to add extensions, prefixes and suffices to image file and URL names.Signals that information about an
InfoStorer
has not been found.An interface that classes implement to indicate that they can store arbitrary textual information.An abstract representation of a multi-dimensional image.Enables and disables debugging messages for the MultiSliceImage package.