view tools/segmentation/classes.lisp @ 180:1a2b876b5587

ECOLM functionality for tabcode implementation darcs-hash:20080708152414-40ec0-be5878c3d42affaf70ad7d08e987ba2223f5fa59.gz
author d.lewis <d.lewis@gold.ac.uk>
date Tue, 08 Jul 2008 16:24:14 +0100
parents 7ed6a263f844
children
line wrap: on
line source
(in-package "AMUSE-SEGMENTATION")

(defclass segmenter (amuse:amuse-object) ()
  (:documentation "Base class for identifying segment-boundary
  methods."))

(defclass before-segmenter (segmenter) ()
  (:documentation "A segmenter binding to moments before a boundary."))
(defclass after-segmenter (segmenter) ()
  (:documentation "A segmenter binding to moments after a boundary."))
(defclass ground-truth-segmenter (segmenter) ())

(defclass segmentation () ()
  (:documentation "Base class for delivering the results of
  segmentation"))