ApplyLutCommand Class |
Namespace: Atalasoft.Imaging.ImageProcessing.Channels
The ApplyLutCommand type exposes the following members.
Name | Description | |
---|---|---|
![]() | ApplyLutCommand() | Creates a new instance of ApplyLutCommand. |
![]() | ApplyLutCommand(Byte[]) | Creates a new instance of ApplyLutCommand specifying channel1. |
![]() | ApplyLutCommand(Int32[]) | Creates a new instance of ApplyLutCommand specifying channel1 for two byte per pixel
images. |
![]() | ApplyLutCommand(Byte[],Byte[]) | Creates a new instance of ApplyLutCommand specifying channel1 and channel2. |
![]() | ApplyLutCommand(SerializationInfo, StreamingContext) | Creates a new instance of ApplyLutCommand from serialization information. |
![]() | ApplyLutCommand(Byte[],Byte[],Byte[]) | Creates a new instance of ApplyLutCommand specifying channel1, channel2 and channel3.
|
![]() | ApplyLutCommand(Int32[],Int32[],Int32[]) | Creates a new instance of ApplyLutCommand specifying channel1, channel2 and channel3 for
two byte per pixel images. |
![]() | ApplyLutCommand(Byte[],Byte[],Byte[],Byte[]) | Creates a new instance of ApplyLutCommand specifying channel1, channel2, channel3, and
channel4. |
![]() | ApplyLutCommand(Int32[],Int32[],Int32[],Int32[]) | Creates a new instance of ApplyLutCommand specifying channel1, channel2, channel3, and
channel4 for two byte per pixel images. |
Name | Description | |
---|---|---|
![]() | ApplyToAnyPixelFormat | Reports whether or not this command will be applied to any supplied PixelFormat image (Inherited from ImageCommand.) |
![]() | AutoThread | If set to true the IThreadableCommand will automatically parallelize image processing. |
![]() | CanApplyToAnyPixelFormat | Returns true if the command can be applied to any PixelFormat. (Inherited from ImageCommand.) |
![]() | InPlaceProcessing | Indicates whether or not the command will operate on the source image alone. (Inherited from ApplyLutCommandBase.) |
![]() | Progress | Gets or sets the ProgressEventHandler delegate which can be used to view or cancel the
progress of the current process. (Inherited from ImageCommand.) |
![]() | RegionOfInterest | Gets or sets a RegionOfInterest which will only process the indicated region of the image. |
![]() | SupportedPixelFormats | Returns an array of PixelFormats supported by this command. (Inherited from ApplyLutCommandBase.) |
Name | Description | |
---|---|---|
![]() | AdjustBands | Sets the image area which will be processed and also defines the bands or chunks of the image of which each will be sent to a separate thread for processing. |
![]() | Apply | Apply the command to the given image. (Inherited from ImageCommand.) |
![]() | ApplyToImage | Obsolete.
Applies the command to the source AtalaImage.
(Inherited from ImageCommand.) |
![]() | Clone | Creates a new object that is a copy of the current instance. |
![]() | ConstructChangedSourceImage | The method is called by the default implementation of Apply. It determines if it is necessary to create a
copy of the source image in a different pixel format and if so, determines the best new pixel format and allocates
that image. (Inherited from ImageCommand.) |
![]() | ConstructFinalImage | Called by the default implementation of Apply, ConstructFinalImage constructs the image that will be used
as the destination image for the command. (Inherited from ImageCommand.) |
![]() | ConstructImageResults | Constructs the results object for this command. (Inherited from ImageCommand.) |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetChangedPixelFormat | This method is called to change the pixel format of the source image. (Inherited from ImageCommand.) |
![]() | GetChannelLut | Returns the look-up-table for a single channel. |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetObjectData | Populates a SerializationInfo with the data needed to serialize the target object. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | ImageCommandGetObjectData | Aggregates ImageCommand data into the supplied SerializationInfo object. (Inherited from ImageCommand.) |
![]() | ImplementMe |
Future use.
(Overrides ApplyLutCommandBase.ImplementMe().) |
![]() | InternalActualCommand | InternalActualCommand does the actual work of the image processing command. |
![]() | IsPixelFormatSupported | Returns a value indicating if the specified pixel format is supported. (Inherited from ImageCommand.) |
![]() | LLClearChannelLut |
Low-level implementation to clear the channel lookup table.
(Inherited from ApplyLutCommandBase.) |
![]() | LLGetChannelLut |
Returns the loop-up-table for a single channel.
(Inherited from ApplyLutCommandBase.) |
![]() | LLSetChannelLut(ChannelFlags,Byte[]) |
Sets the loop-up-table for a single channel.
(Inherited from ApplyLutCommandBase.) |
![]() | LLSetChannelLut(ChannelFlags,Int32[]) |
Low-level implementation of set channel look up table.
(Inherited from ApplyLutCommandBase.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | PerformActualCommand |
PerformActualCommand does the actual work of the image processing command.
(Overrides ApplyLutCommandBase.PerformActualCommand(AtalaImage, AtalaImage, Rectangle, ImageResults).) |
![]() | PerformSectionCommand | Performs the command on a specified section of the image. |
![]() | SelectBestAlternatePixelFormat | Choose the best pixel format to use for this command when the supplied source image's pixel format is
unacceptable. (Inherited from ImageCommand.) |
![]() | SelectPreferredPixelFormat | Chooses a pixel format that is preferred for this command. (Inherited from ImageCommand.) |
![]() | SetChannelLut(ChannelFlags,Byte[]) | Sets a lookup table for a single channel. |
![]() | SetChannelLut(ChannelFlags,Int32[]) | Sets a lookup table for a single channel. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | VerifyImage | Verify the integrity of an AtalaImage. (Inherited from ImageCommand.) |
![]() | VerifyProperties |
Verify the integrity of properties in the command before processing an image.
(Inherited from ApplyLutCommandBase.) |
// Load a 24-bit image. AtalaImage image = new AtalaImage("in.jpg"); // Create a negative LUT. byte[] lut = new byte[256]; for (int i = 0; i < 256; i++) lut[i] = (byte)(255 - i); // Apply this LUT to the Blue and Red channels. ApplyLutCommand cmd = new ApplyLutCommand(lut, null, lut); ImageResults results = cmd.Apply(image); results.Image.Save("out.jpg", new JpegEncoder(), null);
' Load a 24-bit image. Dim image As AtalaImage = New AtalaImage("in.jpg") ' Create a negative LUT. Dim lut(255) As Byte For i As Integer = 0 To 255 lut(i) = 255 - i Next ' Apply this LUT to the Blue and Red channels. Dim cmd As ApplyLutCommand = New ApplyLutCommand(lut, Nothing, lut) Dim results As ImageResults = cmd.Apply(image) results.Image.Save("out.jpg", New Atalasoft.Imaging.Codec.JpegEncoder(), Nothing)