335 Star 1.5K Fork 862

MindSpore / docs

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
random_shift.md 2.11 KB
Copy Edit Raw Blame History
俞涵 authored 2023-01-29 16:21 . add mindquantum and modify url

Function Differences with tf.keras.preprocessing.image.random_shift

tf.keras.preprocessing.image.random_shift

tf.keras.preprocessing.image.random_shift(
    x,
    wrg,
    hrg,
    row_axis=1,
    col_axis=2,
    channel_axis=0,
    fill_mode='nearest',
    cval=0.0,
    interpolation_order=1
)

For more information, see tf.keras.preprocessing.image.random_shift.

mindspore.dataset.vision.RandomAffine

class mindspore.dataset.vision.RandomAffine(
    degrees,
    translate=None,
    scale=None,
    shear=None,
    resample=Inter.NEAREST,
    fill_value=0
)

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

Differences

TensorFlow: Randomly shift the image. The index of axis for rows, columns and channels can be specified by input parameters.

MindSpore: Perform random affine transformation on the image, including random shift. The image needs to be arranged in the order of rows, columns, and channels.

Code Example

# The following implements RandomAffine 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.RandomAffine(0, translate=(0.2, 0.3), resample=Inter.NEAREST)(image)
print(result.shape)
# (28, 28, 3)

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

image = np.random.random((28, 28, 3))
result = tf.keras.preprocessing.image.random_shift(
    image, wrg=0.2, hrg=0.3, row_axis=0, col_axis=1, channel_axis=2, fill_mode='nearest')
print(result.shape)
# (28, 28, 3)
1
https://gitee.com/mindspore/docs.git
git@gitee.com:mindspore/docs.git
mindspore
docs
docs
r2.0.0-alpha

Search

53164aa7 5694891 3bd8fe86 5694891