view tools/segmentation/classes.lisp @ 109:a9a1c7aa86a9

rename mips-pitch -> diatonic-pitch darcs-hash:20070726131834-dc3a5-86b4b1aa5dc46bef8f25fa9111e2e08e51046c9b.gz
author c.rhodes <c.rhodes@gold.ac.uk>
date Thu, 26 Jul 2007 14:18:34 +0100
parents 19a263fb92d1
children 7ed6a263f844
line wrap: on
line source
(in-package "AMUSE-SEGMENTATION")

(defclass segmenter () ()
  (: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"))