#include <image_ops.h>
Function for decode_bmp, decode_gif, decode_jpeg, and decode_png.
Detects whether an image is a BMP, GIF, JPEG, or PNG, and performs the appropriate operation to convert the input bytes string into a Tensor of type dtype.
NOTE: decode_gif returns a 4-D array [num_frames, height, width, 3], as opposed to decode_bmp, decode_jpeg and decode_png, which return 3-D arrays [height, width, num_channels]. Make sure to take this into account when constructing your graph if you are intermixing GIF files with BMP, JPEG, and/or PNG files. Alternately, set the expand_animations argument of this function to False, in which case the op will return 3-dimensional tensors and will truncate animated GIF files to the first frame.
NOTE: If the first frame of an animated GIF does not occupy the entire canvas (maximum frame width x maximum frame height), then it fills the unoccupied areas (in the first frame) with zeros (black). For frames after the first frame that does not occupy the entire canvas, it uses the previous frame to fill the unoccupied areas.
Arguments:
Optional attributes (see Attrs
):
Returns:
Output
: 3-D with shape [height, width, channels]
or 4-D with shape [frame, height, width, channels]
.. Constructors and Destructors | |
---|---|
DecodeImage(const ::tensorflow::Scope & scope, ::tensorflow::Input contents) | |
DecodeImage(const ::tensorflow::Scope & scope, ::tensorflow::Input contents, const DecodeImage::Attrs & attrs) |
Public attributes | |
---|---|
image | |
operation |
Public functions | |
---|---|
node() const | ::tensorflow::Node * |
operator::tensorflow::Input() const | |
operator::tensorflow::Output() const |
Public static functions | |
---|---|
Channels(int64 x) | |
Dtype(DataType x) | |
ExpandAnimations(bool x) |
Structs | |
---|---|
tensorflow::ops::DecodeImage::Attrs | Optional attribute setters for DecodeImage. |
::tensorflow::Output image
Operation operation
DecodeImage( const ::tensorflow::Scope & scope, ::tensorflow::Input contents )
DecodeImage( const ::tensorflow::Scope & scope, ::tensorflow::Input contents, const DecodeImage::Attrs & attrs )
::tensorflow::Node * node() const
operator::tensorflow::Input() const
operator::tensorflow::Output() const
Attrs Channels( int64 x )
Attrs Dtype( DataType x )
Attrs ExpandAnimations( bool x )
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/cc/class/tensorflow/ops/decode-image