Previous topic

medpy.features.intensity.centerdistance_xdminus1

Next topic

medpy.features.intensity.shifted_mean_gauss

This Page

medpy.features.intensity.indices

medpy.features.intensity.indices(image, voxelspacing=None, mask=slice(None, None, None))[source]

Takes an image and returns the voxels ndim-indices as voxel-wise feature. The voxel spacing is taken into account, i.e. the indices are not array indices, but millimeter indices.

This is a multi-element feature where each element corresponds to one of the images axes, e.g. x, y, z, …

Parameters:

image : array_like or list/tuple of array_like

A single image or a list/tuple of images (for multi-spectral case).

voxelspacing : sequence of floats

The side-length of each voxel.

mask : array_like

A binary mask for the image.

Returns:

indices : ndarray

Each voxels ndimensional index.

Notes

This feature is independent of the actual image content, but depends solely on its shape. Therefore always a one-dimensional feature is returned, even if a multi-spectral image has been supplied.