public ChangeHueSaturationIntensityCommandData(
int hue,
int saturation,
int intensity,
int outerLow,
int outerHigh,
int innerLow,
int innerHigh
)
- (instancetype)initWithHue:(NSInteger)hue saturation:(NSInteger)saturation intensity:(NSInteger)intensity outerLow:(NSInteger)outerLow outerHigh:(NSInteger)outerHigh innerLow:(NSInteger)innerLow innerHigh:(NSInteger)innerHigh NS_DESIGNATED_INITIALIZER;
public ChangeHueSaturationIntensityCommandData(
int hue,
int saturation,
int intensity,
int outerLow,
int outerHigh,
int innerLow,
int innerHigh
);
public:
ChangeHueSaturationIntensityCommandData(
int hue,
int saturation,
int intensity,
int outerLow,
int outerHigh,
int innerLow,
int innerHigh
)
__init__(self,hue,saturation,intensity,outerLow,outerHigh,innerLow,innerHigh) # Overloaded constructor
hue
Angular amount to change the hue, in hundredths of degrees. Valid values range from -18000 through 18000. This value is divided internally by 100.
saturation
Percentage amount to change saturation, in tenths of percent. Valid values range from -1000 through 1000. This value is divided internally by 10.
intensity
Percentage amount to change the intensity , in tenths of percent. Valid values range from -1000 through 1000. This value is divided internally by 10.
outerLow
Specifies the start of the color range to be changed. Valid values range from -359 through 359.
outerHigh
Specifies the end of the color range to be changed. Valid values range is from -359 through 359.
innerLow
Specifies the start of the color range to be fully changed. The valid range is between the OuterLow and OuterHigh values.
innerHigh
Specifies the end of the color range to be fully changed. The valid range is between the OuterLow and OuterHigh values.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Color;
public void ChangeHueSaturationIntensityConstructorExample()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image1.jpg"));
// Prepare the command
ChangeHueSaturationIntensityCommandData[] data = new ChangeHueSaturationIntensityCommandData[1];
data[0] = new ChangeHueSaturationIntensityCommandData(18000, 0, 0, 315, 45, 345, 15);
ChangeHueSaturationIntensityCommand command = new ChangeHueSaturationIntensityCommand(0, 0, 0, data);
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:\LEADTOOLS23\Resources\Images";
}
import java.io.File;
import java.io.IOException;
import org.junit.*;
import org.junit.Test;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import static org.junit.Assert.*;
import leadtools.*;
import leadtools.codecs.*;
import leadtools.imageprocessing.color.*;
public void changeHueSaturationIntensityConstructorExample() {
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.setThrowExceptionsOnInvalidImages(true);
final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images";
RasterImage image = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "Image1.jpg"));
// Prepare the command
ChangeHueSaturationIntensityCommandData[] data = new ChangeHueSaturationIntensityCommandData[1];
data[0] = new ChangeHueSaturationIntensityCommandData(18000, 0, 0, 315, 45, 345, 15);
ChangeHueSaturationIntensityCommand command = new ChangeHueSaturationIntensityCommand(0, 0, 0, data);
command.run(image);
// Save the image
String outputFileName = combine(LEAD_VARS_IMAGES_DIR, "image1ConstructResult.jpg");
codecs.save(image, outputFileName, RasterImageFormat.JPEG, 24);
assertTrue(new File(outputFileName).exists());
System.out.println("Command run and file exported to: " + outputFileName);
}
ChangeHueSaturationIntensityCommandData Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document