←Select platform

ApplyMathematicalLogicCommand Constructor(int,ApplyMathematicalLogicCommandFlags)

Summary
Initializes a new ApplyMathematicalLogicCommand with explicit parameters.
Syntax
C#
VB
Objective-C
C++
Java
Public Function New( _ 
   ByVal factor As Integer, _ 
   ByVal flags As ApplyMathematicalLogicCommandFlags _ 
) 
- (instancetype)initWithFactor:(NSInteger)factor 
                         flags:(LTApplyMathematicalLogicCommandFlags)flags 
public ApplyMathematicalLogicCommand( 
   int factor,  
   int flags 
) 
public: 
ApplyMathematicalLogicCommand(  
   int factor, 
   ApplyMathematicalLogicCommandFlags flags 
) 

Parameters

factor
Mathematical or logical operation factor.

flags
Flags that indicate the channel that will be used, the treatment of the input pixel values, the mathematical operation, and the treatment of the output pixel values. Use a bitwise OR ( ¦ ) to specify one flag from each group.

Example

Run the ApplyMathematicalLogicCommand on an image.

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
public void ApplyMathematicalLogicConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\NaturalFruits.jpg")); 
 
   // Prepare the command 
   ApplyMathematicalLogicCommand command = new ApplyMathematicalLogicCommand(151, ApplyMathematicalLogicCommandFlags.OperationMultiply | ApplyMathematicalLogicCommandFlags.ValueDoNothing | ApplyMathematicalLogicCommandFlags.ResultDoNothing); 
   // Multiply the colors of the bitmap using a factor of 1.51. 
   command.Run(image); 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing.Color 
 
Public Sub ApplyMathematicalLogicConstructorExample() 
   Dim codecs As New RasterCodecs() 
   codecs.ThrowExceptionsOnInvalidImages = True 
 
   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\NaturalFruits.jpg")) 
 
   ' Prepare the command 
   Dim command As ApplyMathematicalLogicCommand = New ApplyMathematicalLogicCommand(151, ApplyMathematicalLogicCommandFlags.OperationMultiply Or ApplyMathematicalLogicCommandFlags.ValueDoNothing Or ApplyMathematicalLogicCommandFlags.ResultDoNothing) 
   ' Multiply the colors of the bitmap using a factor of 1.51 . 
   command.Run(leadImage) 
   codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24) 
 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images" 
End Class 
Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Color Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.