←Select platform

Average Property

Summary
Gets or sets an array that contains the new average pixel value for the entire image.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public int[] Average { get; set; } 
@property (nonatomic, strong, nullable) NSArray<NSNumber *> *average; 
public int[ getAverage(); 
public void setAverage( 
   int[] int[Value 
); 
public: 
property array<int>^ Average { 
   array<int>^ get(); 
   void set (    array<int>^ ); 
} 
Average # get and set (LightControlCommand) 

Property Value

An array that contains the new average pixel value for the entire image. The size of the array equals one, if Type is LightControlCommandType.Yuv or LightControlCommandType.Gray, or three, if Type is LightControlCommandType.Rgb. If Type is LightControlCommandType.Rgb the first element corresponds to the new blue average value, the second element to the green, and the last element to the red.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void LightControlConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "dirty_barcode.jpg")); 
 
   // Prepare the command 
   int[] LowerAverage = new int[3]; 
   LowerAverage[0] = 100; //for blue, gray or yuv 
   LowerAverage[1] = 120; //for green 
   LowerAverage[2] = 80; //for red 
 
   int[] Average = new int[3]; 
   Average[0] = 150; //for blue, gray or yuv 
   Average[1] = 140; //for green 
   Average[2] = 128; //for red 
 
   int[] UpperAverage = new int[3]; 
   UpperAverage[0] = 190; //for blue, gray or yuv 
   UpperAverage[1] = 200; //for green 
   UpperAverage[2] = 220; //for red  
 
   LightControlCommand command = new LightControlCommand(); 
   command.LowerAverage = LowerAverage; 
   command.Average = Average; 
   command.UpperAverage = UpperAverage; 
   command.Type = LightControlCommandType.Yuv; 
   // change the lightness of the image. 
   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.