img_equalize {tfaddons} | R Documentation |
Equalize
Description
Equalize image(s)
Usage
img_equalize(image, data_format = "channels_last", name = NULL)
Arguments
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. |
Value
Image(s) with the same type and shape as 'images', equalized.
Examples
## Not run:
img_equalize(img)
## End(Not run)
[Package tfaddons version 0.10.0 Index]