←Select platform

Smooth Property

Summary
Gets or sets the size of the area to be used when smoothing the edges between localized blocks.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public int Smooth { get; set; } 
@property (nonatomic, assign) NSUInteger smooth; 
public int getSmooth(); 
public void setSmooth( 
   int intValue 
); 
public: 
property int Smooth { 
   int get(); 
   void set (    int ); 
} 
Smooth # get and set (LocalHistogramEqualizeCommand) 

Property Value

Size of the area to be used when smoothing the edges between localized blocks. Possible values are between 0 and 7, but if Height is less than or equal to 7 then the maximum value for this item is Height - 1. If Smooth = 0 the edges will not be smoothed.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void LocalHistogramEqualizeCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP")); 
 
   // Prepare the command 
   LocalHistogramEqualizeCommand command = new LocalHistogramEqualizeCommand(); 
   command.Width = 15; 
   command.Height = 15; 
   command.WidthExtension = 100; 
   command.HeightExtension = 100; 
   command.Smooth = 0; 
   command.Type = HistogramEqualizeType.Yuv; 
   // Local Histogram equalize 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.