'Declaration Public Shared Sub BuildColorLimitsLUT( _ ByVal lowThreshold As Integer, _ ByVal lowFillColor As ImGearPixel, _ ByVal highThreshold As Integer, _ ByVal highFillColor As ImGearPixel, _ ByVal lookupTable As ImGearRGBLUT _ )
'Usage Dim lowThreshold As Integer Dim lowFillColor As ImGearPixel Dim highThreshold As Integer Dim highFillColor As ImGearPixel Dim lookupTable As ImGearRGBLUT ImGearDICOM.BuildColorLimitsLUT(lowThreshold, lowFillColor, highThreshold, highFillColor, lookupTable)
public static void BuildColorLimitsLUT( int lowThreshold, ImGearPixel lowFillColor, int highThreshold, ImGearPixel highFillColor, ImGearRGBLUT lookupTable )
public: static void BuildColorLimitsLUT( int lowThreshold, ImGearPixel* lowFillColor, int highThreshold, ImGearPixel* highFillColor, ImGearRGBLUT* lookupTable )
public: static void BuildColorLimitsLUT( int lowThreshold, ImGearPixel^ lowFillColor, int highThreshold, ImGearPixel^ highFillColor, ImGearRGBLUT^ lookupTable )
Parameters
- lowThreshold
- Lower pixel value limit. All pixels at or below this value will be pseudocolored.
- lowFillColor
- An RGB value that will be used to fill (i.e. pseudocolor) the pixels with intensities equal or smaller than lowThreshold.
- highThreshold
- Higher pixel value limit. All pixels at or above this value will be pseudocolored.
- highFillColor
- An RGB value that will be used to fill (i.e. pseudocolor) the pixels with intensities equal or greater than
highThreshold
. - lookupTable
- Lookup table to fill. It should contain three single-channel LUTs with input and output depths set to 8.