Python中的魔杖立体图()函数
立体图效果是在图像内部生成图像的效果。立体图是图片中的图片。隐藏在每个图像中的是一个在正确查看时以 3D 显示的对象。
stereogram()函数采用两个 Image 实例(每只眼睛一个),并通过分离红色和青色创建 3d 图像。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
left | wand.image.Image() | Left-eye image. |
right | wand.image.Image() | Right-eye image. |
源图像:
示例 1:
wand.image.stereogram(left, right)
输出:
源图像:
示例 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")
输出: