Mercurial > hg > amuse
view tools/segmentation/classes.lisp @ 258:aac79c0ac1b9
add within-short-bar-p, and use this to correctly calculate the
ioi-from-bar of anacruses
author | Jamie Forth <j.forth@gold.ac.uk> |
---|---|
date | Thu, 24 Feb 2011 18:50:38 +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"))