Description Usage Arguments Value Examples
Equalize image(s)
1 | 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.
1 2 3 4 | ## Not run:
img_equalize(img)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.