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)
527Rgb = Red | Green | Blue, 528All = Alpha | Red | Green | Blue 565if ((colors & ColorBits.Blue) != 0) 621if (item.UseBlue ?? options.UseBlue) { ColorsToExtract |= ColorBits.Blue; Planes++; } 672if ((ColorsToExtract & ColorBits.Blue) == ColorBits.Blue) Planes++;
VectorToImageTransform.cs (7)
119public 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> 494public 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> 629if ((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>