本文整理汇总了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]