Subtracts the live image from the mask image to show the differences between the two images. This method is available in the
Medical and above.
Syntax
Example
Visual Basic | Copy Code |
---|
ImageProcessing.Core.DigitalSubtractCommand
Public Sub DigitalSubtractCommandExample()
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
command.Flags = DigitalSubtractCommandFlags.ContrastEnhancement
command.MaskImage = MaskImage
command.Run(leadImage)
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
ImageProcessing.Core.DigitalSubtractCommand public void DigitalSubtractCommandExample() { // 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(); command.Flags = DigitalSubtractCommandFlags.ContrastEnhancement; command.MaskImage = MaskImage; command.Run(image); RasterCodecs.Shutdown(); } |
Remarks
Inheritance Hierarchy
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