LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

ApplyLinearVoiLookupTableCommand Class

Show in webframe
Example 







Members 
Sets up the paint or paint and image processing methods window leveling options for a specific image through a linear transformation described by the window center and width. This class is available in the Document/Medical toolkits only.
Object Model
Syntax
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  
@interface LTApplyLinearVoiLookupTableCommand : LTRasterCommand
public class ApplyLinearVoiLookupTableCommand extends RasterCommand
function Leadtools.ImageProcessing.Core.ApplyLinearVoiLookupTableCommand()
public ref class ApplyLinearVoiLookupTableCommand : public Leadtools.ImageProcessing.RasterCommand, Leadtools.ImageProcessing.IRasterCommand  
Remarks
For more information, refer to Changing Brightness and Contrast.

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.

Example
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Core

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
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

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);
      }
   });
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

      
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);

}
using Leadtools;
using Leadtools.Examples;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

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();
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Core

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
Requirements

Target Platforms

See Also

Reference

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

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.