ImageEstimatorsCatalog Class

Definition

Collection of extension methods for TransformsCatalog to create instances of image processing transformer components.

public static class ImageEstimatorsCatalog
type ImageEstimatorsCatalog = class
Public Module ImageEstimatorsCatalog
Inheritance
ImageEstimatorsCatalog

Methods

ConvertToGrayscale(TransformsCatalog, String, String)

Create a ImageGrayscalingEstimator, which converts images in the column specified in InputColumnName to grayscale images in a new column: OutputColumnName.

ConvertToImage(TransformsCatalog, Int32, Int32, String, String, ImagePixelExtractingEstimator+ColorBits, ImagePixelExtractingEstimator+ColorsOrder, Boolean, Single, Single, Int32, Int32, Int32, Int32)

Create a VectorToImageConvertingEstimator, which creates image from the data from the column specified in inputColumnName to a new column: outputColumnName.

ExtractPixels(TransformsCatalog, String, String, ImagePixelExtractingEstimator+ColorBits, ImagePixelExtractingEstimator+ColorsOrder, Boolean, Single, Single, Boolean)

Create a ImagePixelExtractingEstimator, which extracts pixels values from the data specified in column: inputColumnName to a new column: outputColumnName.

LoadImages(TransformsCatalog, String, String, String)

Create a ImageLoadingEstimator, which loads the data from the column specified in inputColumnName as an image to a new column: outputColumnName.

LoadRawImageBytes(TransformsCatalog, String, String, String)

Create a ImageLoadingEstimator, which loads the data from the column specified in inputColumnName as an image of raw bytes to a new column: outputColumnName.

ResizeImages(TransformsCatalog, String, Int32, Int32, String, ImageResizingEstimator+ResizingKind, ImageResizingEstimator+Anchor)

Create a ImageResizingEstimator, which resize the image from the column specified in inputColumnName to a new column: outputColumnName.

Applies to