annotate tools/segmentation/classes.lisp @ 134:5e362d998f29
More documentation
darcs-hash:20070828101524-f76cc-6add2c3c254befc3cf767ac69706865b7830bc6a.gz
author |
David Lewis <d.lewis@gold.ac.uk> |
date |
Tue, 28 Aug 2007 11:15:24 +0100 |
parents |
19a263fb92d1 |
children |
7ed6a263f844 |
rev |
line source |
d@74
|
1 (in-package "AMUSE-SEGMENTATION")
|
d@74
|
2
|
d@74
|
3 (defclass segmenter () ()
|
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"))
|