Resize `images` to `size` using bicubic interpolation.
Input images can be of different types but output images are always float.
Nested Classes
class | ResizeBicubic.Options | Optional attributes for ResizeBicubic
|
Constants
String | OP_NAME | The name of this op, as known by TensorFlow core engine |
Public Methods
static ResizeBicubic.Options |
alignCorners(Boolean alignCorners)
|
Output<TFloat32> |
asOutput()
Returns the symbolic handle of the tensor.
|
static ResizeBicubic | |
static ResizeBicubic.Options |
halfPixelCenters(Boolean halfPixelCenters)
|
Output<TFloat32> |
resizedImages()
4-D with shape
`[batch, new_height, new_width, channels]`.
|
Inherited Methods
Constants
public static final String OP_NAME
The name of this op, as known by TensorFlow core engine
Public Methods
public static ResizeBicubic.Options alignCorners (Boolean alignCorners)
Parameters
alignCorners | If true, the centers of the 4 corner pixels of the input and output tensors are aligned, preserving the values at the corner pixels. Defaults to false. |
---|
public Output<TFloat32> asOutput ()
Returns the symbolic handle of the tensor.
Inputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
public static ResizeBicubic create (Scope scope, Operand<? extends TNumber> images, Operand<TInt32> size, Options... options)
Factory method to create a class wrapping a new ResizeBicubic operation.
Parameters
scope | current scope |
---|---|
images | 4-D with shape `[batch, height, width, channels]`. |
size | = A 1-D int32 Tensor of 2 elements: `new_height, new_width`. The new size for the images. |
options | carries optional attributes values |
Returns
- a new instance of ResizeBicubic