14 references to Red
Microsoft.ML.ImageAnalytics (14)
ExtensionsCatalog.cs (1)
215/// <param name="defaultRed">Default value for red color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.Red"/>.</param>
ImagePixelExtractor.cs (6)
527Rgb = Red | Green | Blue, 528All = Alpha | Red | Green | Blue 561if ((colors & ColorBits.Red) != 0) 619if (item.UseRed ?? options.UseRed) { ColorsToExtract |= ColorBits.Red; Planes++; } 670if ((ColorsToExtract & ColorBits.Red) == ColorBits.Red) Planes++;
VectorToImageTransform.cs (7)
113public bool ContainsRed = (ImagePixelExtractingEstimator.Defaults.Colors & ImagePixelExtractingEstimator.ColorBits.Red) > 0; 198/// <param name="defaultRed">Default value for red color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.Red"/>.</param> 492public bool Red => (Colors & ImagePixelExtractingEstimator.ColorBits.Red) != 0; 507{ Colors |= ImagePixelExtractingEstimator.ColorBits.Red; Planes++; } 602/// <param name="defaultRed">Default value for red color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.Red"/>.</param> 625if ((byte)(Colors & ImagePixelExtractingEstimator.ColorBits.Red) > 0) 706/// <param name="defaultRed">Default value for red color, would be overridden if <paramref name="colorsPresent"/> contains <see cref="ImagePixelExtractingEstimator.ColorBits.Red"/>.</param>