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