3 writes to ImageHeight
Microsoft.ML.ImageAnalytics (3)
VectorToImageTransform.cs (3)
518ImageHeight = item.ImageHeight ?? args.ImageHeight; 567ImageHeight = ctx.Reader.ReadInt32(); 641ImageHeight = imageHeight;
7 references to ImageHeight
Microsoft.ML.ImageAnalytics (7)
VectorToImageTransform.cs (7)
306if (vectorType.GetValueCount() != _columns[col].ImageHeight * _columns[col].ImageWidth * _columns[col].Planes) 307throw Host.ExceptSchemaMismatch(nameof(inputSchema), "input", inputColName, new VectorDataViewType(vectorType.ItemType, _columns[col].ImageHeight, _columns[col].ImageWidth, _columns[col].Planes).ToString(), vectorType.ToString()); 351int height = ex.ImageHeight; 425return columns.Select(c => new ImageDataViewType(c.ImageHeight, c.ImageWidth)).ToArray(); 568Contracts.CheckDecode(ImageHeight > 0); 678ctx.Writer.Write(ImageHeight); 754var itemType = new ImageDataViewType(colInfo.ImageHeight, colInfo.ImageWidth);