view tools/segmentation/classes.lisp @ 295:ced696bd9871

add database-admin function to create composition identifiers from file Ignore-this: ff758dc4be1061baebae471feee53f00 darcs-hash:20090820181949-16a00-389500f68b818adca481631fc7ae26be59a8ad4a.gz
author j.forth <j.forth@gold.ac.uk>
date Thu, 20 Aug 2009 19:19:49 +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"))