Visual Basic (Declaration) | |
---|---|
Public Shared Sub WindowLevelFillLookupTableExt( _ ByVal lookupTable() As RasterColor16, _ ByVal startColor As RasterColor16, _ ByVal endColor As RasterColor16, _ ByVal low As Integer, _ ByVal high As Integer, _ ByVal lowBit As Integer, _ ByVal highBit As Integer, _ ByVal minValue As Integer, _ ByVal maxValue As Integer, _ ByVal factor As Integer, _ ByVal flags As RasterPaletteWindowLevelFlags _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public static void WindowLevelFillLookupTableExt( RasterColor16[] lookupTable, RasterColor16 startColor, RasterColor16 endColor, int low, int high, int lowBit, int highBit, int minValue, int maxValue, int factor, RasterPaletteWindowLevelFlags flags ) |
C++/CLI | |
---|---|
public: static void WindowLevelFillLookupTableExt( array<RasterColor16>^ lookupTable, RasterColor16 startColor, RasterColor16 endColor, int low, int high, int lowBit, int highBit, int minValue, int maxValue, int factor, RasterPaletteWindowLevelFlags flags ) |
Parameters
- lookupTable
- Pointer to an array to be updated with the 16-bit RGB quad (i.e. lookup table).
- startColor
- Starting color value for the gradient.
- endColor
- Ending color value for the gradient.
- low
- The low value of the window width, in pixels.
- high
- The high value for the window width, in pixels.
- lowBit
Value indicating the low bit used for leveling.
This is normally 0 and should be less than the highBit.- highBit
Value indicating the high bit used for leveling.
This should be greater than or equal to lowBit and less than 11 for 12-bit grayscale or 15 for 16-bit grayscale.- minValue
- The image minimum value. This value can be obtained using MinMaxValuesCommand.
- maxValue
- The image maximum value. This value can be obtained using MinMaxValuesCommand.
- factor
Value that indicates the factor to be applied in the method operation specified in the flags parameter.
This parameter is used only if flags is RasterPaletteWindowLevelFlags.Exponential, RasterPaletteWindowLevelFlags.Logarithmic or RasterPaletteWindowLevelFlags.Sigmoid.
If RasterPaletteWindowLevelFlags.Exponential or RasterPaletteWindowLevelFlags.Sigmoid is specified, its value can be any integer (+/-). If RasterPaletteWindowLevelFlags.Logarithmic is specified, its value should be
>>= 0
. If factor = 0, the lookup table will be filled linearly.- flags
- Flags that indicate how the range is used to fill and the type of the lookup table and whether it contains signed or unsigned data.
Visual Basic | Copy Code |
---|---|
Public Sub WindowLevelFillLookupTableExampleExt() |
C# | Copy Code |
---|---|
public void WindowLevelFillLookupTableExtExample() |
This method is available in the Medical Toolkits.
Use this method to fill in the lookup table, used in RasterImage.WindowLevelExtCommand, according to the lookup table type flag.
The lookup table will be filled as follows:
Inside/Outside | MinValue-Low | Low-High | High-MaxValue |
---|---|---|---|
RasterPaletteWindowLevelFlags.Inside | solid black (0,0,0) | color gradient ranging from startColor to endColor | solid white (255,255,255) |
RasterPaletteWindowLevelFlags.Outside | solid color (startColor) | grayscale values from solid black (0,0,0) to solid white (255, 255, 255) | solid color (endColor) |
RasterPaletteWindowLevelFlags.Inside | RasterPaletteWindowLevelFlags.DicomStyle | None | color gradient ranging from startColor to endColor | None |
RasterPaletteWindowLevelFlags.Outside | RasterPaletteWindowLevelFlags.DicomStyle | solid color (startColor) | color gradient ranging from startColor to endColor | solid color (endColor) |
To fill an 8-bit lookup table use RasterPalette.WindowLevelFillLookupTable.
Only TIFF and DICOM file formats are capable of saving images that have been window-leveled.
Images can be window-leveled by calling RasterImage.WindowLevel and specifying RasterWindowLevelMode.PaintAndProcessing for the flags parameter, by using the WindowLevelExt or by loading an image from a file format that supports Window Leveling.
If a window-leveled image is saved as any other file format, the image data will be converted before being saved. For more information, refer to Saving Window-Leveled Images.
For more information, refer to Introduction to Image Processing With LEADTOOLS.
For more information, refer to Grayscale Images.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family