CustusX
16.5.0-rc9
An IGT application
|
Data class for Transfer Function info, either 2D or 3D. More...
#include <cxImageTFData.h>
Signals | |
void | transferFunctionsChanged () |
Public Member Functions | |
ImageTFData () | |
virtual | ~ImageTFData () |
void | setAlpha (double val) |
range [0..1] More... | |
double | getAlpha () const |
void | setLLR (double val) |
range [scalarMin..scalarMax] More... | |
double | getLLR () const |
void | setWindow (double val) |
range [1..scalarMax-scalarMin] More... | |
double | getWindow () const |
void | setLevel (double val) |
range [scalarMin..scalarMax] More... | |
double | getLevel () const |
IntIntMap | getOpacityMap () |
ColorMap | getColorMap () |
void | resetAlpha (IntIntMap val) |
void | addAlphaPoint (int alphaPosition, int alphaValue) |
Add point to the opacity transfer function. More... | |
void | removeAlphaPoint (int alphaPosition) |
Remove point from the opacity transfer function. More... | |
void | moveAlphaPoint (int oldpos, int newpos, int alphaValue) |
void | resetColor (ColorMap val) |
void | addColorPoint (int colorPosition, QColor colorValue) |
Add point to the color transfer function. More... | |
void | removeColorPoint (int colorPosition) |
Remove point from the color transfer function. More... | |
void | moveColorPoint (int oldpos, int newpos, QColor colorValue) |
virtual void | addXml (QDomNode dataNode) |
adds xml information about the transferfunction and its variabels More... | |
virtual void | parseXml (QDomNode dataNode) |
Use a XML node to load data. More... | |
void | unsignedCT (bool onLoad) |
void | shift (int val) |
shift the transfter function index values by the input amount. Used for signed/unsigned conversion. More... | |
vtkColorTransferFunctionPtr | generateColorTF () const |
vtkPiecewiseFunctionPtr | generateOpacityTF () const |
Protected Member Functions | |
void | deepCopy (ImageTFData *source) |
virtual void | internalsHaveChanged () |
void | fillOpacityTFFromMap (vtkPiecewiseFunctionPtr tf) const |
void | fillColorTFFromMap (vtkColorTransferFunctionPtr tf) const |
void | shiftColor (int shift, double center, double scale) |
void | shiftOpacity (int shift) |
Protected Attributes | |
IntIntMap | mOpacityMap |
ColorMap | mColorMap |
Data class for Transfer Function info, either 2D or 3D.
Used as base for ImageTF3D and ImageLUT2D.
Alpha transfer function: Set either LLR/alpha or OpacityMap, this updates the data as shown.
set set | | LLR/alpha --> OpacityMap --> alphaTF
Color transfer function: Set either ColorMap or LUT, plus the Win/Level, this updates the data as shown.
set set | | ColorMap --> LUT -------> colorTF | Win/Level--| | set
Definition at line 97 of file cxImageTFData.h.
cx::ImageTFData::ImageTFData | ( | ) |
Definition at line 59 of file cxImageTFData.cpp.
|
virtual |
Definition at line 63 of file cxImageTFData.cpp.
void cx::ImageTFData::addAlphaPoint | ( | int | alphaPosition, |
int | alphaValue | ||
) |
Add point to the opacity transfer function.
Definition at line 323 of file cxImageTFData.cpp.
void cx::ImageTFData::addColorPoint | ( | int | colorPosition, |
QColor | colorValue | ||
) |
Add point to the color transfer function.
Definition at line 340 of file cxImageTFData.cpp.
|
virtual |
adds xml information about the transferfunction and its variabels
Definition at line 73 of file cxImageTFData.cpp.
|
protected |
Definition at line 67 of file cxImageTFData.cpp.
|
protected |
Definition at line 385 of file cxImageTFData.cpp.
|
protected |
Definition at line 396 of file cxImageTFData.cpp.
vtkColorTransferFunctionPtr cx::ImageTFData::generateColorTF | ( | ) | const |
Definition at line 371 of file cxImageTFData.cpp.
vtkPiecewiseFunctionPtr cx::ImageTFData::generateOpacityTF | ( | ) | const |
Definition at line 378 of file cxImageTFData.cpp.
double cx::ImageTFData::getAlpha | ( | ) | const |
Definition at line 254 of file cxImageTFData.cpp.
ColorMap cx::ImageTFData::getColorMap | ( | ) |
Definition at line 319 of file cxImageTFData.cpp.
double cx::ImageTFData::getLevel | ( | ) | const |
Definition at line 305 of file cxImageTFData.cpp.
double cx::ImageTFData::getLLR | ( | ) | const |
Definition at line 213 of file cxImageTFData.cpp.
IntIntMap cx::ImageTFData::getOpacityMap | ( | ) |
Definition at line 315 of file cxImageTFData.cpp.
double cx::ImageTFData::getWindow | ( | ) | const |
Definition at line 281 of file cxImageTFData.cpp.
|
inlineprotectedvirtual |
Reimplemented in cx::ImageTF3D, and cx::ImageLUT2D.
Definition at line 140 of file cxImageTFData.h.
void cx::ImageTFData::moveAlphaPoint | ( | int | oldpos, |
int | newpos, | ||
int | alphaValue | ||
) |
Definition at line 334 of file cxImageTFData.cpp.
void cx::ImageTFData::moveColorPoint | ( | int | oldpos, |
int | newpos, | ||
QColor | colorValue | ||
) |
Definition at line 352 of file cxImageTFData.cpp.
|
virtual |
Use a XML node to load data.
dataNode | A XML data representation of this object. |
Definition at line 100 of file cxImageTFData.cpp.
void cx::ImageTFData::removeAlphaPoint | ( | int | alphaPosition | ) |
Remove point from the opacity transfer function.
Definition at line 329 of file cxImageTFData.cpp.
void cx::ImageTFData::removeColorPoint | ( | int | colorPosition | ) |
Remove point from the color transfer function.
Definition at line 346 of file cxImageTFData.cpp.
void cx::ImageTFData::resetAlpha | ( | IntIntMap | val | ) |
Definition at line 359 of file cxImageTFData.cpp.
void cx::ImageTFData::resetColor | ( | ColorMap | val | ) |
Definition at line 365 of file cxImageTFData.cpp.
void cx::ImageTFData::setAlpha | ( | double | val | ) |
range [0..1]
Definition at line 226 of file cxImageTFData.cpp.
void cx::ImageTFData::setLevel | ( | double | val | ) |
range [scalarMin..scalarMax]
Set Level, i.e. the position of the intensity window that will be visible.
Definition at line 292 of file cxImageTFData.cpp.
void cx::ImageTFData::setLLR | ( | double | val | ) |
range [scalarMin..scalarMax]
Set Low Level Reject, meaning the lowest intensity value that will be visible.
Definition at line 203 of file cxImageTFData.cpp.
void cx::ImageTFData::setWindow | ( | double | val | ) |
range [1..scalarMax-scalarMin]
Set Window, i.e. the size of the intensity window that will be visible.
Definition at line 267 of file cxImageTFData.cpp.
void cx::ImageTFData::shift | ( | int | val | ) |
shift the transfter function index values by the input amount. Used for signed/unsigned conversion.
Definition at line 170 of file cxImageTFData.cpp.
|
protected |
Definition at line 178 of file cxImageTFData.cpp.
|
protected |
Definition at line 190 of file cxImageTFData.cpp.
|
signal |
void cx::ImageTFData::unsignedCT | ( | bool | onLoad | ) |
Modify transfer function for unsigned CT. This is necessary CT transfer functions are stored as signed.
onLoad | true: add 1024 to preset transfer function values (Use after a preset is loaded) false: subtract 1024 from transfer function values (Use before saving a new preset, remember to revert back afterwards) |
Definition at line 156 of file cxImageTFData.cpp.
|
protected |
Definition at line 148 of file cxImageTFData.h.
|
protected |
Definition at line 147 of file cxImageTFData.h.