view tools/segmentation/classes.lisp @ 87:19a263fb92d1

implementations/mtp/: faster implementations of GET-COMPOSITION and GET-DATASET darcs-hash:20070718151258-c0ce4-6431a2c8e4939fefeb0c7d6c9e2aa91d9474c232.gz
author Marcus Pearce <m.pearce@gold.ac.uk>
date Wed, 18 Jul 2007 16:12:58 +0100
parents 9f2282a2644e
children 7ed6a263f844
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 () ()
  (:documentation "Base class for delivering the results of
  segmentation"))