LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
SelectDataCommand Constructor(RasterColor,Int32,Int32,Int32,Boolean)
See Also  Example
Leadtools.ImageProcessing.Core Namespace > SelectDataCommand Class > SelectDataCommand Constructor : SelectDataCommand Constructor(RasterColor,Int32,Int32,Int32,Boolean)



color
Color used for showing the variances in the image.
sourceLowBit
Position of the start bit that will construct the mask. The position is a zero based number. This parameter only accepts positive values.
sourceHighBit
Position of the end bit that will construct the mask. This is inclusive (it is part of the mask). The value should not be less than sourceLowBit. You can also pass -1, which is interpreted as "highest bit" (SourceImage->BitsPerPixel - 1). This parameter only accepts positive values.
threshold
Value that indicates the threshold for showing the image variances. If the mask value is greater or equal to the threshold value then the pixel will be colored using Color. See Combine for more details. This parameter only accepts positive values.
combine
A flag which tells how to color the output pixels:
  1. Pixels with values greater than or equal to the threshold value are set to the value in the color parameter(if combine is set to false) or AND-ed with color (if combine is true). In this case, the source pixel is first converted to grayscale 24-bit and then AND-ed with color.
  2. Pixels with values less than the threshold value are set to black (if combine is set to false) or The RGB pixel value will be the same as the high byte source pixel value (if combine is true). That is R = G = B = High byte values of the source pixel.
Initializes a new Leadtools.ImageProcessing.Core.SelectDataCommand class object with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal color As RasterColor, _
   ByVal sourceLowBit As Integer, _
   ByVal sourceHighBit As Integer, _
   ByVal threshold As Integer, _
   ByVal combine As Boolean _
)
Visual Basic (Usage)Copy Code
Dim color As RasterColor
Dim sourceLowBit As Integer
Dim sourceHighBit As Integer
Dim threshold As Integer
Dim combine As Boolean
 
Dim instance As New SelectDataCommand(color, sourceLowBit, sourceHighBit, threshold, combine)
C# 
public SelectDataCommand( 
   RasterColor color,
   int sourceLowBit,
   int sourceHighBit,
   int threshold,
   bool combine
)
C++/CLI 
public:
SelectDataCommand( 
   RasterColor color,
   int sourceLowBit,
   int sourceHighBit,
   int threshold,
   bool combine
)

Parameters

color
Color used for showing the variances in the image.
sourceLowBit
Position of the start bit that will construct the mask. The position is a zero based number. This parameter only accepts positive values.
sourceHighBit
Position of the end bit that will construct the mask. This is inclusive (it is part of the mask). The value should not be less than sourceLowBit. You can also pass -1, which is interpreted as "highest bit" (SourceImage->BitsPerPixel - 1). This parameter only accepts positive values.
threshold
Value that indicates the threshold for showing the image variances. If the mask value is greater or equal to the threshold value then the pixel will be colored using Color. See Combine for more details. This parameter only accepts positive values.
combine
A flag which tells how to color the output pixels:
  1. Pixels with values greater than or equal to the threshold value are set to the value in the color parameter(if combine is set to false) or AND-ed with color (if combine is true). In this case, the source pixel is first converted to grayscale 24-bit and then AND-ed with color.
  2. Pixels with values less than the threshold value are set to black (if combine is set to false) or The RGB pixel value will be the same as the high byte source pixel value (if combine is true). That is R = G = B = High byte values of the source pixel.

Example

Run the Leadtools.ImageProcessing.Core.SelectDataCommand on an image.

Visual BasicCopy Code
Public Sub SelectDataConstructorExample()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\Beauty16.jpg"))

   ' Prepare the command
   Dim command As SelectDataCommand = New SelectDataCommand(New RasterColor(233, 10, 77), 2, 6, 25, True)
   command.Run(leadImage)
   codecs.Save(command.DestinationImage, Path.Combine(LEAD_VARS.ImagesDir, "SelectDataResult.bmp"), RasterImageFormat.Bmp, 24)

End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
C#Copy Code
public void SelectDataConstructorExample()
   {
      // Load an image
      RasterCodecs codecs = new RasterCodecs();
      codecs.ThrowExceptionsOnInvalidImages = true;

      RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Beauty16.jpg"));

      // Prepare the command
      SelectDataCommand command = new SelectDataCommand(new RasterColor(233, 10, 77), 2, 6, 25, true);
      command.Run(image);
      codecs.Save(command.DestinationImage, Path.Combine(LEAD_VARS.ImagesDir, "SelectDataResult.Bmp"), RasterImageFormat.Bmp, 24);

   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
SilverlightCSharpCopy Code
SilverlightVBCopy Code

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also