TensorFlow函数教程:tf.io.decode_bmp
2019-02-22 16:11 更新
tf.io.decode_bmp函数
别名:
- tf.image.decode_bmp
- tf.io.decode_bmp
tf.io.decode_bmp(
contents,
channels=0,
name=None
)
将BMP编码图像的第一帧解码为uint8张量。
将BMP编码图像的第一帧解码为uint8张量。
参数channels表示解码图像的所需数量的颜色通道。
可接受的值是:
- 0:使用BMP编码图像中的通道数。
- 3:输出RGB图像。
- 4:输出RGBA图像。
参数:
- contents:string类型的0-d Tensor。BMP编码的图像。
- channels:可选的int。默认为0。
- name:操作的名称(可选)。
返回:
uint8类型的Tensor。