TensorFlow函数:tf.image.extract_jpeg_shape
2018-05-31 10:30 更新
tf.image.extract_jpeg_shape函数
tf.image.extract_jpeg_shape(
contents,
output_type=tf.int32,
name=None
)
提取JPEG编码图像的形状信息.
这个操作只会解析图像头,所以它比DecodeJpeg快得多.
参数:
- contents:string类型的Tensor,0维,JPEG编码的图像.
- output_type:可选的tf.DType,来自:tf.int32, tf.int64;默认为tf.int32.(可选)操作的输出类型(int32或int64),默认为int32.
- name:操作的名称(可选).
返回:
函数返回output_type类型的Tensor.