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)
527
Rgb =
Red
| Green | Blue,
528
All = Alpha |
Red
| Green | Blue
561
if ((colors & ColorBits.
Red
) != 0)
619
if (item.UseRed ?? options.UseRed) { ColorsToExtract |= ColorBits.
Red
; Planes++; }
670
if ((ColorsToExtract & ColorBits.
Red
) == ColorBits.
Red
) Planes++;
VectorToImageTransform.cs (7)
113
public 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>
492
public 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>
625
if ((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>