335 Star 1.5K Fork 864

MindSpore / docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
crop_to_bounding_box.md 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
俞涵 提交于 2023-01-29 16:21 . add mindquantum and modify url

Function Differences with tf.image.crop_to_bounding_box

tf.image.crop_to_bounding_box

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

For more information, see tf.image.crop_to_bounding_box.

mindspore.dataset.vision.Crop

class mindspore.dataset.vision.Crop(
    coordinates,
    size
)

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

Differences

TensorFlow: Crop at the specified position of the image. Input parameters are the height and width coordinates of the position and the height and width of the cropped image.

MindSpore: Crop at the specified position of the image. Input parameters are the coordinates of the position and the size of the crop image.

Code Example

# The following implements Crop with MindSpore.
import numpy as np
import mindspore.dataset as ds

image = np.random.random((28, 28, 3))
result = ds.vision.Crop((0, 0), (14, 14))(image)
print(result.shape)
# (14, 14, 3)

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

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

搜索帮助