Resize quantized images
to size
using quantized bilinear interpolation.
tf.raw_ops.QuantizedResizeBilinear(
images,
size,
min,
max,
align_corners=False,
half_pixel_centers=False,
name=None
)
Input images and output images must be quantized types.
Returns | |
---|---|
A tuple of Tensor objects (resized_images, out_min, out_max).
|
|
resized_images
|
A Tensor . Has the same type as images .
|
out_min
|
A Tensor of type float32 .
|
out_max
|
A Tensor of type float32 .
|