| Modifier and Type | Class and Description |
|---|---|
static class |
ResizeNearestNeighbor.Options
Optional attributes for
ResizeNearestNeighbor |
operation| Modifier and Type | Method and Description |
|---|---|
static ResizeNearestNeighbor.Options |
alignCorners(Boolean alignCorners) |
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T extends Number> |
create(Scope scope,
Operand<T> images,
Operand<Integer> size,
ResizeNearestNeighbor.Options... options)
Factory method to create a class to wrap a new ResizeNearestNeighbor operation to the graph.
|
Output<T> |
resizedImages()
4-D with shape
`[batch, new_height, new_width, channels]`.
|
equals, hashCode, toStringpublic static <T extends Number> ResizeNearestNeighbor<T> create(Scope scope, Operand<T> images, Operand<Integer> size, ResizeNearestNeighbor.Options... options)
scope - current graph scopeimages - 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 valuespublic static ResizeNearestNeighbor.Options alignCorners(Boolean alignCorners)
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<T> resizedImages()
public Output<T> asOutput()
OperandInputs 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.
asOutput in interface Operand<T extends Number>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.