14 references to Blue
Microsoft.ML.ImageAnalytics (14)
ExtensionsCatalog.cs (1)
217
/// <param name="defaultBlue">Default value for blue color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Blue
"/>.</param>
ImagePixelExtractor.cs (6)
527
Rgb = Red | Green |
Blue
,
528
All = Alpha | Red | Green |
Blue
565
if ((colors & ColorBits.
Blue
) != 0)
621
if (item.UseBlue ?? options.UseBlue) { ColorsToExtract |= ColorBits.
Blue
; Planes++; }
672
if ((ColorsToExtract & ColorBits.
Blue
) == ColorBits.
Blue
) Planes++;
VectorToImageTransform.cs (7)
119
public bool ContainsBlue = (ImagePixelExtractingEstimator.Defaults.Colors & ImagePixelExtractingEstimator.ColorBits.
Blue
) > 0;
200
/// <param name="defaultBlue">Default value for blue color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Blue
"/>.</param>
494
public bool Blue => (Colors & ImagePixelExtractingEstimator.ColorBits.
Blue
) != 0;
511
{ Colors |= ImagePixelExtractingEstimator.ColorBits.
Blue
; Planes++; }
604
/// <param name="defaultBlue">Default value for blue color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Blue
"/>.</param>
629
if ((byte)(Colors & ImagePixelExtractingEstimator.ColorBits.
Blue
) > 0)
708
/// <param name="defaultBlue">Default value for blue color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.
Blue
"/>.</param>