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)
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: