shade()函数通过模拟高角度的光线来生成3d图像或产生3d效果。方位角参数用于控制X和Y角度,仰角参数用于控制图像的Zgle。我们也可以通过将grey参数设置为true来获得最终的灰度图像。
用法:
wand.image.shade(gray, azimuth, elevation);
参数:
参数 | 输入类型 | 描述 |
---|---|---|
gray | boolean | 隔离对像素强度的影响。默认值为False。 |
azimuth | numbers.real | 与x轴的夹角。 |
elevation | number.Real | z轴上的像素数量。 |
源图像:
范例1:
# import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# generating shaded image using shade() function.
img.shade(gray = True,
azimuth = 286.0,
elevation = 45.0)
img.save(filename ="shadekoala.jpeg")
输出:
范例2:将Gray设置为False,增加方位角和仰角值。
# import Image from wand.image module
from wand.image import Image
with Image(filename ="koala.jpeg") as img:
# generating shaded image using shade() function.
img.shade(gray = True,
azimuth = 298.0,
elevation = 70.0)
img.save(filename ="shadekoala_2.jpeg")
输出:
相关用法
- Python Wand shade()用法及代码示例
- Python Pgmagick shade()用法及代码示例
- Python Wand function()用法及代码示例
- Python Wand gaussian_blur()用法及代码示例
- Python Wand transform()用法及代码示例
- Python Wand crop()用法及代码示例
- Python Wand rotational_blur()用法及代码示例
- Python Wand Image()用法及代码示例
- Python Wand sharpen()用法及代码示例
- Python Wand adaptive_sharpen()用法及代码示例
- Python Wand noise()用法及代码示例
- Python Wand blue_shift()用法及代码示例
- Python Wand color_matrix()用法及代码示例
- Python Wand unsharp_mask()用法及代码示例
- Python Wand colorize()用法及代码示例
- Python Wand fx()用法及代码示例
- Python Wand implode()用法及代码示例
- Python Wand polaroid()用法及代码示例
- Python Wand sepia_tone()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Python – shade() function in Wand。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。