17 references to ImageResizeMode
Microsoft.ML.ImageAnalytics (17)
MLImage.cs (10)
292internal MLImage CloneWithResizing(int width, int height, ImageResizeMode mode)
298ImageResizeMode.Pad => ResizeWithPadding(width, height),
299ImageResizeMode.Fill => ResizeFull(width, height),
300>= ImageResizeMode.CropAnchorTop and <= ImageResizeMode.CropAnchorCentral => ResizeWithCrop(width, height, mode),
348private SKBitmap ResizeWithCrop(int width, int height, ImageResizeMode mode)
361case ImageResizeMode.CropAnchorTop:
364case ImageResizeMode.CropAnchorBottom:
377case ImageResizeMode.CropAnchorLeft:
380case ImageResizeMode.CropAnchorRight: