tf.io.decode_gif | TensorFlow v2.16.1 (original) (raw)
tf.io.decode_gif
Stay organized with collections Save and categorize content based on your preferences.
Decode the frame(s) of a GIF-encoded image to a uint8 tensor.
View aliases
Main aliases
Compat aliases for migration
SeeMigration guide for more details.
tf.compat.v1.image.decode_gif, tf.compat.v1.io.decode_gif
tf.io.decode_gif(
contents: Annotated[Any, _atypes.String], name=None
) -> Annotated[Any, _atypes.UInt8]
Used in the notebooks
Used in the tutorials |
---|
MoveNet: Ultra fast and accurate pose detection model. MoViNet for streaming action recognition |
GIF images with frame or transparency compression are not supported. On Linux and MacOS systems, convert animated GIFs from compressed to uncompressed by running:
convert \\(src.gif -coalesce \\)dst.gif
This op also supports decoding JPEGs and PNGs, though it is cleaner to usetf.io.decode_image.
Args | |
---|---|
contents | A Tensor of type string. 0-D. The GIF-encoded image. |
name | A name for the operation (optional). |
Returns |
---|
A Tensor of type uint8. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-04-26 UTC.