public interface VoxelwiseStatisticalImage
Modifier and Type | Method and Description |
---|---|
void |
addValue(int i,
int j,
int k,
double v)
Add a value to the voxel (i,j,k).
|
void |
addValue(int i,
int j,
int k,
double v,
double weight)
Add a value to the voxel (i,j,k), with an associated weight.
|
void |
addValue(Point3D p,
double v)
Add a value to the voxel containing the point.
|
void |
addValue(Point3D p,
double v,
double weight)
Add a value to the voxel containing the point, with an associated weight.
|
double[][][] |
getVoxelStatistic(java.lang.String stat)
Computes a 3D image, where each voxel intensity is some statistic of the values in the voxel.
|
void addValue(int i, int j, int k, double v)
void addValue(Point3D p, double v)
void addValue(int i, int j, int k, double v, double weight)
void addValue(Point3D p, double v, double weight)
double[][][] getVoxelStatistic(java.lang.String stat)
stat
- a statistic supported by the image.