335 Star 1.5K Fork 861

MindSpore / docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pad_to_bounding_box.md 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
宦晓玲 提交于 2023-07-21 15:28 . modify the md links in 1.7

比较与tf.image.pad_to_bounding_box的功能差异

查看源文件

tf.image.pad_to_bounding_box

tf.image.pad_to_bounding_box(
    image,
    offset_height,
    offset_width,
    target_height,
    target_width
)

更多内容详见tf.image.pad_to_bounding_box

mindspore.dataset.vision.c_transforms.Pad

class mindspore.dataset.vision.c_transforms.Pad(
    padding,
    fill_value=0,
    padding_mode=Border.CONSTANT
)

更多内容详见mindspore.dataset.vision.c_transforms.Pad

使用方式

TensorFlow:对图像各边进行填充,入参为上、左边框像素填充数和预期输出图像高、宽,像素填充值为零。

MindSpore:对图像各边进行填充,入参为各边像素填充数、填充值和填充模式。

代码示例

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

image = np.random.random((28, 28, 3))
result = ds.vision.c_transforms.Pad((2, 2, 5, 5), 0, Border.CONSTANT)(image)
print(result.shape)
# (35, 35, 3)

# The following implements pad_to_bounding_box with TensorFlow.
import tensorflow as tf

image = tf.random.normal((28, 28, 3))
result = tf.image.pad_to_bounding_box(image, 2, 2, 35, 35)
print(result.shape)
# (35, 35, 3)
1
https://gitee.com/mindspore/docs.git
git@gitee.com:mindspore/docs.git
mindspore
docs
docs
r1.7

搜索帮助

53164aa7 5694891 3bd8fe86 5694891