当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Wand stereogram()用法及代码示例


立体图效果是在图像内部生成图像的效果。立体图是图片中的图片。正确查看时,隐藏在每个图像内部的对象会以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")

输出:




相关用法


注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand stereogram() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。