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
Run the DigitalSubtractCommand on an image.
Visual Basic | Copy Code |
---|
Public Sub DigitalSubtractCommandExample()
RasterCodecs.Startup()
Dim codecs As New RasterCodecs()
codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg")
Dim MaskImage As RasterImage
MaskImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "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 |
---|
public void DigitalSubtractCommandExample() { // 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 RasterImage MaskImage; MaskImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "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