334 Star 1.5K Fork 864

MindSpore / docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
resize.md 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
luojianing 提交于 2023-07-21 15:16 . replace target=blank

Function Differences with tf.image.resize

View Source On Gitee

tf.image.resize

tf.image.resize(
    images,
    size,
    method=ResizeMethodV1.BILINEAR,
    preserve_aspect_ratio=False,
    antialias=False,
    name=None
)

For more information, see tf.image.resize.

mindspore.dataset.vision.Resize

class mindspore.dataset.vision.Resize(
    size,
    interpolation=Inter.LINEAR
)

For more information, see mindspore.dataset.vision.Resize.

Differences

TensorFlow: Resize the image to the specified size. It supports aligning the centers of the 4 corner pixels and preserving the aspect ratio.

MindSpore: Resize the image to the specified size. It will keep the aspect ratio when the input size is a single integer.

Code Example

# The following implements Resize with MindSpore.
import numpy as np
import mindspore.dataset as ds
from mindspore.dataset.vision import Inter

image = np.random.random((28, 28, 3))
result = ds.vision.Resize((14, 14), Inter.BICUBIC)(image)
print(result.shape)
# (14, 14, 3)

# The following implements resize with TensorFlow.
import tensorflow as tf
from tensorflow.image import ResizeMethod

image = tf.random.normal((28, 28, 3))
result = tf.image.resize(image, (14, 14), ResizeMethod.BICUBIC)
print(result.shape)
# (14, 14, 3)
1
https://gitee.com/mindspore/docs.git
git@gitee.com:mindspore/docs.git
mindspore
docs
docs
r2.0

搜索帮助