←Select platform

HistogramEqualizeCommand Constructor(HistogramEqualizeType)

Summary

Initializes a new HistogramEqualizeCommand class object with explicit parameters.

Syntax

C#
VB
Java
Objective-C
WinRT C#
C++
Public Function New( _ 
   ByVal type As Leadtools.Imageprocessing.Color.HistogramEqualizeType _ 
) 
- (instancetype)initWithType:(LTHistogramEqualizeType)type 
public HistogramEqualizeCommand(HistogramEqualizeType type) 
function HistogramEqualizeCommand(  
   type  
) 
public: 
HistogramEqualizeCommand(  
   Leadtools.Imageprocessing.Color.HistogramEqualizeType type 
) 

Parameters

type
Flag that indicates which color space to equalize.

Example

Run the HistogramEqualizeCommand on an image and applies histogram equalization with YUV color space.

C#
VB
Silverlight C#
Silverlight VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
public void HistogramEqualizeConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP")); 
 
   // Prepare the command 
   HistogramEqualizeCommand command = new HistogramEqualizeCommand(HistogramEqualizeType.Yuv); 
   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:\Users\Public\Documents\LEADTOOLS Images"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing.Color 
      Leadtools.Examples.Support.SetLicense() 
 
Public Sub HistogramEqualizeConstructorExample() 
   Dim codecs As New RasterCodecs() 
   codecs.ThrowExceptionsOnInvalidImages = True 
 
   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP")) 
 
   ' Prepare the command 
   Dim command As HistogramEqualizeCommand = New HistogramEqualizeCommand(HistogramEqualizeType.Yuv) 
   command.Run(leadImage) 
   codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24) 
 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" 
End Class 
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Examples; 
 
public void HistogramEqualizeConstructorExample(RasterImage image, Stream outStream) 
{ 
   // Prepare the command 
   HistogramEqualizeCommand command = new HistogramEqualizeCommand(HistogramEqualizeType.Yuv); 
   command.Run(image); 
 
   // Save result image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24); 
   image.Dispose(); 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing.Color 
 
Public Sub HistogramEqualizeConstructorExample(ByVal image As RasterImage, ByVal outStream As Stream) 
   ' Prepare the command 
   Dim command As HistogramEqualizeCommand = New HistogramEqualizeCommand(HistogramEqualizeType.Yuv) 
   command.Run(image) 
 
   ' Save result image 
   Dim codecs As RasterCodecs = New RasterCodecs() 
   codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24) 
   image.Dispose() 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Color Assembly