tensorflow::ops::AdjustHue

tensorflow::ops::AdjustHue

#include <image_ops.h>

Adjust the hue of one or more images.

Summary

images is a tensor of at least 3 dimensions. The last dimension is interpretted 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.

Arguments:

  • scope: A Scope object
  • images: Images to adjust. At least 3-D.
  • delta: A float delta to add to the hue.

Returns:

  • Output: The hue-adjusted image or images.
Const