8 instantiations of ImageLoadingEstimator
Microsoft.ML.ImageAnalytics (2)
ExtensionsCatalog.cs (2)
72=> new ImageLoadingEstimator(CatalogUtils.GetEnvironment(catalog), imageFolder, true, new[] { (outputColumnName, inputColumnName ?? outputColumnName) }); 91=> new ImageLoadingEstimator(CatalogUtils.GetEnvironment(catalog), imageFolder, false, new[] { (outputColumnName, inputColumnName ?? outputColumnName) });
Microsoft.ML.TensorFlow.Tests (3)
TensorflowTests.cs (3)
149var pipeEstimator = new ImageLoadingEstimator(_mlContext, imageFolder, ("ImageReal", "ImagePath")) 1020var pipeEstimator = new ImageLoadingEstimator(_mlContext, imageFolder, 1159var pipeEstimator = new ImageLoadingEstimator(_mlContext, imageFolder, ("ImageReal", "ImagePath"))
Microsoft.ML.Tests (3)
ImagesTests.cs (3)
50var pipe = new ImageLoadingEstimator(env, imageFolder, ("ImageReal", "ImagePath")) 74var pipe = new ImageLoadingEstimator(env, imageFolder, ("ImageReal", "ImagePath")) 1021var pipe = new ImageLoadingEstimator(env, imageFolder, ("ImageReal", "ImagePath"))
7 references to ImageLoadingEstimator
Microsoft.ML.ImageAnalytics (6)
ExtensionsCatalog.cs (4)
56/// Create a <see cref="ImageLoadingEstimator"/>, which loads the data from the column specified in <paramref name="inputColumnName"/> 71public static ImageLoadingEstimator LoadImages(this TransformsCatalog catalog, string outputColumnName, string imageFolder, string inputColumnName = null) 75/// Create a <see cref="ImageLoadingEstimator"/>, which loads the data from the column specified in <paramref name="inputColumnName"/> 90public static ImageLoadingEstimator LoadRawImageBytes(this TransformsCatalog catalog, string outputColumnName, string imageFolder, string inputColumnName = null)
ImageLoader.cs (2)
34/// <see cref="ITransformer"/> resulting from fitting a <see cref="ImageLoadingEstimator"/>. 428: base(Contracts.CheckRef(env, nameof(env)).Register(nameof(ImageLoadingEstimator)), transformer)
Microsoft.ML.Samples (1)
Dynamic\Transforms\ImageAnalytics\LoadImages.cs (1)
44var pipeline = mlContext.Transforms.LoadImages("ImageObject",