aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/api_guides/python/image.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/api_guides/python/image.md')
-rw-r--r--tensorflow/docs_src/api_guides/python/image.md98
1 files changed, 49 insertions, 49 deletions
diff --git a/tensorflow/docs_src/api_guides/python/image.md b/tensorflow/docs_src/api_guides/python/image.md
index 051e4547ee..c51b92db05 100644
--- a/tensorflow/docs_src/api_guides/python/image.md
+++ b/tensorflow/docs_src/api_guides/python/image.md
@@ -1,7 +1,7 @@
# Images
Note: Functions taking `Tensor` arguments can also take anything accepted by
-@{tf.convert_to_tensor}.
+`tf.convert_to_tensor`.
[TOC]
@@ -19,27 +19,27 @@ Note: The PNG encode and decode Ops support RGBA, but the conversions Ops
presently only support RGB, HSV, and GrayScale. Presently, the alpha channel has
to be stripped from the image and re-attached using slicing ops.
-* @{tf.image.decode_bmp}
-* @{tf.image.decode_gif}
-* @{tf.image.decode_jpeg}
-* @{tf.image.encode_jpeg}
-* @{tf.image.decode_png}
-* @{tf.image.encode_png}
-* @{tf.image.decode_image}
+* `tf.image.decode_bmp`
+* `tf.image.decode_gif`
+* `tf.image.decode_jpeg`
+* `tf.image.encode_jpeg`
+* `tf.image.decode_png`
+* `tf.image.encode_png`
+* `tf.image.decode_image`
## Resizing
The resizing Ops accept input images as tensors of several types. They always
output resized images as float32 tensors.
-The convenience function @{tf.image.resize_images} supports both 4-D
+The convenience function `tf.image.resize_images` supports both 4-D
and 3-D tensors as input and output. 4-D tensors are for batches of images,
3-D tensors for individual images.
Other resizing Ops only support 4-D batches of images as input:
-@{tf.image.resize_area}, @{tf.image.resize_bicubic},
-@{tf.image.resize_bilinear},
-@{tf.image.resize_nearest_neighbor}.
+`tf.image.resize_area`, `tf.image.resize_bicubic`,
+`tf.image.resize_bilinear`,
+`tf.image.resize_nearest_neighbor`.
Example:
@@ -49,29 +49,29 @@ image = tf.image.decode_jpeg(...)
resized_image = tf.image.resize_images(image, [299, 299])
```
-* @{tf.image.resize_images}
-* @{tf.image.resize_area}
-* @{tf.image.resize_bicubic}
-* @{tf.image.resize_bilinear}
-* @{tf.image.resize_nearest_neighbor}
+* `tf.image.resize_images`
+* `tf.image.resize_area`
+* `tf.image.resize_bicubic`
+* `tf.image.resize_bilinear`
+* `tf.image.resize_nearest_neighbor`
## Cropping
-* @{tf.image.resize_image_with_crop_or_pad}
-* @{tf.image.central_crop}
-* @{tf.image.pad_to_bounding_box}
-* @{tf.image.crop_to_bounding_box}
-* @{tf.image.extract_glimpse}
-* @{tf.image.crop_and_resize}
+* `tf.image.resize_image_with_crop_or_pad`
+* `tf.image.central_crop`
+* `tf.image.pad_to_bounding_box`
+* `tf.image.crop_to_bounding_box`
+* `tf.image.extract_glimpse`
+* `tf.image.crop_and_resize`
## Flipping, Rotating and Transposing
-* @{tf.image.flip_up_down}
-* @{tf.image.random_flip_up_down}
-* @{tf.image.flip_left_right}
-* @{tf.image.random_flip_left_right}
-* @{tf.image.transpose_image}
-* @{tf.image.rot90}
+* `tf.image.flip_up_down`
+* `tf.image.random_flip_up_down`
+* `tf.image.flip_left_right`
+* `tf.image.random_flip_left_right`
+* `tf.image.transpose_image`
+* `tf.image.rot90`
## Converting Between Colorspaces
@@ -94,7 +94,7 @@ per pixel (values are assumed to lie in `[0,255]`).
TensorFlow can convert between images in RGB or HSV. The conversion functions
work only on float images, so you need to convert images in other formats using
-@{tf.image.convert_image_dtype}.
+`tf.image.convert_image_dtype`.
Example:
@@ -105,11 +105,11 @@ rgb_image_float = tf.image.convert_image_dtype(rgb_image, tf.float32)
hsv_image = tf.image.rgb_to_hsv(rgb_image)
```
-* @{tf.image.rgb_to_grayscale}
-* @{tf.image.grayscale_to_rgb}
-* @{tf.image.hsv_to_rgb}
-* @{tf.image.rgb_to_hsv}
-* @{tf.image.convert_image_dtype}
+* `tf.image.rgb_to_grayscale`
+* `tf.image.grayscale_to_rgb`
+* `tf.image.hsv_to_rgb`
+* `tf.image.rgb_to_hsv`
+* `tf.image.convert_image_dtype`
## Image Adjustments
@@ -122,23 +122,23 @@ If several adjustments are chained it is advisable to minimize the number of
redundant conversions by first converting the images to the most natural data
type and representation (RGB or HSV).
-* @{tf.image.adjust_brightness}
-* @{tf.image.random_brightness}
-* @{tf.image.adjust_contrast}
-* @{tf.image.random_contrast}
-* @{tf.image.adjust_hue}
-* @{tf.image.random_hue}
-* @{tf.image.adjust_gamma}
-* @{tf.image.adjust_saturation}
-* @{tf.image.random_saturation}
-* @{tf.image.per_image_standardization}
+* `tf.image.adjust_brightness`
+* `tf.image.random_brightness`
+* `tf.image.adjust_contrast`
+* `tf.image.random_contrast`
+* `tf.image.adjust_hue`
+* `tf.image.random_hue`
+* `tf.image.adjust_gamma`
+* `tf.image.adjust_saturation`
+* `tf.image.random_saturation`
+* `tf.image.per_image_standardization`
## Working with Bounding Boxes
-* @{tf.image.draw_bounding_boxes}
-* @{tf.image.non_max_suppression}
-* @{tf.image.sample_distorted_bounding_box}
+* `tf.image.draw_bounding_boxes`
+* `tf.image.non_max_suppression`
+* `tf.image.sample_distorted_bounding_box`
## Denoising
-* @{tf.image.total_variation}
+* `tf.image.total_variation`