Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.10
ApplyLinearVoiLookupTableCommand Constructor(Double,Double,VoiLookupTableCommandFlags)
See Also  Example
Leadtools.ImageProcessing.Core Namespace > ApplyLinearVoiLookupTableCommand Class > ApplyLinearVoiLookupTableCommand Constructor : ApplyLinearVoiLookupTableCommand Constructor(Double,Double,VoiLookupTableCommandFlags)




center
Center of the window of interest.
width
Width of the window of interest.
flags
Flags that determine the behavior of this method.
Initializes a new ApplyLinearVoiLookupTableCommand with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal center As Double, _
   ByVal width As Double, _
   ByVal flags As VoiLookupTableCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim center As Double
Dim width As Double
Dim flags As VoiLookupTableCommandFlags
 
Dim instance As ApplyLinearVoiLookupTableCommand(center, width, flags)
C# 
public ApplyLinearVoiLookupTableCommand( 
   double center,
   double width,
   VoiLookupTableCommandFlags flags
)
Managed Extensions for C++ 
public: ApplyLinearVoiLookupTableCommand( 
   double center,
   double width,
   VoiLookupTableCommandFlags flags
)
C++/CLI 
public:
ApplyLinearVoiLookupTableCommand( 
   double center,
   double width,
   VoiLookupTableCommandFlags flags
)

Parameters

center
Center of the window of interest.
width
Width of the window of interest.
flags
Flags that determine the behavior of this method.

Example

Visual BasicCopy Code
ImageProcessing.Core.ApplyLinearVoiLookupTableCommand.ApplyLinearVoiLookupTableConstructor
   Public Sub ApplyLinearVoiLookupTableConstructorExample()
      RasterCodecs.Startup()
      Dim codecs As New RasterCodecs()
      codecs.ThrowExceptionsOnInvalidImages = True

      Dim leadImage As RasterImage = codecs.Load("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Master.jpg")

      ' Prepare the command
      ' Apply "Abdomen T1" window-level , high bit is assumed
      ' to be "11" and low bit "0.
      Dim command As ApplyLinearVoiLookupTableCommand = New ApplyLinearVoiLookupTableCommand(330.0, 600.0, VoiLookupTableCommandFlags.None)
      command.Run(leadImage)

      RasterCodecs.Shutdown()
   End Sub
C#Copy Code
ImageProcessing.Core.ApplyLinearVoiLookupTableCommand.ApplyLinearVoiLookupTableConstructor 
      public void ApplyLinearVoiLookupTableConstructorExample() 
      { 
         // Load an image 
         RasterCodecs.Startup(); 
         RasterCodecs codecs = new RasterCodecs(); 
         codecs.ThrowExceptionsOnInvalidImages = true; 
 
         RasterImage image = codecs.Load(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Master.jpg"); 
 
         // Prepare the command 
         // Apply "Abdomen T1" window-level , high bit is assumed to be "11" and low bit "0. 
         ApplyLinearVoiLookupTableCommand command = new ApplyLinearVoiLookupTableCommand(330.0, 600.0, VoiLookupTableCommandFlags.None); 
         command.Run(image); 
 
         RasterCodecs.Shutdown(); 
      }

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also