Equalize image(s)
img_equalize(image, data_format = "channels_last", name = NULL)
image | A tensor of shape (num_images, num_rows, num_columns, num_channels) (NHWC), or (num_images, num_channels, num_rows, num_columns) (NCHW), or (num_rows, num_columns, num_channels) (HWC), or (num_channels, num_rows, num_columns) (CHW), or (num_rows, num_columns) (HW). The rank must be statically known (the shape is not TensorShape(None)). |
---|---|
data_format | Either 'channels_first' or 'channels_last' |
name | The name of the op. Returns: Image(s) with the same type and shape as `images`, equalized. |
Image(s) with the same type and shape as `images`, equalized.
if (FALSE) { img_equalize(img) }