edu.mines.jtk.dsp
Interface Tensors3
- All Known Implementing Classes:
- EigenTensors3
public interface Tensors3
An interface for 3D tensors used in anisotropic 3D image processing.
Each tensor is a symmetric positive-semidefinite 3-by-3 matrix:
|a11 a12 a13|
A = |a12 a22 a23|
|a13 a23 a33|
- Version:
- 2008.07.28
- Author:
- Dave Hale, Colorado School of Mines
|
Method Summary |
void |
getTensor(int i1,
int i2,
int i3,
float[] a)
Gets tensor elements for specified indices. |
getTensor
void getTensor(int i1,
int i2,
int i3,
float[] a)
- Gets tensor elements for specified indices.
- Parameters:
i1 - index for 1st dimension.i2 - index for 2nd dimension.i3 - index for 3rd dimension.a - array {a11,a12,a13,a22,a23,a33} of tensor elements.