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