annotate tools/segmentation/classes.lisp @ 279:c591a5034da6
New base module for general database functions
Ignore-this: 403f22ca6285cba4a23eeddb1d0a806f
Currently just provides a slightly more secure way of connecting to a database.
darcs-hash:20090519135617-16a00-ce026a38abfb53e5728cd0cbb6c976e403691dde.gz
author |
j.forth <j.forth@gold.ac.uk> |
date |
Tue, 19 May 2009 14:56:17 +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"))
|