17 references to ImageResizeMode
Microsoft.ML.ImageAnalytics (17)
ImageResizer.cs (7)
312ImageResizingEstimator.ResizingKind.IsoPad => ImageResizeMode.Pad, 316ImageResizingEstimator.Anchor.Top => ImageResizeMode.CropAnchorTop, 317ImageResizingEstimator.Anchor.Bottom => ImageResizeMode.CropAnchorBottom, 318ImageResizingEstimator.Anchor.Left => ImageResizeMode.CropAnchorLeft, 319ImageResizingEstimator.Anchor.Right => ImageResizeMode.CropAnchorRight, 320_ => ImageResizeMode.CropAnchorCentral 322ImageResizingEstimator.ResizingKind.Fill => ImageResizeMode.Fill,
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: