/ITKIOWrapper.jl

ITKIOWrapper.jl handles the IO functions wrapper in Julia from the Insight Toolkit Library in C++.

Primary LanguageJuliaMIT LicenseMIT

ITKIOWrapper.jl provides wrapper functions in Julia from the InsightToolkit Image Registration functions.

Usage::

using ITKIOWrapper

Loading Spatial meta data from an image file path:

spatialMeta = ITKIOWrapper.loadSpatialMetaData("filepath")

spatialMeta.origin

spatialMeta.spacing

spatialMeta.size

spatialMeta.direction

Loading Voxel data from an image file path and spatial meta data

voxelData = ITKIOWrapper.loadVoxelData("filepath",spatialMeta)
voxelData.dat

end