53 |
# VoxelAddress<V>(i, j, ...) -- compute the address of the voxel data indexed by i, j, ... |
# VoxelAddress<V>(i, j, ...) -- compute the address of the voxel data indexed by i, j, ... |
54 |
VoxelAddress : ImageInfo.info : * : compute the address of a voxel |
VoxelAddress : ImageInfo.info : * : compute the address of a voxel |
55 |
LoadVoxels : RawTypes.ty * int : 1 : load a vector of voxel values from an address |
LoadVoxels : RawTypes.ty * int : 1 : load a vector of voxel values from an address |
56 |
# Transform<V>(u) -- transforms the world-space vector u into the image-space specified by V. |
# PosToImgSpace<V>(u) -- transforms the world-space position u into the image-space specified by V. |
57 |
Transform : ImageInfo.info : 1 : transform a position to image-space |
PosToImgSpace : ImageInfo.info : 1 : transform a world-space position to image-space |
58 |
|
# GradToWorldSpace<V>(u) -- transforms the image-space gradient vector u to world space |
59 |
|
GradToWorldSpace : ImageInfo.info : 1 : transform an image-space gradient to world-space |
60 |
# EvalKernel<i,h,k>(u) -- computes (D^k h)(u), where i is the size of vector u. |
# EvalKernel<i,h,k>(u) -- computes (D^k h)(u), where i is the size of vector u. |
61 |
EvalKernel : int * Kernel.kernel * int : 1 : apply a kernel function to a scalar or vector of arguments |
EvalKernel : int * Kernel.kernel * int : 1 : apply a kernel function to a scalar or vector of arguments |
62 |
LoadImage : ImageInfo.info : 0 : image-file loading |
LoadImage : ImageInfo.info : 0 : image-file loading |