public ZeroToNegativeCommand(
int shiftAmount,
int minimumInput,
int maximumInput,
int minimumOutput,
int maximumOutput
)
- (instancetype)initWithShiftAmount:(NSInteger)shiftAmount minimumInput:(NSInteger) minimumInput maximumInput:(NSInteger)maximumInput minimumOutput:(NSInteger)minimumOutput maximumOutput:(NSInteger)maximumOutput NS_DESIGNATED_INITIALIZER;
public ZeroToNegativeCommand(
int shiftAmount,
int minimumInput,
int maximumInput,
int minimumOutput,
int maximumOutput
);
public:
ZeroToNegativeCommand(
int shiftAmount,
int minimumInput,
int maximumInput,
int minimumOutput,
int maximumOutput
)
__init__(self,shiftAmount,minimumInput,maximumInput,minimumOutput,maximumOutput) # Overloaded constructor
shiftAmount
Value that is used to shift the image data to the negative side.
minimumInput
The image minimum value. This value can be obtained MinMaxValuesCommand
maximumInput
The image maximum value. This value can be obtained MinMaxValuesCommand
minimumOutput
The minimum allowed value, which means that the image data values after applying the command will not be less than this value.
maximumOutput
The maximum allowed value, which means that the image data values after applying the command will not exceed this value.
This command will apply MultiscaleEnhancementCommand on a signed image, but since MultiscaleEnhancementCommand does not support signed images, we will convert the image to unsigned image, apply the effect, and then convert it back to signed image.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;
public void ZeroToNegativeConstructorExample()
{
// 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
// Convert the image to unsigned image by shifting the negative values to become positive.
MinimumToZeroCommand MinToZCommand = new MinimumToZeroCommand();
MinToZCommand.Run(image);
// Apply multiscale enhancement
MultiscaleEnhancementCommand MultiScaleCommand = new MultiscaleEnhancementCommand(2000, 4, -1, 0, 0, MultiscaleEnhancementCommandType.Gaussian, MultiscaleEnhancementCommandFlags.EdgeEnhancement);
// Convert the image back to signed by shifting the same amount in the negative side.
ZeroToNegativeCommand command = new ZeroToNegativeCommand(MinToZCommand.ShiftAmount, -32767, 32766, 0, 65535);
command.Run(image);
}
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.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.core.*;
public void zeroToNegativeConstructorExample() {
final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images";
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.setThrowExceptionsOnInvalidImages(true);
RasterImage image = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "Beauty16.jpg"));
// Prepare the command
// Convert the image to unsigned image by shifting the negative values to become
// positive.
MinimumToZeroCommand minToZCommand = new MinimumToZeroCommand();
minToZCommand.run(image);
// Apply multiscale enhancement
MultiscaleEnhancementCommand multiScaleCommand = new MultiscaleEnhancementCommand(2000, 4, -1, 0, 0,
MultiscaleEnhancementCommandType.GAUSSIAN, MultiscaleEnhancementCommandFlags.EDGE_ENHANCEMENT.getValue());
multiScaleCommand.run(image);
// Convert the image back to signed by shifting the same amount in the negative
// side.
ZeroToNegativeCommand command = new ZeroToNegativeCommand(minToZCommand.getShiftAmount(), -32767, 32766, 0,
65535);
int change = command.run(image);
assertTrue(change != RasterImageChangedFlags.NONE);
codecs.save(image, combine(LEAD_VARS_IMAGES_DIR, "Result.jpg"), RasterImageFormat.JPEG, 24);
System.out.println("Command run and image saved to " + combine(LEAD_VARS_IMAGES_DIR, "Result.jpg"));
}
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