←Select platform

SampleTargetCommand Constructor(RasterColor,RasterColor,SampleTargetCommandFlags)

Summary
Initializes a new SampleTargetCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Python
__init__(self,sampleColor,targetColor,flags) # Overloaded constructor 

Parameters

sampleColor
Color value that represents the sample color. The red value for red channel, green value for green channel, blue value for blue channel.

targetColor
Color value that represents the target color. The red value for red channel, green value for green channel, blue value for blue channel.

flags
Flags that indicate the channel for which to shift the color and how to remap the other values for that channel. You can use a bit wise OR ( ¦ ) to specify one flag from each group.

Example

Run the SampleTargetCommand on an image.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void SampleTargetConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")); 
 
   // Prepare the command 
   SampleTargetCommand command = new SampleTargetCommand(new RasterColor(50, 100, 150), new RasterColor(60, 90, 150), SampleTargetCommandFlags.Red | SampleTargetCommandFlags.High); 
   command.Run(image); 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.Color Assembly

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