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.SerializableObject 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[][]bMatrixValsprivate double[]bValuesprivate double[][]gradientsprivate intnumVolumes
-
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()intgetNumVolumes()voidsetbMatrixVals(double[][] bMatrixVals)voidsetbValues(double[] bValues)voidsetGradients(double[][] gradients)voidsetNumVolumes(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)
-
-