将GIF-encoded 图像的帧解码为 uint8 张量。
用法
tf.io.decode_gif(
contents, name=None
)
参数
-
contents
Tensor
类型为string
。 0-D。 GIF-encoded 图像。 -
name
操作的名称(可选)。
返回
-
Tensor
类型为uint8
。
不支持带有帧或透明度压缩的 GIF 图像。在 Linux 和 MacOS 系统上,通过运行以下命令将动画 GIF 从压缩转换为未压缩:
convert \\(src.gif -coalesce \\)dst.gif
此操作还支持解码 JPEG 和 PNG,尽管使用
更简洁。tf.io.decode_image
相关用法
- Python tf.io.decode_json_example用法及代码示例
- Python tf.io.decode_raw用法及代码示例
- Python tf.io.decode_proto用法及代码示例
- Python tf.io.deserialize_many_sparse用法及代码示例
- Python tf.io.gfile.GFile.close用法及代码示例
- Python tf.io.gfile.join用法及代码示例
- Python tf.io.parse_example用法及代码示例
- Python tf.io.gfile.exists用法及代码示例
- Python tf.io.serialize_tensor用法及代码示例
- Python tf.io.gfile.GFile用法及代码示例
- Python tf.io.SparseFeature用法及代码示例
- Python tf.io.gfile.copy用法及代码示例
- Python tf.io.TFRecordWriter用法及代码示例
- Python tf.io.gfile.glob用法及代码示例
- Python tf.io.RaggedFeature用法及代码示例
- Python tf.io.read_file用法及代码示例
- Python tf.io.write_graph用法及代码示例
- Python tf.io.TFRecordOptions.get_compression_type_string用法及代码示例
- Python tf.image.random_brightness用法及代码示例
- Python tf.image.pad_to_bounding_box用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.io.decode_gif。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。