annotate tools/segmentation/classes.lisp @ 215:4eceac78e7c6

add minimal backend for Dave Meredith's data Ignore-this: 91608f727967a4c5709bd41634ab9ae2 darcs-hash:20090524193956-16a00-038e6f7cb235dea4e7efcc70c4d1a7bc7fd402a6.gz committer: Jamie Forth <j.forth@gold.ac.uk>
author j.forth <j.forth@gold.ac.uk>
date Thu, 24 Feb 2011 11:23:18 +0000
parents 7ed6a263f844
children
rev   line source
d@74 1 (in-package "AMUSE-SEGMENTATION")
d@74 2
m@142 3 (defclass segmenter (amuse:amuse-object) ()
d@74 4 (:documentation "Base class for identifying segment-boundary
d@74 5 methods."))
d@74 6
m@78 7 (defclass before-segmenter (segmenter) ()
m@78 8 (:documentation "A segmenter binding to moments before a boundary."))
m@78 9 (defclass after-segmenter (segmenter) ()
m@78 10 (:documentation "A segmenter binding to moments after a boundary."))
m@78 11 (defclass ground-truth-segmenter (segmenter) ())
m@78 12
d@80 13 (defclass segmentation () ()
m@87 14 (:documentation "Base class for delivering the results of
d@80 15 segmentation"))