Gets the minimum and maximum intensity values present in a 12 or 16-bit grayscale or a 48 or 64-bit color image. This class is available in the Medical Toolkits.
public class MinMaxValuesCommand : RasterCommand Public Class MinMaxValuesCommandInherits RasterCommand
@interface LTMinMaxValuesCommand : LTRasterCommand public class MinMaxValuesCommand extends RasterCommand public ref class MinMaxValuesCommand : public RasterCommand
For more information, refer to Introduction to Image Processing With LEADTOOLS. For more information, refer to Grayscale Images.
Run the MinMaxValuesCommand on an image and gets the minimum and maximum pixel values for an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void MinMaxValuesCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Beauty16.jpg"));// Prepare the commandMinMaxValuesCommand command = new MinMaxValuesCommand();int MinimumValue = 0; //the minimum value.int MaximumValue = 0; //the maximum value.//Get min/max values.command.Run(image);MinimumValue = command.MinimumValue;MaximumValue = command.MaximumValue;MessageBox.Show("The Minimum Value is : " + MinimumValue.ToString() + ", The Maximum Value is : " + MaximumValue.ToString());}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CorePublic Sub MinMaxValuesCommandExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\Beauty16.jpg"))' Prepare the commandDim command As MinMaxValuesCommand = New MinMaxValuesCommandDim MinimumValue As Integer 'the minimum value.Dim MaximumValue As Integer 'the maximum value.MinimumValue = 0MaximumValue = 0'Get min/max values.command.Run(leadImage)MinimumValue = command.MinimumValueMaximumValue = command.MaximumValueMessageBox.Show("The Minimum Value is : " + MinimumValue.ToString() + ", The Maximum Value is : " + MaximumValue.ToString())End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
c#[Silverlight C# Example]using Leadtools;using Leadtools.Examples;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void MinMaxValuesCommandExample(RasterImage image){// Prepare the commandMinMaxValuesCommand command = new MinMaxValuesCommand();int MinimumValue = 0; //the minimum value.int MaximumValue = 0; //the maximum value.//Get min/max values.command.Run(image);MinimumValue = command.MinimumValue;MaximumValue = command.MaximumValue;Debug.WriteLine("The Minuimum Value is : " + MinimumValue.ToString() + ", The Maximum Value is : " + MaximumValue.ToString());image.Dispose();}vb[Silverlight VB Example]Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CorePublic Sub MinMaxValuesCommandExample(ByVal image As RasterImage)' Prepare the commandDim command As MinMaxValuesCommand = New MinMaxValuesCommand()Dim MinimumValue As Integer = 0 'the minimum value.Dim MaximumValue As Integer = 0 'the maximum value.'Get min/max values.command.Run(image)MinimumValue = command.MinimumValueMaximumValue = command.MaximumValueDebug.WriteLine("The Minuimum Value is : " & MinimumValue.ToString() & ", The Maximum Value is : " & MaximumValue.ToString())image.Dispose()End Sub
Leadtools.ImageProcessing.Core Namespace
Introduction to Image Processing With LEADTOOLS
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
