Interface ILUT
- Namespace
- FellowOakDicom.Imaging.LUT
- Assembly
- fo-dicom.core.dll
Interface for Lookup table definition
public interface ILUT
- Extension Methods
Properties
IsValid
Returns true if the lookup table is valid
bool IsValid { get; }
Property Value
this[double]
Indexer to transform input value into output value
double this[double input] { get; }
Parameters
input
doubleInput value
Property Value
- double
Output value
MaximumOutputValue
Get the maximum output value
double MaximumOutputValue { get; }
Property Value
MinimumOutputValue
Get the minimum output value
double MinimumOutputValue { get; }
Property Value
Methods
Recalculate()
Forces the recalculation of LUT
void Recalculate()