335 Star 1.5K Fork 865

MindSpore / docs

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

Function Differences with tf.image.rgb_to_grayscale

View Source On Gitee

tf.image.rgb_to_grayscale

tf.image.rgb_to_grayscale(
    images,
    name=None
)

For more information, see tf.image.rgb_to_grayscale.

mindspore.dataset.vision.ConvertColor

class mindspore.dataset.vision.ConvertColor(
    convert_mode
)

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

Differences

TensorFlow: Convert the image from RGB to grayscale.

MindSpore: Convert the color space of the image, including conversion from RGB to grayscale.

Code Example

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

image = np.random.random((28, 28, 3)).astype(np.float32)
result = ds.vision.ConvertColor(ConvertMode.COLOR_RGB2GRAY)(image)
print(result.shape)
# (28, 28)

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

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

搜索帮助

53164aa7 5694891 3bd8fe86 5694891