view tools/segmentation/classes.lisp @ 154:edf2322ea33f

Added copy key and time sigs and tempo. Need to do general version. Only midi-type currently darcs-hash:20071119173147-40ec0-779ffe4dc4bbc356cc6decf6d0f50cb42f943b83.gz
author d.lewis <d.lewis@gold.ac.uk>
date Mon, 19 Nov 2007 17:31:47 +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"))