Mercurial > hg > amuse
view tools/segmentation/classes.lisp @ 80:9f2282a2644e
Skeleton for segmentation interface
darcs-hash:20070716163337-f76cc-f7db9c490fab20196922118d8acd3235b4802840.gz
author | David Lewis <d.lewis@gold.ac.uk> |
---|---|
date | Mon, 16 Jul 2007 17:33:37 +0100 |
parents | 14e32f4d61d0 |
children | 19a263fb92d1 |
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 () () (:documenation "Base class for delivering the results of segmentation"))