Uses of Interface
org.anchoranalysis.image.voxel.factory.VoxelsFactoryTypeBound
| Package | Description |
|---|---|
| org.anchoranalysis.image.voxel |
Data-structures to store and manipulate image raster-data or voxels.
|
| org.anchoranalysis.image.voxel.convert |
Converting
Voxels to different data-types. |
| org.anchoranalysis.image.voxel.factory |
Creates new instances of
Voxels and VoxelsUntyped with specific data-types. |
-
Uses of VoxelsFactoryTypeBound in org.anchoranalysis.image.voxel
Methods in org.anchoranalysis.image.voxel that return VoxelsFactoryTypeBound Modifier and Type Method Description VoxelsFactoryTypeBound<T>Voxels. factory()A factory for creating voxels with a particular buffer-type.Methods in org.anchoranalysis.image.voxel with parameters of type VoxelsFactoryTypeBound Modifier and Type Method Description BoundedVoxels<T>BoundedVoxels. growBuffer(Point3i growthNegative, Point3i growthPositive, Optional<Extent> clipRegion, VoxelsFactoryTypeBound<T> factory)Grows the voxel buffer in the positive and negative directions by a certain amount.BoundedVoxels<T>BoundedVoxels. growToZ(int sizeZ, VoxelsFactoryTypeBound<T> factory)Grows a single z-slicedBoundedVoxelsby duplicating the slice across the z-dimensionsizeZnumber of times.BoundedVoxels<T>BoundedVoxels. regionZ(int zMin, int zMax, VoxelsFactoryTypeBound<T> factory)Creates an box with a subrange of the slices.Constructors in org.anchoranalysis.image.voxel with parameters of type VoxelsFactoryTypeBound Constructor Description Voxels(SliceBufferIndex<T> slices, VoxelsFactoryTypeBound<T> factory, VoxelsArithmetic arithmetic) -
Uses of VoxelsFactoryTypeBound in org.anchoranalysis.image.voxel.convert
Methods in org.anchoranalysis.image.voxel.convert with parameters of type VoxelsFactoryTypeBound Modifier and Type Method Description <S, T> Voxels<S>VoxelsConverterMulti. convert(VoxelsUntyped voxels, VoxelsFactoryTypeBound<T> outputVoxelsFactory)Converts aVoxelsto another type.Voxels<T>VoxelsConverter. convertFrom(VoxelsUntyped from, VoxelsFactoryTypeBound<T> factory)Creates a new voxels of typeTand copies the voxels fromfrom. -
Uses of VoxelsFactoryTypeBound in org.anchoranalysis.image.voxel.factory
Methods in org.anchoranalysis.image.voxel.factory that return VoxelsFactoryTypeBound Modifier and Type Method Description static VoxelsFactoryTypeBound<FloatBuffer>VoxelsFactory. getFloat()A factory that creates voxels of type float.static VoxelsFactoryTypeBound<UnsignedByteBuffer>VoxelsFactory. getUnsignedByte()A factory that creates voxels of type unsigned byte.static VoxelsFactoryTypeBound<UnsignedIntBuffer>VoxelsFactory. getUnsignedInt()A factory that creates voxels of type unsigned int.static VoxelsFactoryTypeBound<UnsignedShortBuffer>VoxelsFactory. getUnsignedShort()A factory that creates voxels of type unsigned short.