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)