Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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
)
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

Run the ApplyLinearVoiLookupTableCommand on an image.

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

   Dim leadImage As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "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
public void ApplyLinearVoiLookupTableConstructorExample() 

   // Load an image 
   RasterCodecs.Startup(); 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "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