view tools/segmentation/classes.lisp @ 171:98443d36ac6a

Fixed sequence:make-sequence-like :around method The :around method clobbered the %data slot, as Christophe put it. darcs-hash:20080123180914-990ec-629ecf5d60363512e6831800bb1e61dbcb8f94f5.gz
author Jamie Forth <j.forth@gold.ac.uk>
date Wed, 23 Jan 2008 18:09:14 +0000
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"))