From f8e40d93ee5fd65512f7ea33dc1f3e34cc7d8f15 Mon Sep 17 00:00:00 2001 From: JYChen Date: Fri, 29 Apr 2022 17:09:51 +0800 Subject: [PATCH] suport tensor input for ColorJitter (#4710) --- docs/api/paddle/vision/transforms/adjust_brightness_cn.rst | 4 ++-- docs/api/paddle/vision/transforms/adjust_contrast_cn.rst | 4 ++-- docs/api/paddle/vision/transforms/adjust_hue_cn.rst | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/api/paddle/vision/transforms/adjust_brightness_cn.rst b/docs/api/paddle/vision/transforms/adjust_brightness_cn.rst index 806700b6ac3..bc57e089cf9 100644 --- a/docs/api/paddle/vision/transforms/adjust_brightness_cn.rst +++ b/docs/api/paddle/vision/transforms/adjust_brightness_cn.rst @@ -10,13 +10,13 @@ adjust_brightness 参数 ::::::::: - - img (PIL.Image|np.array) - 输入的图像。 + - img (PIL.Image|np.array|paddle.Tensor) - 输入的图像。 - brightness_factor (float) - 调节图像亮度值的多少,可以是任何非负数。参数等于0时输出黑色图像,参数等于1时输出原始图像,参数大于1时输出图像亮度增强,如参数等于2时图像亮度增强两倍。 返回 ::::::::: - ``PIL.Image 或 numpy.ndarray``,调整后的图像。 + ``PIL.Image 或 numpy.ndarray 或 paddle.Tensor``,调整后的图像。 代码示例 ::::::::: diff --git a/docs/api/paddle/vision/transforms/adjust_contrast_cn.rst b/docs/api/paddle/vision/transforms/adjust_contrast_cn.rst index 06a801190a6..a0039cee894 100644 --- a/docs/api/paddle/vision/transforms/adjust_contrast_cn.rst +++ b/docs/api/paddle/vision/transforms/adjust_contrast_cn.rst @@ -10,13 +10,13 @@ adjust_contrast 参数 ::::::::: - - img (PIL.Image|np.array) - 输入的图像。 + - img (PIL.Image|np.array|paddle.Tensor) - 输入的图像。 - contrast_factor (float) - 调节图像对比度的多少,可以是任何非负数。参数等于0时输出纯灰色图像,参数等于1时输出原始图像,参数大于1时图像对比度增强,如参数等于2时图像对比度增强两倍。 返回 ::::::::: - ``PIL.Image 或 numpy.ndarray``,调整后的图像。 + ``PIL.Image 或 numpy.ndarray 或 paddle.Tensor``,调整后的图像。 代码示例 ::::::::: diff --git a/docs/api/paddle/vision/transforms/adjust_hue_cn.rst b/docs/api/paddle/vision/transforms/adjust_hue_cn.rst index 5b31d036128..cb1f6fe755f 100644 --- a/docs/api/paddle/vision/transforms/adjust_hue_cn.rst +++ b/docs/api/paddle/vision/transforms/adjust_hue_cn.rst @@ -10,13 +10,13 @@ adjust_hue 参数 ::::::::: - - img (PIL.Image|np.array) - 输入的图像。 + - img (PIL.Image|np.array|paddle.Tensor) - 输入的图像。 - hue_factor (float) - 图像的色调通道的偏移量. 数值应在 ``[-0.5, 0.5]`` 。0.5和-0.5分别表示HSV空间中色相通道正向和负向完全反转,0表示没有调整色调。因此,-0.5和0.5都会给出一个带有互补色的图像,而0则会给出原始图像。 返回 ::::::::: - ``PIL.Image 或 numpy.ndarray``,调整后的图像。 + ``PIL.Image 或 numpy.ndarray 或 paddle.Tensor``,调整后的图像。 代码示例 :::::::::