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)
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 _)
+(BOOL)windowLevelFillLookupTableExt:(NSArray*)lookupTablestartColor:(LTRasterColor16*)startColorendColor:(LTRasterColor16*)endColorlow:(int)lowhigh:(int)highlowBit:(unsigned int)lowBithighBit:(unsigned int)highBitminValue:(int)minValuemaxValue:(int)maxValuefactor:(int)factorflags:(LTRasterPaletteWindowLevelFlags)flagserror:(NSError**)outError;
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)
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.
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 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.
LEADTOOLS supports two types of LUTs for 10-16-bit grayscale images (8-bit LUT and 16-bit LUT). Typical grayscale image display and processing is done using an 8-bit LUT. But, you can also use a 16-bit LUT, which offers more precision. Some special video cards and monitors also support display of grayscale images using a 16-bit LUT.
For more information, refer to Introduction to Image Processing With LEADTOOLS.
For more information, refer to Grayscale Images.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Core;public void WindowLevelFillLookupTableExtExample(){RasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp");string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1_WindowLevel.tif");// Load an image as 16 bit grayscaleRasterImage image = codecs.Load(srcFileName, 16, CodecsLoadByteOrder.Gray, 1, 1);// get the lookup table sizeint lookupTableSize = 1 << (image.HighBit - image.LowBit + 1);// get low/hight bits and minimum/maximum value of this grayscale imageMinMaxBitsCommand minMaxBitsCmd = new MinMaxBitsCommand();minMaxBitsCmd.Run(image);int lowBit = minMaxBitsCmd.MinimumBit;int highBit = minMaxBitsCmd.MaximumBit;MinMaxValuesCommand minMaxValuesCmd = new MinMaxValuesCommand();minMaxValuesCmd.Run(image);int minVal = minMaxValuesCmd.MinimumValue;int maxVal = minMaxValuesCmd.MaximumValue;// create the lookup tableRasterColor16[] lookupTable = new RasterColor16[lookupTableSize];RasterPaletteWindowLevelFlags flags =RasterPaletteWindowLevelFlags.Inside |RasterPaletteWindowLevelFlags.Linear;if (image.Signed)flags |= RasterPaletteWindowLevelFlags.Signed;// initialize the fill lookup table parametersRasterColor16 startColor = new RasterColor16(RasterColor16.MaximumComponent, 0, 0); // redRasterColor16 endColor = new RasterColor16(0, 0, RasterColor16.MaximumComponent); // blueint low = 23000;int high = 45000;int factor = 10;// fill the lookup tableRasterPalette.WindowLevelFillLookupTableExt(lookupTable,startColor,endColor,low,high,lowBit,highBit,minVal,maxVal,factor,flags);// now do window level on the imageimage.WindowLevelExt(lowBit,highBit,lookupTable,RasterWindowLevelMode.PaintAndProcessing);// save it back on diskcodecs.Save(image, destFileName, RasterImageFormat.Tif, 16);// Clean upimage.Dispose();}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.CorePublic Sub WindowLevelFillLookupTableExampleExt()Dim codecs As RasterCodecs = New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp")Dim destFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1_WindowLevel.tif")' Load an image as 16-bit grayscaleDim image As RasterImage = codecs.Load(srcFileName, 16, CodecsLoadByteOrder.Gray, 1, 1)' get the lookup table sizeDim lookupTableSize As Integer = 1 << (image.HighBit - image.LowBit + 1)' get low/hight bits and minimum/maximum value of this grayscale imageDim minMaxBitsCmd As MinMaxBitsCommand = New MinMaxBitsCommand()minMaxBitsCmd.Run(image)Dim lowBit As Integer = minMaxBitsCmd.MinimumBitDim highBit As Integer = minMaxBitsCmd.MaximumBitDim minMaxValuesCmd As MinMaxValuesCommand = New MinMaxValuesCommand()minMaxValuesCmd.Run(image)Dim minVal As Integer = minMaxValuesCmd.MinimumValueDim maxVal As Integer = minMaxValuesCmd.MaximumValue' create the lookup tableDim lookupTable As RasterColor16() = New RasterColor16(lookupTableSize - 1) {}Dim flags As RasterPaletteWindowLevelFlags = RasterPaletteWindowLevelFlags.Inside Or RasterPaletteWindowLevelFlags.LinearIf image.Signed Thenflags = flags Or RasterPaletteWindowLevelFlags.SignedEnd If' initialize the fill lookup table parametersDim startColor As RasterColor16 = New RasterColor16(RasterColor16.MaximumComponent, 0, 0) ' RedDim endColor As RasterColor16 = New RasterColor16(0, 0, RasterColor16.MaximumComponent) ' BlueDim low As Integer = 23000Dim high As Integer = 45000Dim factor As Integer = 10' fill the lookup tableRasterPalette.WindowLevelFillLookupTableExt(lookupTable, startColor, endColor, low, high, lowBit, highBit, minVal, maxVal, factor, flags)' now do window level on the imageimage.WindowLevelExt(lowBit, highBit, lookupTable, RasterWindowLevelMode.PaintAndProcessing)' save it back on diskcodecs.Save(image, destFileName, RasterImageFormat.Tif, 16)' Clean upimage.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
