Table of Contents

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

bool

this[double]

Indexer to transform input value into output value

double this[double input] { get; }

Parameters

input double

Input value

Property Value

double

Output value

MaximumOutputValue

Get the maximum output value

double MaximumOutputValue { get; }

Property Value

double

MinimumOutputValue

Get the minimum output value

double MinimumOutputValue { get; }

Property Value

double

Methods

Recalculate()

Forces the recalculation of LUT

void Recalculate()