ImageMath
index
/Library/Python/2.7/site-packages/PIL/ImageMath.py

# The Python Imaging Library
# $Id$
#
# a simple math add-on for the Python Imaging Library
#
# History:
# 1999-02-15 fl   Original PIL Plus release
# 2005-05-05 fl   Simplified and cleaned up for PIL 1.1.6
# 2005-09-12 fl   Fixed int() and float() for Python 2.4.1
#
# Copyright (c) 1999-2005 by Secret Labs AB
# Copyright (c) 2005 by Fredrik Lundh
#
# See the README file for information on usage and redistribution.
#

 
Modules
       
Image
_imagingmath

 
Functions
       
eval(expression, _dict={}, **kw)
imagemath_convert(self, mode)
imagemath_equal(self, other)
# logical
imagemath_float(self)
imagemath_int(self)
# conversions
imagemath_max(self, other)
imagemath_min(self, other)
imagemath_notequal(self, other)
v = imagemath_max(self, other)

 
Data
        VERBOSE = 0
k = 'imagemath_max'
ops = {'convert': <function imagemath_convert>, 'equal': <function imagemath_equal>, 'float': <function imagemath_float>, 'int': <function imagemath_int>, 'max': <function imagemath_max>, 'min': <function imagemath_min>, 'notequal': <function imagemath_notequal>}