←Select platform

SelectDataCommand Constructor(RasterColor,int,int,int,bool)

Summary
Initializes a new SelectDataCommand class object with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Python
- (instancetype)initWithColor:(LTRasterColor*)color sourceLowBit:(NSUInteger)sourceLowBit sourceHighBit:(NSUInteger)sourceHighBit threshold:(NSUInteger)threshold combine:(BOOL)combine NS_DESIGNATED_INITIALIZER; 
public: 
SelectDataCommand(  
   RasterColor color, 
   int sourceLowBit, 
   int sourceHighBit, 
   int threshold, 
   bool combine 
) 
__init__(self,color,sourceLowBit,sourceHighBit,threshold,combine) # Overloaded constructor 

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

Run the SelectDataCommand on an image.

C#
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:\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.