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