public int[] UpperAverage { get; set; } @property (nonatomic, strong, nullable) NSArray<NSNumber *> *upperAverage; public int[ getUpperAverage();public void setUpperAverage(int[] int[Value);
UpperAverage # get and set (LightControlCommand)
An array contain the new average pixel value for those pixels with values between the average pixel value for the entire image and the highest pixel value in the image. The size of the array equals either one if Type is LightControlCommandType.Yuv or LightControlCommandType.Gray or three if Type is LightControlCommandType.Rgb where the first element corresponds to the new blue upper side average value, the second element to the green, and the last element to the red.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Color;public void LightControlConstructorExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "dirty_barcode.jpg"));// Prepare the commandint[] LowerAverage = new int[3];LowerAverage[0] = 100; //for blue, gray or yuvLowerAverage[1] = 120; //for greenLowerAverage[2] = 80; //for redint[] Average = new int[3];Average[0] = 150; //for blue, gray or yuvAverage[1] = 140; //for greenAverage[2] = 128; //for redint[] UpperAverage = new int[3];UpperAverage[0] = 190; //for blue, gray or yuvUpperAverage[1] = 200; //for greenUpperAverage[2] = 220; //for redLightControlCommand 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";}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
