336 Star 1.5K Fork 868

MindSpore / docs

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

Function Differences with tf.image.pad_to_bounding_box

View Source On Gitee

tf.image.pad_to_bounding_box

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

For more information, see tf.image.pad_to_bounding_box.

mindspore.dataset.vision.Pad

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

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

Differences

TensorFlow: Pad the borders of the image. Input parameters are the number of rows and columns to add on the top and left border, and the height and width of the desired output image. The pixel padding value is zero.

MindSpore: Pad the borders of the image. Input parameters are the number of pixels to add on each border, the pixel padding value, and the padding mode.

Code Example

# 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.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)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mindspore/docs.git
git@gitee.com:mindspore/docs.git
mindspore
docs
docs
r1.8

搜索帮助

344bd9b3 5694891 D2dac590 5694891