'Declaration Public Class ImGearBitonalReductionOptions
'Usage Dim instance As ImGearBitonalReductionOptions
public class ImGearBitonalReductionOptions
public __gc class ImGearBitonalReductionOptions
public ref class ImGearBitonalReductionOptions
'Declaration Public Class ImGearBitonalReductionOptions
'Usage Dim instance As ImGearBitonalReductionOptions
public class ImGearBitonalReductionOptions
public __gc class ImGearBitonalReductionOptions
public ref class ImGearBitonalReductionOptions
If you set Mode to ImGearBitonalReductionModes.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 ImGearBitonalReductionModes.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 ImGearBitonalReductionModes.AVERAGE
gives equal weight to all three pixel values.
Here are the formulas used by the three different reduction methods:
Use the Threshold option to set the threshold value for converting pixels to black or white. If the value, as calculated by one of the above reduction methods, is less than Threshold, the pixels will be set to black; if it is greater than or equal to Threshold, the pixels will be set to white.
System.Object
ImageGear.Processing.ImGearBitonalReductionOptions