立体图效果是在图像内部生成图像的效果。立体图是图片中的图片。正确查看时,隐藏在每个图像内部的对象会以3D形式显示。
stereogram()函数使用两个Image实例(每只眼睛一个),并通过将Red&Cyan分开来创建3d图像。
用法:
wand.image.stereogram(left, right)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
left | wand.image.Image() | Left-eye图片。 |
right | wand.image.Image() | Right-eye图片。 |
源图像:
范例1:
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as leftimg:
with Image(filename ="koala.jpeg") as rightimg:
# stereogram image using stereogram function
with Image.stereogram(left = leftimg, right = rightimg) as img:
img.save(filename ="fx-stereogram.jpg")
输出:
源图像:
范例2:
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as leftimg:
with Image(filename ="koala.jpeg") as rightimg:
# stereogram image using stereogram function
with Image.stereogram(left = leftimg, right = rightimg) as img:
img.save(filename ="fx-stereogram.jpg")
输出:
相关用法
- Python Wand function()用法及代码示例
- Python Wand gaussian_blur()用法及代码示例
- Python Wand transform()用法及代码示例
- Python Wand crop()用法及代码示例
- Python Wand rotational_blur()用法及代码示例
- Python Wand Image()用法及代码示例
- Python Wand shade()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand stereogram() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。