ImageGear .NET v25.1 - Updated
Mode Field (ImGearBitonalReductionOptions)




ImageGear.Core Assembly > ImageGear.Processing Namespace > ImGearBitonalReductionOptions Class : Mode Field
Determines how the red, green, and blue color components of a pixel contribute to its brightness when compared to the threshold value.
Syntax
'Declaration
 
Public Mode As ImGearBitonalReductionModes
'Usage
 
Dim instance As ImGearBitonalReductionOptions
Dim value As ImGearBitonalReductionModes
 
value = instance.Mode
 
instance.Mode = value

Field Value

Value from ImGearBitonalReductionModes enumeration.
Remarks
If you set Mode to WEIGHTED, you may also set the values of Weight1, Weight2, and Weight3. These “weights” are used to determine how much influence the values of the red, green, or blue pixels will have on the reduction. For example, if Weight1 (red) = 255, Weight2 (green) = 0, Weight3 (blue) = 0, the whole reduction will depend on the value of the red pixels. The green and blue pixel values will have “no weight”.

Setting Mode to GRAYSCALE gives the most weight to the value of green. This optimizes for the perception of the human eye, in which blue is the hardest color to see, and therefore requires the least weight.

A Mode of AVERAGE gives equal weight to all three pixel values.

Here are the formulas used by the three different reduction methods:

.
See Also

Reference

ImGearBitonalReductionOptions Class
ImGearBitonalReductionOptions Members