AdjustHue

public final class AdjustHue

Adjust the hue of one or more images.

`images` is a tensor of at least 3 dimensions. The last dimension is interpreted as channels, and must be three.

The input image is considered in the RGB colorspace. Conceptually, the RGB colors are first mapped into HSV. A delta is then applied all the hue values, and then remapped back to RGB colorspace.

Constants

String OP_NAME The name of this op, as known by TensorFlow core engine

Public Methods

Output<T>
asOutput()
Returns the symbolic handle of the tensor.
static <T extends TNumber> AdjustHue<T>
create(Scope scope, Operand<T> images, Operand<TFloat32> delta)
Factory method to create a class wrapping a new AdjustHue operation.
Output<T>
output()
The hue-adjusted image or images.

Inherited Methods

Constants

public static final String OP_NAME

The name of this op, as known by TensorFlow core engine

Constant Value: "AdjustHue"

Public Methods

public Output<T> 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 AdjustHue<T> create (Scope scope, Operand<T> images, Operand<TFloat32> delta)

Factory method to create a class wrapping a new AdjustHue operation.

Parameters
scope current scope
images Images to adjust. At least 3-D.
delta A float delta to add to the hue.
Returns
  • a new instance of AdjustHue

public Output<T> output ()

The hue-adjusted image or images.