Source code for image_wralea.image_interface
# -*- python -*-
#
#
# Copyright 2006-2010 INRIA - CIRAD - INRA
#
# File author(s): Chopard
#
# Distributed under the Cecill-C License.
# See accompanying file LICENSE.txt or copy at
# http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html
#
# OpenAlea WebSite : http://openalea.gforge.inria.fr
#
"""Declaration of IImage interface
"""
__license__ = "Cecill-C"
__revision__ = " $Id: interface.py 2245 2010-02-08 17:11:34Z cokelaer $"
from openalea.core import *
from openalea.image.spatial_image import SpatialImage
[docs]class IImage(IInterface) :
"""Interface for images expressed as array of colors
"""
__color__ = "#194BFF"
__pytype__ = SpatialImage