Returns statistical information about the image.
public class StatisticsInformationCommand : RasterCommand Public Class StatisticsInformationCommandInherits Leadtools.Imageprocessing.Leadtools.ImageProcessing.RasterCommandImplements Leadtools.Imageprocessing.Leadtools.ImageProcessing.IRasterCommand
public sealed class StatisticsInformationCommand : Leadtools.Imageprocessing.Leadtools.ImageProcessing.IRasterCommand @interface LTStatisticsInformationCommand : LTRasterCommand public class StatisticsInformationCommand extends RasterCommand function Leadtools.ImageProcessing.Effects.StatisticsInformationCommand() public ref class StatisticsInformationCommand : public Leadtools.Imageprocessing.Leadtools.ImageProcessing.RasterCommand, Leadtools.Imageprocessing.Leadtools.ImageProcessing.IRasterCommand Run the StatisticsInformationCommand on an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Effects;public void StatisticsInformationCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"));// Prepare the commandStatisticsInformationCommand command = new StatisticsInformationCommand();command.Channel = RasterColorChannel.Master;command.Start = 0;command.End = 255;//Get statistical image information.command.Run(image);MessageBox.Show("Minimum = " + command.Minimum + "\n" +"Maximum = " + command.Maximum + "\n" +"Mean = " + command.Mean + "\n" +"Median = " + command.Median + "\n" +"Percent = " + command.Percent + "\n" +"PixelCount = " + command.PixelCount + "\n" +"StandardDeviation = " + command.StandardDeviation + "\n" +"TotalPixelCount = " + command.TotalPixelCount);}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.ImageProcessingImports Leadtools.CodecsImports Leadtools.ImageProcessing.EffectsLeadtools.Examples.Support.SetLicense()Public Sub StatisticsInformationCommandExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"))' Prepare the commandDim command As StatisticsInformationCommand = New StatisticsInformationCommandcommand.Channel = RasterColorChannel.Mastercommand.Start = 0command.End = 255'Get statistical image information.command.Run(leadImage)MessageBox.Show("Minimum = " + command.Minimum.ToString + Chr(13) +"Maximum = " + command.Maximum.ToString + Chr(13) +"Mean = " + command.Mean.ToString + Chr(13) +"Median = " + command.Median.ToString + Chr(13) +"Percent = " + command.Percent.ToString + Chr(13) +"PixelCount = " + command.PixelCount.ToString + Chr(13) +"StandardDeviation = " + command.StandardDeviation.ToString + Chr(13) +"TotalPixelCount = " + command.TotalPixelCount.ToString)End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Effects;using Leadtools.Examples;public void StatisticsInformationCommandExample(RasterImage image){// Prepare the commandStatisticsInformationCommand command = new StatisticsInformationCommand();command.Channel = RasterColorChannel.Master;command.Start = 0;command.End = 255;//Get statistical image information.command.Run(image);Debug.WriteLine("Minimum = " + command.Minimum + "\n" +"Maximum = " + command.Maximum + "\n" +"Mean = " + command.Mean + "\n" +"Median = " + command.Median + "\n" +"Percent = " + command.Percent + "\n" +"PixelCount = " + command.PixelCount + "\n" +"StandardDeviation = " + command.StandardDeviation + "\n" +"TotalPixelCount = " + command.TotalPixelCount);}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.EffectsPublic Sub StatisticsInformationCommandExample(ByVal image As RasterImage)' Prepare the commandDim command As StatisticsInformationCommand = New StatisticsInformationCommand()command.Channel = RasterColorChannel.Mastercommand.Start = 0command.End = 255'Get statistical image information.command.Run(image)Debug.WriteLine("Minimum = " & command.Minimum + Constants.vbLf & "Maximum = " & command.Maximum + Constants.vbLf & "Mean = " &command.Mean + Constants.vbLf & "Median = " & command.Median + Constants.vbLf & "Percent = " & command.Percent + Constants.vbLf &"PixelCount = " & command.PixelCount + Constants.vbLf & "StandardDeviation = " & command.StandardDeviation + Constants.vbLf &"TotalPixelCount = " & command.TotalPixelCount)End Sub
StatisticsInformationCommand Members
Leadtools.ImageProcessing.Effects Namespace
Color Halftone and Halftone Images
Leadtools.ImageProcessing.Color.ConvertToColoredGrayCommand
Leadtools.ImageProcessing.GrayscaleCommand
Leadtools.ImageProcessing.Color.GrayScaleExtendedCommand
Leadtools.ImageProcessing.SpecialEffects.ShadowCommand
Leadtools.ImageProcessing.Color.ChangeHueSaturationIntensityCommand
Leadtools.ImageProcessing.Color.ColorReplaceCommand
Leadtools.ImageProcessing.Color.ColorThresholdCommand
Leadtools.ImageProcessing.Core.DiscreteFourierTransformCommand
DirectionEdgeStatisticalCommand Class
Leadtools.ImageProcessing.Core.FastFourierTransformCommand
Leadtools.ImageProcessing.Core.FrequencyFilterCommand
Leadtools.ImageProcessing.Core.FrequencyFilterMaskCommand
Leadtools.ImageProcessing.Core.FourierTransformDisplayCommand
ObjectInformationCommand Class
RegionContourPointsCommand Class
GetRegionPerimeterLength Method
Leadtools.ImageProcessing.Color.MathematicalFunctionCommand
Leadtools.ImageProcessing.SpecialEffects.RevEffectCommand
Leadtools.ImageProcessing.Color.SegmentCommand
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
