public CLAHECommand(float Alpha,int Tilesize,float Tilehistcliplimit,int Binnumber,CLAHECommandFlags flags)
Public Function New( _ByVal Alpha As Single, _ByVal Tilesize As Integer, _ByVal Tilehistcliplimit As Single, _ByVal Binnumber As Integer, _ByVal flags As CLAHECommandFlags _)
- (instancetype)initWithAlpha:(float)alphatilesNumber:(NSInteger)tilesNumbertileHistClipLimit:(float)tileHistClipLimitbinNumber:(NSInteger)binNumberflags:(LTCLAHECommandFlags)flags
public CLAHECommand(float alpha,int tileSize,float tileHistClipLimit,int binNumber,int flags)
public:CLAHECommand(float Alpha,int Tilesize,float Tilehistcliplimit,int Binnumber,CLAHECommandFlags flags)
Alpha
Non-negative real scalar specifying a distribution parameter.
Tilesize
Positive integer specifying the size of the tiles.
Tilehistcliplimit
A real scalar in the range [0, 1] that specifies the contrast enhancement limit. Higher numbers result in more contrast.
Binnumber
(Multiple of 2) integer in the range [2, 1024] that specifies the number of bins for the histogram used when building a contrast-enhancing transformation.
flags
Flags specifying the desired histogram shape for the image tiles.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void CLAHEConstructorExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm"));string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "CLAHERes.Tif");// Prepare the commandCLAHECommand command = new CLAHECommand(0.65f, 6, 0.08f, 6, CLAHECommandFlags.ApplyRayliehDistribution);//Apply a CLAHE filter.command.Run(image);// Save it to diskcodecs.Save(image, destFileName, RasterImageFormat.Tif, 16);}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CorePublic Sub CLAHEConstructorExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm"))' Prepare the command' Apply a CLAHE filter.Dim command As CLAHECommand = New CLAHECommand(0.65F, 6, 0.08F, 6, CLAHECommandFlags.ApplyRayliehDistribution)command.Run(leadImage)End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
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
