Source code for ilastik.applets.objectClassification.objectClassificationApplet

###############################################################################
#   ilastik: interactive learning and segmentation toolkit
#
#       Copyright (C) 2011-2014, the ilastik developers
#                                <team@ilastik.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# In addition, as a special exception, the copyright holders of
# ilastik give you permission to combine ilastik with applets,
# workflows and plugins which are not covered under the GNU
# General Public License.
#
# See the LICENSE file for details. License information is also available
# on the ilastik web site at:
#		   http://ilastik.org/license.html
###############################################################################
from ilastik.applets.base.standardApplet import StandardApplet

from opObjectClassification import OpObjectClassification
from objectClassificationSerializer import ObjectClassificationSerializer


[docs]class ObjectClassificationApplet(StandardApplet): """An applet for labeling and classifying objects.""" def __init__(self, name="Object Classification", workflow=None, projectFileGroupName="ObjectClassification", selectedFeatures=dict()): self._topLevelOperator = OpObjectClassification(parent=workflow) self.connected_to_knime = False self._selectedFeatures = selectedFeatures super(ObjectClassificationApplet, self).__init__(name=name, workflow=workflow) self._serializableItems = [ ObjectClassificationSerializer(projectFileGroupName, self.topLevelOperator)] @property def topLevelOperator(self): return self._topLevelOperator @property def dataSerializers(self): return self._serializableItems @property def singleLaneGuiClass(self): from objectClassificationGui import ObjectClassificationGui return ObjectClassificationGui