17 references to ImageResizeMode
Microsoft.ML.ImageAnalytics (17)
MLImage.cs (10)
288internal MLImage CloneWithResizing(int width, int height, ImageResizeMode mode)
294ImageResizeMode.Pad => ResizeWithPadding(width, height),
295ImageResizeMode.Fill => ResizeFull(width, height),
296>= ImageResizeMode.CropAnchorTop and <= ImageResizeMode.CropAnchorCentral => ResizeWithCrop(width, height, mode),
344private SKBitmap ResizeWithCrop(int width, int height, ImageResizeMode mode)
357case ImageResizeMode.CropAnchorTop:
360case ImageResizeMode.CropAnchorBottom:
373case ImageResizeMode.CropAnchorLeft:
376case ImageResizeMode.CropAnchorRight: