tf.keras.layers.Resizing
Stay organized with collections
Save and categorize content based on your preferences.
A preprocessing layer which resizes images.
Inherits From: Layer
, Module
tf.keras.layers.Resizing(
height,
width,
interpolation='bilinear',
crop_to_aspect_ratio=False,
**kwargs
)
This layer resizes an image input to a target height and width. The input
should be a 4D (batched) or 3D (unbatched) tensor in "channels_last"
format. Input pixel values can be of any range
(e.g. [0., 1.)
or [0, 255]
) and of integer or floating point dtype.
By default, the layer will output floats.
This layer can be called on tf.RaggedTensor batches of input images of
distinct sizes, and will resize the outputs to dense tensors of uniform
size.
For an overview and full list of preprocessing layers, see the preprocessing
guide.
Args |
height
|
Integer, the height of the output shape.
|
width
|
Integer, the width of the output shape.
|
interpolation
|
String, the interpolation method.
Supports "bilinear" , "nearest" , "bicubic" , "area" ,
"lanczos3" , "lanczos5" , "gaussian" , "mitchellcubic" .
Defaults to "bilinear" .
|
crop_to_aspect_ratio
|
If True, resize the images without aspect
ratio distortion. When the original aspect ratio differs
from the target aspect ratio, the output image will be
cropped so as to return the
largest possible window in the image (of size (height, width) )
that matches the target aspect ratio. By default
(crop_to_aspect_ratio=False ), aspect ratio may not be preserved.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2023-10-06 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[],[]]