Mercurial > hg > amuse
view tools/segmentation/classes.lisp @ 265:b75b45d76e45
add ioi-from-bar method to amuse-mtp
author | Jamie Forth <j.forth@gold.ac.uk> |
---|---|
date | Sun, 10 Apr 2011 16:59:24 +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"))