←Select platform

BalanceColorsCommand Constructor(BalanceColorCommandFactor,BalanceColorCommandFactor,BalanceColorCommandFactor)

Summary
Initializes a new BalanceColorsCommand with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithRedFactor:(LTBalanceColorCommandFactor *)redFactor greenFactor:(LTBalanceColorCommandFactor *)greenFactor blueFactor:(LTBalanceColorCommandFactor *)blueFactor NS_DESIGNATED_INITIALIZER; 
__init__(self,redFactor,greenFactor,blueFactor) # Overloaded constructor 

Parameters

redFactor
BalanceColorCommandFactor class that contains the values to use for redistributing the image's red values. Valid values for all class members must be within the range : 0.0 - 100.0.

greenFactor
BalanceColorCommandFactor class that contains the values to use for redistributing the image's green values. Valid values for all class members must be within the range : 0.0 - 100.0.

blueFactor
BalanceColorCommandFactor class that contains the values to use for redistributing the image's blue values. Valid values for all class members must be within the range : 0.0 - 100.0.

Example

Run the BalanceColorsCommand on an image.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void BalanceColorsConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Image2.jpg")); 
 
   // Prepare the command 
   BalanceColorCommandFactor RedFactor = new BalanceColorCommandFactor(); 
   BalanceColorCommandFactor GreenFactor = new BalanceColorCommandFactor(); 
   BalanceColorCommandFactor BlueFactor = new BalanceColorCommandFactor(); 
 
   RedFactor.ToRed = 0.2; 
   RedFactor.ToGreen = 0.3; 
   RedFactor.ToBlue = 0.5; 
 
   GreenFactor.ToRed = 0.3; 
   GreenFactor.ToGreen = 0.1; 
   GreenFactor.ToBlue = 0.6; 
 
   BlueFactor.ToRed = 0.8; 
   BlueFactor.ToGreen = 0.1; 
   BlueFactor.ToBlue = 0.1; 
 
   BalanceColorsCommand command = new BalanceColorsCommand(RedFactor, GreenFactor, BlueFactor); 
   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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 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.