View source on GitHub |
Decode a YUY2-encoded image to a uint8 tensor.
tfio.experimental.image.decode_yuy2(
contents, size, name=None
)
Args | |
---|---|
contents
|
A Tensor of type string . 0-D. The YUY2-encoded image.
|
size
|
A 1-D int32 Tensor of 2 elements: height, width. The size for the images. |
name
|
A name for the operation (optional). |
Returns | |
---|---|
A Tensor of type uint8 and shape of [height, width, 3] (RGB).
|