Skip to content

Commit

Permalink
suport tensor input for ColorJitter (PaddlePaddle#4710)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoooo0820 authored Apr 29, 2022
1 parent b03f551 commit f8e40d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/api/paddle/vision/transforms/adjust_brightness_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``,调整后的图像。

代码示例
:::::::::
Expand Down
4 changes: 2 additions & 2 deletions docs/api/paddle/vision/transforms/adjust_contrast_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``,调整后的图像。

代码示例
:::::::::
Expand Down
4 changes: 2 additions & 2 deletions docs/api/paddle/vision/transforms/adjust_hue_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``,调整后的图像。

代码示例
:::::::::
Expand Down

0 comments on commit f8e40d9

Please sign in to comment.