13 references to Alpha
Microsoft.ML.ImageAnalytics (13)
ExtensionsCatalog.cs (1)
214
/// <param name="defaultAlpha">Default value for alpha color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Alpha
"/>.</param>
ImagePixelExtractor.cs (5)
528
All =
Alpha
| Red | Green | Blue
557
if ((colors & ColorBits.
Alpha
) != 0)
618
if (item.UseAlpha ?? options.UseAlpha) { ColorsToExtract |= ColorBits.
Alpha
; Planes++; }
669
if ((ColorsToExtract & ColorBits.
Alpha
) == ColorBits.
Alpha
) Planes++;
VectorToImageTransform.cs (7)
110
public bool ContainsAlpha = (ImagePixelExtractingEstimator.Defaults.Colors & ImagePixelExtractingEstimator.ColorBits.
Alpha
) > 0;
197
/// <param name="defaultAlpha">Default value for alpha color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Alpha
"/>.</param>
491
public bool Alpha => (Colors & ImagePixelExtractingEstimator.ColorBits.
Alpha
) != 0;
505
{ Colors |= ImagePixelExtractingEstimator.ColorBits.
Alpha
; Planes++; }
601
/// <param name="defaultAlpha">Default value for alpha color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Alpha
"/>.</param>
623
if ((byte)(Colors & ImagePixelExtractingEstimator.ColorBits.
Alpha
) > 0)
705
/// <param name="defaultAlpha">Default value for alpha color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Alpha
"/>.</param>