Initializes a new
DigitalSubtractCommand class object with explicit parameters.
Syntax
Parameters
- maskImage
- RasterImage object that references the mask image. This image will not be affected.
- flags
- Flags that indicate the action to take after subtration has occurred.
Example
Visual Basic | Copy Code |
---|
ImageProcessing.Core.DigitalSubtractCommand.DigitalSubtractConstructor
Public Sub DigitalSubtractConstructorExample()
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")
Dim MaskImage As RasterImage
MaskImage = codecs.Load("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Image3.cmp", 4, CodecsLoadByteOrder.Bgr, 1, 1)
Dim command As DigitalSubtractCommand = New DigitalSubtractCommand(MaskImage, DigitalSubtractCommandFlags.ContrastEnhancement)
command.Run(leadImage)
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
ImageProcessing.Core.DigitalSubtractCommand.DigitalSubtractConstructor public void DigitalSubtractConstructorExample() { // 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 RasterImage MaskImage; MaskImage = codecs.Load(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Master.jpg", 4, CodecsLoadByteOrder.Bgr, 1, 1); DigitalSubtractCommand command = new DigitalSubtractCommand(MaskImage, DigitalSubtractCommandFlags.ContrastEnhancement); 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