←Select platform

ApplyMathematicalLogicCommand Constructor(int,ApplyMathematicalLogicCommandFlags)

Summary
Initializes a new ApplyMathematicalLogicCommand with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithFactor:(NSInteger)factor flags:(LTApplyMathematicalLogicCommandFlags)flags NS_DESIGNATED_INITIALIZER; 
public ApplyMathematicalLogicCommand( 
   int factor,  
   int flags 
) 
public: 
ApplyMathematicalLogicCommand(  
   int factor, 
   ApplyMathematicalLogicCommandFlags flags 
) 
__init__(self,factor,flags) # Overloaded constructor 

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#
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:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.Color Assembly

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