PictureEffectsRaw Xojo Plugin |
|
LevelsEffectRaw Class (console safe)
A class to apply levels changes to images and to generate histograms for each color channel or a combined RGB histogram.
Supports:
8 bit per channel bitmaps
16 bit per channel bitmaps
RGB color spaces
Gray color spaces
CMYK color spaces
Synchronous and asynchronous modes supported
This class supports use of multiple CPU cores.
The control mechanism to draw the histogram and to control it is included with PictureEffects in form of a Xojo closed source class.The effect allows for mutating levels of in - channels and out channels. Changing the in channels discards levels from the image, while changing the out channel stretches and converts the input to different levels range. So for example a image could discard levels bellow 100 on the red channel but then let the remaining levels convert and stretch to levels 50 to 220.
MapEffectRaw
LevelsEffectRaw
class LevelsEffectRaw implements
IRawBitmapProcessor
IRawBitmapProcessorAsync
Constructors
Properties
BlueHistogram (console safe) | Returns the histogram for the blue channel of image passed into last call to the CreateHistograms method. |
GreenHistogram (console safe) | Returns the histogram for the green channel of image passed into last call to the CreateHistograms method. |
InRangeBlue (console safe) | Returns the In range for the blue channel. |
InRangeGreen (console safe) | Returns the In range for the green channel. |
InRangeRed (console safe) | Returns the In range for the red channel. |
Mask (console safe) | Sets mask for the operation if masking is wanted. |
OutRangeBlue (console safe) | Returns the out range for the blue channel. |
OutRangeGreen (console safe) | Returns the out range for the green channel. |
OutRangeRed (console safe) | Returns the out range for the red channel. |
RedHistogram (console safe) | Returns the histogram for the red channel of image passed into last call to the CreateHistograms method. |
RGBHistogram (console safe) | Returns the histogram for the combined RGB channels of image passed into last call to the CreateHistograms method. |
Mask (Inherited) (console safe) | Sets mask for the operation if masking is wanted. |
AsyncCompleted (Inherited) (console safe) | Returns true if asynchronous execution has completed, else false. |
AsyncResult (Inherited) (console safe) | Returns the result bitmap of asynchronous execution. |
Canceled (Inherited) (console safe) | If this one returns true then the effects execution was canceled by a Progress handler. |
CPUCoreCount (Inherited) (console safe) | Returns number of detected CPU cores on the running machine. |
ErrorCode (Inherited) (console safe) | Returns error code after applying the effect. This value is a Constant defined in the PictureEffectsRawError module. |
MultiprocessingHint (Inherited) (console safe) | Use this property to fine tune CPU usage for this algorithm. By default this property is set to zero (Automatic). This property accepts all constants that are defined in this class. |
ProgressHandler (Inherited) (console safe) | Use this property to use a progress class to get progress feedback from this function. This class must be a class that Implements the IProgressHandler Interface which is defined in this plugin. |
Methods
Apply (console safe) | Applies the effect on a RawBitmap image with parameters that have been set on the class instance. |
Apply (Inherited) (console safe) | Applies the effect on a RawBitmap image with parameters that have been set on the class instance, taking additionally the mapping channels as parameters. |
ApplyAsync (console safe) | Applies the effect asynchronously on a RawBitmap image with parameters that have been set on the class instance. |
ApplyInPlace (console safe) | Applies the effect on a RawBitmap image with parameters that have been set on the class instance, and the RawBitmap passed in will also get the result image. |
ApplyInPlace (Inherited) (console safe) | Applies the effect on a RawBitmap image with parameters that have been set on the class instance, and the RawBitmap passed in will also get the result image. |
ApplyInPlaceAsync (console safe) | Applies the effect asynchronously on a RawBitmap image with parameters that have been set on the class instance, and the RawBitmap passed in will also get the result image. |
Cancel (Inherited) (console safe) | Cancels processing and waits for threads to come to full stop when in asynchronous execution. |
CreateHistograms (console safe) | Creates histograms (Red, Green, Blue and combined RBG) for a given image. |
SetMaps (Inherited) (console safe) | Sets the mapping parameters |
Constants
CPU_USE_MACHINE_CORE_COUNT = -1 (Inherited) | Uses exactly the number of available CPU cores in the machine. (Available here means on-line CPU cores, some laptops can put CPU cores off line in low battery situations) |
CPU_USE_AUTOMATIC = 0 (Inherited) | Takes into account number of available CPU cores on the Machine and also tries to select the fastest way based on developer rating for each algorithm and picture size. (In simple algorithms then the fastest path is sometimes 2 or 3 CPU cores and not 4 CPU cores because of the overhead of managing multiple cores). In more complex algorithms then 3 or 4 cores are almost always faster than 2 cores. |
CPU_USE_1_CORE = 1 (Inherited) | Uses one CPU core. |
CPU_USE_2_CORES = 2 (Inherited) | Uses two CPU cores.
This setting will also work on machines with less than two CPU cores, but it will be slower or best case same speed as using the correct setting for such machine. |
CPU_USE_3_CORES = 3 (Inherited) | Uses three CPU cores.
This setting will also work on machines with less than three CPU cores, but it will be slower or best case same speed as using the correct setting for such machine. |
CPU_USE_4_CORES = 4 (Inherited) | Uses four CPU cores.
This setting will also work on machines with less than four CPU cores, but it will be slower or best case same speed as using the correct setting for such machine. |
CPU_USE_5_CORES = 5 (Inherited) | Uses five CPU cores.
This setting will also work on machines with less than five CPU cores, but it will be slower or best case same speed as using the correct setting for such machine. |
CPU_USE_6_CORES = 6 (Inherited) | Uses six CPU cores.
This setting will also work on machines with less than six CPU cores, but it will be slower or best case same speed as using the correct setting for such machine. |
CPU_USE_7_CORES = 7 (Inherited) | Uses seven CPU cores.
This setting will also work on machines with less than seven CPU cores, but it will be slower or best case same speed as using the correct setting for such machine. |
CPU_USE_8_CORES = 8 (Inherited) | Uses eight CPU cores.
This setting will also work on machines with less than eight CPU cores, but it will be slower or best case same speed as using the correct setting for such machine. |
Supported Platforms:
MacOS X CarbonMacOS X Cocoa 32 bitMacOS X Cocoa 64 bitWindows 32 bitWindows 64 bitLinux 32 bitLinux 64 bitLinux ARM