LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

SelectDataCommand Constructor(RasterColor,Int32,Int32,Int32,Boolean)

Show in webframe
Example 







Color used for showing the variances in the image.
Position of the start bit that will construct the mask. The position is a zero based number. This parameter accepts only positive values.
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 accepts only positive values.
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 accepts only positive values.
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 SelectDataCommand class object with explicit parameters.
Syntax
public SelectDataCommand( 
   RasterColor color,
   int sourceLowBit,
   int sourceHighBit,
   int threshold,
   bool combine
)
'Declaration
 
Public Function New( _
   ByVal color As RasterColor, _
   ByVal sourceLowBit As Integer, _
   ByVal sourceHighBit As Integer, _
   ByVal threshold As Integer, _
   ByVal combine As Boolean _
)
'Usage
 
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)
public SelectDataCommand( 
   RasterColor color,
   int sourceLowBit,
   int sourceHighBit,
   int threshold,
   bool combine
)

            

            
function SelectDataCommand( 
   color ,
   sourceLowBit ,
   sourceHighBit ,
   threshold ,
   combine 
)
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 accepts only 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 accepts only 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 accepts only 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
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Core

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
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

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";
}
function SelectDataConstructorExample()
{
   var codecs = new Leadtools.Codecs.RasterCodecs();
   codecs.throwExceptionsOnInvalidImages = true;

   // Load the image
   var srcFileName = "Assets\\Beauty16.jpg";
   var processedImage;
   return Tools.AppInstallFolder().getFileAsync(srcFileName).then(function (loadFile) {
      return codecs.loadAsync(Leadtools.LeadStreamFactory.create(loadFile));
   }).then(function (image) {
      // Prepare the command
      with (Leadtools.ImageProcessing.Core) {
         var command = new SelectDataCommand(Leadtools.RasterColorHelper.create(233, 10, 77), 2, 6, 25, true);
         command.run(image);
         processedImage = command.destinationImage;
      }
      var destFileName = "SelectDataResult.bmp";
      return Tools.AppLocalFolder().createFileAsync(destFileName);
   }).then(function (saveFile) {
      return codecs.saveAsync(processedImage, Leadtools.LeadStreamFactory.create(saveFile), Leadtools.RasterImageFormat.bmp, 24);
   });
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

      
public async Task SelectDataConstructorExample()
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;
   // Load the image
   string srcFileName = @"Assets\Beauty16.jpg";
   StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
   RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));

   // Prepare the command
   SelectDataCommand command = new SelectDataCommand(RasterColorHelper.Create(233, 10, 77), 2, 6, 25, true);
   command.Run(image);

   string destFileName = @"SelectDataResult.bmp";
   StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(destFileName);
   await codecs.SaveAsync(command.DestinationImage, LeadStreamFactory.Create(saveFile), RasterImageFormat.Bmp, 24);
}
Requirements

Target Platforms

See Also

Reference

SelectDataCommand Class
SelectDataCommand Members
Overload List

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.