本文整理汇总了Python中menpo.image.Image.clip_pixels方法的典型用法代码示例。如果您正苦于以下问题:Python Image.clip_pixels方法的具体用法?Python Image.clip_pixels怎么用?Python Image.clip_pixels使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类menpo.image.Image
的用法示例。
在下文中一共展示了Image.clip_pixels方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_image_clip_pixels_cutom_max_uint
# 需要导入模块: from menpo.image import Image [as 别名]
# 或者: from menpo.image.Image import clip_pixels [as 别名]
def test_image_clip_pixels_cutom_max_uint():
pixels = (np.random.rand(3, 10, 20) * 255).astype(np.uint8)
# add the noise of increased values
pixels[0, 0, 0] = 255
image = Image(pixels, copy=False)
image2 = image.clip_pixels(maximum=200)
assert(image2.pixels.max() <= 200)
示例2: test_image_clip_pixels_cutom_max
# 需要导入模块: from menpo.image import Image [as 别名]
# 或者: from menpo.image.Image import clip_pixels [as 别名]
def test_image_clip_pixels_cutom_max():
pixels = np.random.rand(3, 10, 20)
# add the noise of increased values
pixels *= 2.0
pixels[0, 0, 0] = 3.0
pixels[0, 0, 1] = - 0.1
image = Image(pixels, copy=False)
assert(image.pixels.max() > 1.0)
image2 = image.clip_pixels(maximum=0.9)
assert(image2.pixels.max() <= 0.9)
assert(image2.pixels.min() >= 0.0)