annotate tools/segmentation/classes.lisp @ 180:1a2b876b5587
ECOLM functionality for tabcode implementation
darcs-hash:20080708152414-40ec0-be5878c3d42affaf70ad7d08e987ba2223f5fa59.gz
author |
d.lewis <d.lewis@gold.ac.uk> |
date |
Tue, 08 Jul 2008 16:24:14 +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"))
|