view tools/segmentation/classes.lisp @ 85:c81375b9304f

tools/segmentation: s/documenatation/documentation darcs-hash:20070717164946-c0ce4-a7b73d1d9c894d48bc9b586910ec9f0133f913b6.gz
author Marcus Pearce <m.pearce@gold.ac.uk>
date Tue, 17 Jul 2007 17:49:46 +0100
parents 9f2282a2644e
children 19a263fb92d1
line wrap: on
line source
(in-package "AMUSE-SEGMENTATION")

(defclass segmenter () ()
  (: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 () ()
  (:documenation "Base class for delivering the results of
  segmentation"))