当前位置: 首页>>代码示例>>Python>>正文


Python Image.monochrome方法代码示例

本文整理汇总了Python中PythonMagick.Image.monochrome方法的典型用法代码示例。如果您正苦于以下问题:Python Image.monochrome方法的具体用法?Python Image.monochrome怎么用?Python Image.monochrome使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PythonMagick.Image的用法示例。


在下文中一共展示了Image.monochrome方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: PMImage

# 需要导入模块: from PythonMagick import Image [as 别名]
# 或者: from PythonMagick.Image import monochrome [as 别名]
# This file will be the base for alignment and intensity normalization
if base_image is not None:
    idx = frames.index(base_image)
    f = frames.pop(idx)
    frames.insert(0,f)

if verbose:
    print "%s will be used as base image" % frames[0]

# Determine image size
base_img_fname = frames[0]
if verbose:
    print "Reading %s" % base_img_fname
img = PMImage(base_img_fname)
w,h = img.size().width(), img.size().height()
if img.monochrome():
    c = 1
else:
    c = 3

print "Detected image size is %d x %d (width x height)" % (w,h)

print "%s will be used as base image" % frames[0]
img = IMtoNumpy(img,pre_usm,verbose=verbose)

# Get data used for aligning images
align_ref_data = None
if align_ref_loc is not None:
    xc = align_ref_loc[0]
    yc = align_ref_loc[1]
    d = align_ref_loc[2]
开发者ID:giulioungaretti,项目名称:ArtScope,代码行数:33,代码来源:halostack.py


注:本文中的PythonMagick.Image.monochrome方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。