Package gov.nih.mipav.model.file
Class DTIParameters
- java.lang.Object
-
- gov.nih.mipav.model.file.DTIParameters
-
- All Implemented Interfaces:
java.io.Serializable
public class DTIParameters extends java.lang.Object implements java.io.Serializable
Object to store parameters in the ModelImage acquired from DWI image file or ImageInfo DTI tab- Version:
- 0.1 September 27, 2011
- Author:
- Beth Tyrie
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private double[][]
bMatrixVals
private double[]
bValues
private double[][]
gradients
private int
numVolumes
-
Constructor Summary
Constructors Constructor Description DTIParameters(int numVolumes)
DTIParameters(DTIParameters params)
Copy constructor, copies the entire input DTIParameters into this DTIParameters object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[][]
getbMatrixVals()
double[]
getbValues()
double[][]
getGradients()
int
getNumVolumes()
void
setbMatrixVals(double[][] bMatrixVals)
void
setbValues(double[] bValues)
void
setGradients(double[][] gradients)
void
setNumVolumes(int numVolumes)
-
-
-
Constructor Detail
-
DTIParameters
public DTIParameters(int numVolumes)
-
DTIParameters
public DTIParameters(DTIParameters params)
Copy constructor, copies the entire input DTIParameters into this DTIParameters object.- Parameters:
params
-
-
-
Method Detail
-
getbValues
public double[] getbValues()
-
setbValues
public void setbValues(double[] bValues)
-
getGradients
public double[][] getGradients()
-
setGradients
public void setGradients(double[][] gradients)
-
getbMatrixVals
public double[][] getbMatrixVals()
-
setbMatrixVals
public void setbMatrixVals(double[][] bMatrixVals)
-
getNumVolumes
public int getNumVolumes()
-
setNumVolumes
public void setNumVolumes(int numVolumes)
-
-