TensorFlow

API

 tf.image / extract_glimpse


Flip an image horizontally (left to right).

Used in the notebooks

Used in the tutorials

Outputs the contents of image flipped along the width dimension.

See also tf.reverse.

Usage Example:

x = [[[1.0, 2.0, 3.0],
      [4.0, 5.0, 6.0]],
    [[7.0, 8.0, 9.0],
      [10.0, 11.0, 12.0]]]
tf.image.flip_left_right(x)
<tf.Tensor: shape=(2, 2, 3), dtype=float32, numpy=
array([[[ 4.,  5.,  6.],
        [ 1.,  2.,  3.]],
       [[10., 11., 12.],
        [ 7.,  8.,  9.]]], dtype=float32)>

image 4-D Tensor of shape [batch, height, width, channels] or 3-D Tensor of shape [height, width, channels].

A tensor of the same type and shape as image.

ValueError if the shape of image not supported.

此页内容是否对您有帮助