←Select platform

AutoColorLevelCommand Class

Summary
Applies one of several types of automatic color leveling to an image. This function is useful for pre-processing images for the purpose of improving barcode recognition results.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public class AutoColorLevelCommand : RasterCommand 
@interface LTAutoColorLevelCommand : LTRasterCommand 
public class AutoColorLevelCommand 
    extends RasterCommand 
public ref class AutoColorLevelCommand : public RasterCommand   
class AutoColorLevelCommand(RasterCommand): 
Remarks
  • This command makes the dark values darker and the light values lighter, which automatically enhances shadows and brightens the image. It also maximizes the tonal range of the image. It enhances the contrast and intensity using the image's histogram and a color distribution-based algorithm.
  • The properties in the AutoColorLevelCommand Class will be updated with the MinimumInput, MaximumInput, MinimumOutput, MaximumOutput and Gamma values used by a method for the appropriate channel(s).
  • If you set the AutoColorLevelCommandFlags.NoProcess flag in the Flag property, the ColorLevelCommandData will be updated with the color leveling information used by the AutoColorLevelCommand. If you then pass the updated ColorLevelCommandData structures to the ColorLevelCommand, you will obtain the same result that you would have obtained if you had called the AutoColorLevelCommand with the leveling flag by itself.
  • If the image is a grayscale image, then AutoColorLevelCommandType.Level, AutoColorLevelCommandType.Contrast and AutoColorLevelCommandType.Intensity give identical results. Also the Master, Red, Green and Blue properties will have the same values.
  • As an example, the following figure shows an image before any automatic color leveling has been performed:

    originalautolevel.jpg

    The following figure shows what would happen if you start with the original image and apply the AutoColorLevelCommand using AutoColorLevelCommandType.Level flag.

    auto-level.jpg

    The following figure shows what would happen if you start with the original image and apply the AutoColorLevelCommand using AutoColorLevelCommandType.Intensity flag.

    auto-intensity.jpg

    The following figure shows what would happen if you start with the original image and apply the AutoColorLevelCommand using AutoColorLevelCommandType.Contrast flag.

    auto-contrast.jpg
  • This command supports 12 and 16-bit grayscale and 48 and 64-bit color images. Support for 12 and 16-bit grayscale and 48 and 64-bit color images is available only in the (Document/Medical toolkits.

  • This command supports unsigned data images, but not signed ones.
  • This command does not support 32-bit grayscale images.

For more information, refer to Correcting Colors.

Auto Color Level Function - Before

Auto Color Level Function - Before

Auto Color Level Function - After

Auto Color Level Function - After

View additional platform support for this Auto Color Level function.

Example

Run the AutoColorLevelCommand on an image.

C#
Java
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void AutoColorLevelCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Image1.jpg")); 
 
   // Prepare the command 
   AutoColorLevelCommand command = new AutoColorLevelCommand(); 
   // Apply "Auto Leveling" to 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:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.File; 
import java.io.IOException; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.imageprocessing.color.*; 
 
 
public void autoColorLevelCommandExample() { 
 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   final String outputFilePath = combine(LEAD_VARS_IMAGES_DIR, "Result.jpg"); 
 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.setThrowExceptionsOnInvalidImages(true); 
 
   RasterImage image = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "Image1.jpg")); 
 
   // Prepare the command 
   AutoColorLevelCommand command = new AutoColorLevelCommand(); 
 
   // Apply "Auto Leveling" to the image 
   command.run(image); 
   codecs.save(image, outputFilePath, RasterImageFormat.JPEG, 24); 
 
   assertTrue(new File(outputFilePath).exists()); 
   System.out.println("Command run and image saved to " + outputFilePath); 
 
} 
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.