Leadtools.ImageProcessing.Core Namespace : ApplyLinearVoiLookupTableCommand Class |
public class ApplyLinearVoiLookupTableCommand : Leadtools.ImageProcessing.RasterCommand, Leadtools.ImageProcessing.IRasterCommand
'Declaration Public Class ApplyLinearVoiLookupTableCommand Inherits Leadtools.ImageProcessing.RasterCommand Implements Leadtools.ImageProcessing.IRasterCommand
'Usage Dim instance As ApplyLinearVoiLookupTableCommand
public sealed class ApplyLinearVoiLookupTableCommand : Leadtools.ImageProcessing.IRasterCommand
function Leadtools.ImageProcessing.Core.ApplyLinearVoiLookupTableCommand()
public ref class ApplyLinearVoiLookupTableCommand : public Leadtools.ImageProcessing.RasterCommand, Leadtools.ImageProcessing.IRasterCommand
In Silverlight and Windows Phone versions of LEADTOOLS, this image processing command will fail if the image data for the RasterImage object is stored internally using a Silverlight WriteableBitmap object. For more information, refer to Image Processing Command Limitations in Silverlight.
Public Sub ApplyLinearVoiLookupTableCommandExample() Dim codecs As New RasterCodecs() codecs.ThrowExceptionsOnInvalidImages = True Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE2.dcm")) ' Prepare the command Dim command As ApplyLinearVoiLookupTableCommand = New ApplyLinearVoiLookupTableCommand command.Flags = VoiLookupTableCommandFlags.None command.Center = 330.0 command.Width = 600.0 ' Apply "Abdomen T1" window-level , high bit is assumed ' to be "11" and low bit "0. command.Run(leadImage) End Sub Public NotInheritable Class LEAD_VARS Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" End Class
public void ApplyLinearVoiLookupTableCommandExample() { // Load an image RasterCodecs codecs = new RasterCodecs(); codecs.ThrowExceptionsOnInvalidImages = true; RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE2.dcm")); // Prepare the command ApplyLinearVoiLookupTableCommand command = new ApplyLinearVoiLookupTableCommand(); command.Flags = VoiLookupTableCommandFlags.None; command.Center = 330.0; command.Width = 600.0; // Apply "Abdomen T1" window-level , high bit is assumed // to be "11" and low bit "0. command.Run(image); } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }
function ApplyLinearVoiLookupTableCommandExample() { var codecs = new Leadtools.Codecs.RasterCodecs(); codecs.throwExceptionsOnInvalidImages = true; // Load the image var srcFileName = "Assets\\Image2.dcm"; return Tools.AppInstallFolder().getFileAsync(srcFileName).then(function (loadFile) { return codecs.loadAsync(Leadtools.LeadStreamFactory.create(loadFile)); }).then(function (image){ // Prepare the command with (Leadtools.ImageProcessing.Core) { // Prepare the command var command = new ApplyLinearVoiLookupTableCommand(); command.flags = VoiLookupTableCommandFlags.none; command.center = 330.0; command.width = 600.0; // Apply "Abdomen T1" window-level , high bit is assumed // to be "11" and low bit "0. command.run(image); } }); }
[TestMethod] public async Task ApplyLinearVoiLookupTableCommandExample() { // Load an image RasterCodecs codecs = new RasterCodecs(); codecs.ThrowExceptionsOnInvalidImages = true; // Load the image string srcFileName = @"Assets\IMAGE2.dcm"; StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName); RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile)); // Prepare the command ApplyLinearVoiLookupTableCommand command = new ApplyLinearVoiLookupTableCommand(); command.Flags = VoiLookupTableCommandFlags.None; command.Center = 330.0; command.Width = 600.0; // Apply "Abdomen T1" window-level , high bit is assumed // to be "11" and low bit "0. command.Run(image); }
public void ApplyLinearVoiLookupTableCommandExample(RasterImage image, Stream outStream) { // Prepare the command ApplyLinearVoiLookupTableCommand command = new ApplyLinearVoiLookupTableCommand(); command.Flags = VoiLookupTableCommandFlags.None; command.Center = 330.0; command.Width = 600.0; // Apply "Abdomen T1" window-level , high bit is assumed // to be "11" and low bit "0. command.Run(image); // Save result image RasterCodecs codecs = new RasterCodecs(); codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24); image.Dispose(); }
Public Sub ApplyLinearVoiLookupTableCommandExample(ByVal image As RasterImage, ByVal outStream As Stream)
' Prepare the command
Dim command As ApplyLinearVoiLookupTableCommand = New ApplyLinearVoiLookupTableCommand()
command.Flags = VoiLookupTableCommandFlags.None
command.Center = 330.0
command.Width = 600.0
' Apply "Abdomen T1" window-level , high bit is assumed
' to be "11" and low bit "0.
command.Run(image)
' Save result image
Dim codecs As RasterCodecs = New RasterCodecs()
codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24)
image.Dispose()
End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
ApplyLinearVoiLookupTableCommand Members
Leadtools.ImageProcessing.Core Namespace
Changing Brightness and Contrast
ApplyVoiLookupTableCommand Class
Leadtools.ImageProcessing.Color.RemapIntensityCommand
ApplyModalityLookupTableCommand Class
ApplyLinearModalityLookupTableCommand Class
Leadtools.ImageProcessing.Color.AdjustTintCommand
Leadtools.ImageProcessing.Color.GammaCorrectExtendedCommand