Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (19 loc) · 501 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 501 Bytes

WrapperITKIO.jl

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

Usage::

using WrapperITKIO

Loading Spatial meta data from an image file path:

spatialMeta = WrapperITKIO.loadSpatialMetaData("filepath")

spatialMeta.origin

spatialMeta.spacing

spatialMeta.size

spatialMeta.direction

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

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