annotate tools/segmentation/classes.lisp @ 204:10d47e78a53d

Added support for most significant midi messages (some remain missing, but these do not occur in a 1000-file test sample)
author David Lewis <d.lewis@gold.ac.uk>
date Fri, 17 Sep 2010 10:28:27 +0100
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"))