←Select platform

KaufmannRegionCommand Constructor(int,int,int,int,LeadPoint,bool,RasterRegionCombineMode)

Summary
Initializes a new KaufmannRegionCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Python

Parameters

radius
Value that indicates the size of the neighborhood used for blurring each pixel of the image.

minimumInput
Value that specifies the image's shadows to be mapped. Valid values range from 0 to 255 for 8-bit, 0 to 4095 for 12-bit and 0 to 65535 for 16-bit images.

maximumInput
Value that specifies the image's highlights to be mapped. Valid values range from 0 to 255 for 8-bit, 0 to 4095 for 12-bit and 0 to 65535 for 16-bit images.

regionThreshold
Value that specifies the values that set the stopping point for the region.

regionStart
Value that indicates whether to remove all holes from the region that's created internally.

removeHoles
Value that indicates whether to remove all holes from the region that's created internally.

combineMode
Value that represent the action to take regarding the existing image region, if one is defined.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void KaufmannRegionCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Image3.dcm")); 
 
   // Prepare the command 
   LeadPoint startPoint = new LeadPoint((image.Width / 2), (image.Height / 2)); 
 
   // apply the command in order to get the pixels count of the first region. 
   KaufmannRegionCommand KaufmannCommandInner = new KaufmannRegionCommand(); 
   KaufmannCommandInner.CombineMode = RasterRegionCombineMode.Set; 
   KaufmannCommandInner.MaximumInput = 110; 
   KaufmannCommandInner.MinimumInput = 54; 
   KaufmannCommandInner.Radius = 21; 
   KaufmannCommandInner.RegionStart = startPoint; 
   KaufmannCommandInner.RegionThreshold = 13; 
   KaufmannCommandInner.RemoveHoles = true; 
   KaufmannCommandInner.Run(image); 
 
   int firstPixelCount = KaufmannCommandInner.PixelsCount; 
 
   // apply the command once more. 
   KaufmannRegionCommand KaufmannCommandOuter = new KaufmannRegionCommand(29, 51, 229, 207, startPoint, true, RasterRegionCombineMode.Set); 
   KaufmannCommandOuter.Run(image); 
 
   int secondPixelCount = KaufmannCommandOuter.PixelsCount; 
 
   // print the ratio between the first and the second region. 
   double result = (firstPixelCount * 1.0 / secondPixelCount); 
   MessageBox.Show(result.ToString()); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.3.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.