50 references to Defaults
Microsoft.ML.ImageAnalytics (50)
ExtensionsCatalog.cs (8)
119ImagePixelExtractingEstimator.ColorBits colorsToExtract = ImagePixelExtractingEstimator.Defaults.Colors, 120ImagePixelExtractingEstimator.ColorsOrder orderOfExtraction = ImagePixelExtractingEstimator.Defaults.Order, 122float offsetImage = ImagePixelExtractingEstimator.Defaults.Offset, 123float scaleImage = ImagePixelExtractingEstimator.Defaults.Scale, 124bool outputAsFloatArray = ImagePixelExtractingEstimator.Defaults.Convert) 225ImagePixelExtractingEstimator.ColorBits colorsPresent = ImagePixelExtractingEstimator.Defaults.Colors, 226ImagePixelExtractingEstimator.ColorsOrder orderOfColors = ImagePixelExtractingEstimator.Defaults.Order, 227bool interleavedColors = ImagePixelExtractingEstimator.Defaults.Interleave,
ImagePixelExtractor.cs (27)
108public ImagePixelExtractingEstimator.ColorsOrder Order = ImagePixelExtractingEstimator.Defaults.Order; 111public bool Interleave = ImagePixelExtractingEstimator.Defaults.Interleave; 114public bool Convert = ImagePixelExtractingEstimator.Defaults.Convert; 166ImagePixelExtractingEstimator.ColorBits colorsToExtract = ImagePixelExtractingEstimator.Defaults.Colors, 167ImagePixelExtractingEstimator.ColorsOrder orderOfExtraction = ImagePixelExtractingEstimator.Defaults.Order, 168bool interleavePixelColors = ImagePixelExtractingEstimator.Defaults.Interleave, 169float offsetImage = ImagePixelExtractingEstimator.Defaults.Offset, 170float scaleImage = ImagePixelExtractingEstimator.Defaults.Scale, 171bool outputAsFloatArray = ImagePixelExtractingEstimator.Defaults.Convert) 630OffsetImage = Defaults.Offset; 631ScaleImage = Defaults.Scale; 635OffsetImage = item.Offset ?? options.Offset ?? Defaults.Offset; 636ScaleImage = item.Scale ?? options.Scale ?? Defaults.Scale; 656ColorBits colorsToExtract = Defaults.Colors, 657ColorsOrder orderOfExtraction = Defaults.Order, 658bool interleavePixelColors = Defaults.Interleave, 659float offsetImage = Defaults.Offset, 660float scaleImage = Defaults.Scale, 661bool outputAsFloatArray = Defaults.Convert) 680OffsetImage = Defaults.Offset; 681ScaleImage = Defaults.Scale; 784ColorBits colorsToExtract = Defaults.Colors, 785ColorsOrder orderOfExtraction = Defaults.Order, 786bool interleavePixelColors = Defaults.Interleave, 787float offsetImage = Defaults.Offset, 788float scaleImage = Defaults.Scale, 789bool outputAsFloatArray = Defaults.Convert)
VectorToImageTransform.cs (15)
110public bool ContainsAlpha = (ImagePixelExtractingEstimator.Defaults.Colors & ImagePixelExtractingEstimator.ColorBits.Alpha) > 0; 113public bool ContainsRed = (ImagePixelExtractingEstimator.Defaults.Colors & ImagePixelExtractingEstimator.ColorBits.Red) > 0; 116public bool ContainsGreen = (ImagePixelExtractingEstimator.Defaults.Colors & ImagePixelExtractingEstimator.ColorBits.Green) > 0; 119public bool ContainsBlue = (ImagePixelExtractingEstimator.Defaults.Colors & ImagePixelExtractingEstimator.ColorBits.Blue) > 0; 122public ImagePixelExtractingEstimator.ColorsOrder Order = ImagePixelExtractingEstimator.Defaults.Order; 125public bool Interleave = ImagePixelExtractingEstimator.Defaults.Interleave; 204ImagePixelExtractingEstimator.ColorBits colorsPresent = ImagePixelExtractingEstimator.Defaults.Colors, 205ImagePixelExtractingEstimator.ColorsOrder orderOfColors = ImagePixelExtractingEstimator.Defaults.Order, 206bool interleavedColors = ImagePixelExtractingEstimator.Defaults.Interleave, 608ImagePixelExtractingEstimator.ColorBits colorsPresent = ImagePixelExtractingEstimator.Defaults.Colors, 609ImagePixelExtractingEstimator.ColorsOrder orderOfColors = ImagePixelExtractingEstimator.Defaults.Order, 610bool interleavedColors = ImagePixelExtractingEstimator.Defaults.Interleave, 715ImagePixelExtractingEstimator.ColorBits colorsPresent = ImagePixelExtractingEstimator.Defaults.Colors, 716ImagePixelExtractingEstimator.ColorsOrder orderOfColors = ImagePixelExtractingEstimator.Defaults.Order, 717bool interleavedColors = ImagePixelExtractingEstimator.Defaults.Interleave,