camellia 2.5.10-i486-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +58 -0
- data/doc/README +58 -0
- data/doc/camellia.dox +205 -0
- data/doc/html/annotated.html +46 -0
- data/doc/html/camellia_8h-source.html +1350 -0
- data/doc/html/camellia_8h.html +4873 -0
- data/doc/html/doxygen.css +310 -0
- data/doc/html/doxygen.png +0 -0
- data/doc/html/files.html +27 -0
- data/doc/html/ftv2blank.png +0 -0
- data/doc/html/ftv2doc.png +0 -0
- data/doc/html/ftv2folderclosed.png +0 -0
- data/doc/html/ftv2folderopen.png +0 -0
- data/doc/html/ftv2lastnode.png +0 -0
- data/doc/html/ftv2link.png +0 -0
- data/doc/html/ftv2mlastnode.png +0 -0
- data/doc/html/ftv2mnode.png +0 -0
- data/doc/html/ftv2node.png +0 -0
- data/doc/html/ftv2plastnode.png +0 -0
- data/doc/html/ftv2pnode.png +0 -0
- data/doc/html/ftv2vertline.png +0 -0
- data/doc/html/functions.html +292 -0
- data/doc/html/functions_func.html +204 -0
- data/doc/html/functions_vars.html +177 -0
- data/doc/html/globals.html +172 -0
- data/doc/html/globals_defs.html +37 -0
- data/doc/html/globals_func.html +170 -0
- data/doc/html/hierarchy.html +46 -0
- data/doc/html/index.html +8 -0
- data/doc/html/main.html +21 -0
- data/doc/html/pages.html +23 -0
- data/doc/html/structCamArithmParams.html +61 -0
- data/doc/html/structCamBasin.html +63 -0
- data/doc/html/structCamBitmapFont.html +38 -0
- data/doc/html/structCamBlobInfo.html +91 -0
- data/doc/html/structCamBlobs.html +52 -0
- data/doc/html/structCamImage.html +791 -0
- data/doc/html/structCamLabelingResults.html +47 -0
- data/doc/html/structCamLinearFilterKernel.html +64 -0
- data/doc/html/structCamMeasuresResults.html +55 -0
- data/doc/html/structCamMorphoMathsKernel.html +82 -0
- data/doc/html/structCamPoint.html +47 -0
- data/doc/html/structCamRLEImage.html +184 -0
- data/doc/html/structCamROI.html +89 -0
- data/doc/html/structCamRun.html +57 -0
- data/doc/html/structCamSepFilterKernel.html +68 -0
- data/doc/html/structCamTable.html +47 -0
- data/doc/html/structCamTableOfBasins.html +38 -0
- data/doc/html/structCamVolbergFwdParams.html +47 -0
- data/doc/html/structCamWarpingParams.html +79 -0
- data/doc/html/tab_b.gif +0 -0
- data/doc/html/tab_l.gif +0 -0
- data/doc/html/tab_r.gif +0 -0
- data/doc/html/tabs.css +102 -0
- data/doc/html/todo.html +28 -0
- data/doc/html/tree.html +132 -0
- data/doc/rtf/refman.rtf +38378 -0
- data/ext/INSTALL +9 -0
- data/ext/Makefile +139 -0
- data/ext/camellia_ruby.i +308 -0
- data/ext/camellia_ruby_wrap.cxx +16086 -0
- data/ext/extconf.rb +4 -0
- data/ext/install.rb +11 -0
- data/ext/swig_ruby.dsp +159 -0
- data/inc/camellia.h +2624 -0
- data/inc/camellia_internals.h +192 -0
- data/lib/camellia-fox.rb +39 -0
- data/test/test_arithm.rb +13 -0
- data/test/test_color_labeling.rb +45 -0
- data/test/test_copy.rb +13 -0
- data/test/test_draw.rb +15 -0
- data/test/test_fixed_filters.rb +23 -0
- data/test/test_fox.rb +106 -0
- data/test/test_fox2.rb +108 -0
- data/test/test_histogram.rb +18 -0
- data/test/test_hough.rb +29 -0
- data/test/test_labeling.rb +30 -0
- data/test/test_mask.rb +34 -0
- data/test/test_watershed.rb +35 -0
- data/test/ts_camellia.rb +10 -0
- metadata +138 -0
data/README
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Camellia Image Processing Library
|
|
2
|
+
|
|
3
|
+
CAMELLIA : Core for Ambient and Mobile intELLigent Imaging Applications.
|
|
4
|
+
Camellia E.U. Project.
|
|
5
|
+
|
|
6
|
+
==========================================================================
|
|
7
|
+
|
|
8
|
+
UNIX / LINUX :
|
|
9
|
+
type 'make' to build the libCamellia.so file.
|
|
10
|
+
type 'make install' to install the lib to /etc/lib (requires administrator rights)
|
|
11
|
+
A cam_demo executable will also be generated to serve as a test bench.
|
|
12
|
+
The code should compile with any known recent C compiler
|
|
13
|
+
|
|
14
|
+
Windows :
|
|
15
|
+
A Visual Studio 6 project file is provided, that creates the camellia.lib library and the demo application.
|
|
16
|
+
|
|
17
|
+
The Camellia Image Processing Library is an open source low-level image processing library.
|
|
18
|
+
As it uses the IplImage structure to describe images, it is a good replacement to the IPL (Intel) library
|
|
19
|
+
and a good complement to the OpenCV library. It includes a lot of functions for image processing
|
|
20
|
+
(filtering, morphological mathematics, labelling, warping, loading/saving images, etc.),
|
|
21
|
+
some of them being highly optimized; It is also cross-platform and robust. It is doxygen-documented
|
|
22
|
+
and examples of use are provided.
|
|
23
|
+
|
|
24
|
+
This software library is an outcome of the Camellia european project (IST-2001-34410).
|
|
25
|
+
It was developped by the Ecole des Mines de Paris (ENSMP), in coordination with
|
|
26
|
+
the other partners of the projects.
|
|
27
|
+
|
|
28
|
+
==========================================================================
|
|
29
|
+
|
|
30
|
+
Copyright (c) 2002-2006, Ecole des Mines de Paris - Centre de Robotique
|
|
31
|
+
All rights reserved.
|
|
32
|
+
|
|
33
|
+
Redistribution and use in source and binary forms, with or without
|
|
34
|
+
modification, are permitted provided that the following conditions are met:
|
|
35
|
+
|
|
36
|
+
* Redistributions of source code must retain the above copyright
|
|
37
|
+
notice, this list of conditions and the following disclaimer.
|
|
38
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
39
|
+
notice, this list of conditions and the following disclaimer
|
|
40
|
+
in the documentation and/or other materials provided with the distribution.
|
|
41
|
+
* Neither the name of the Ecole des Mines de Paris nor the names of
|
|
42
|
+
its contributors may be used to endorse or promote products
|
|
43
|
+
derived from this software without specific prior written permission.
|
|
44
|
+
|
|
45
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
46
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
47
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
48
|
+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
49
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
50
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
51
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
52
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
53
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
54
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
55
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
56
|
+
|
|
57
|
+
==========================================================================
|
|
58
|
+
|
data/doc/README
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Camellia Image Processing Library
|
|
2
|
+
|
|
3
|
+
CAMELLIA : Core for Ambient and Mobile intELLigent Imaging Applications.
|
|
4
|
+
Camellia E.U. Project.
|
|
5
|
+
|
|
6
|
+
==========================================================================
|
|
7
|
+
|
|
8
|
+
UNIX / LINUX :
|
|
9
|
+
type 'make' to build the libCamellia.so file.
|
|
10
|
+
type 'make install' to install the lib to /etc/lib (requires administrator rights)
|
|
11
|
+
A cam_demo executable will also be generated to serve as a test bench.
|
|
12
|
+
The code should compile with any known recent C compiler
|
|
13
|
+
|
|
14
|
+
Windows :
|
|
15
|
+
A Visual Studio 6 project file is provided, that creates the camellia.lib library and the demo application.
|
|
16
|
+
|
|
17
|
+
The Camellia Image Processing Library is an open source low-level image processing library.
|
|
18
|
+
As it uses the IplImage structure to describe images, it is a good replacement to the IPL (Intel) library
|
|
19
|
+
and a good complement to the OpenCV library. It includes a lot of functions for image processing
|
|
20
|
+
(filtering, morphological mathematics, labelling, warping, loading/saving images, etc.),
|
|
21
|
+
some of them being highly optimized; It is also cross-platform and robust. It is doxygen-documented
|
|
22
|
+
and examples of use are provided.
|
|
23
|
+
|
|
24
|
+
This software library is an outcome of the Camellia european project (IST-2001-34410).
|
|
25
|
+
It was developped by the Ecole des Mines de Paris (ENSMP), in coordination with
|
|
26
|
+
the other partners of the projects.
|
|
27
|
+
|
|
28
|
+
==========================================================================
|
|
29
|
+
|
|
30
|
+
Copyright (c) 2002-2006, Ecole des Mines de Paris - Centre de Robotique
|
|
31
|
+
All rights reserved.
|
|
32
|
+
|
|
33
|
+
Redistribution and use in source and binary forms, with or without
|
|
34
|
+
modification, are permitted provided that the following conditions are met:
|
|
35
|
+
|
|
36
|
+
* Redistributions of source code must retain the above copyright
|
|
37
|
+
notice, this list of conditions and the following disclaimer.
|
|
38
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
39
|
+
notice, this list of conditions and the following disclaimer
|
|
40
|
+
in the documentation and/or other materials provided with the distribution.
|
|
41
|
+
* Neither the name of the Ecole des Mines de Paris nor the names of
|
|
42
|
+
its contributors may be used to endorse or promote products
|
|
43
|
+
derived from this software without specific prior written permission.
|
|
44
|
+
|
|
45
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
46
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
47
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
48
|
+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
49
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
50
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
51
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
52
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
53
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
54
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
55
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
56
|
+
|
|
57
|
+
==========================================================================
|
|
58
|
+
|
data/doc/camellia.dox
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
# Doxyfile 1.3.1
|
|
2
|
+
|
|
3
|
+
#---------------------------------------------------------------------------
|
|
4
|
+
# General configuration options
|
|
5
|
+
#---------------------------------------------------------------------------
|
|
6
|
+
PROJECT_NAME = Camellia
|
|
7
|
+
PROJECT_NUMBER = v2.5.10
|
|
8
|
+
OUTPUT_DIRECTORY = .
|
|
9
|
+
OUTPUT_LANGUAGE = English
|
|
10
|
+
USE_WINDOWS_ENCODING = NO
|
|
11
|
+
EXTRACT_ALL = NO
|
|
12
|
+
EXTRACT_PRIVATE = NO
|
|
13
|
+
EXTRACT_STATIC = NO
|
|
14
|
+
EXTRACT_LOCAL_CLASSES = NO
|
|
15
|
+
HIDE_UNDOC_MEMBERS = YES
|
|
16
|
+
HIDE_UNDOC_CLASSES = YES
|
|
17
|
+
HIDE_FRIEND_COMPOUNDS = NO
|
|
18
|
+
HIDE_IN_BODY_DOCS = NO
|
|
19
|
+
BRIEF_MEMBER_DESC = YES
|
|
20
|
+
REPEAT_BRIEF = YES
|
|
21
|
+
ALWAYS_DETAILED_SEC = NO
|
|
22
|
+
INLINE_INHERITED_MEMB = NO
|
|
23
|
+
FULL_PATH_NAMES = NO
|
|
24
|
+
STRIP_FROM_PATH =
|
|
25
|
+
INTERNAL_DOCS = NO
|
|
26
|
+
CASE_SENSE_NAMES = YES
|
|
27
|
+
SHORT_NAMES = NO
|
|
28
|
+
HIDE_SCOPE_NAMES = NO
|
|
29
|
+
SHOW_INCLUDE_FILES = YES
|
|
30
|
+
JAVADOC_AUTOBRIEF = NO
|
|
31
|
+
MULTILINE_CPP_IS_BRIEF = NO
|
|
32
|
+
DETAILS_AT_TOP = NO
|
|
33
|
+
INHERIT_DOCS = YES
|
|
34
|
+
INLINE_INFO = YES
|
|
35
|
+
SORT_MEMBER_DOCS = YES
|
|
36
|
+
DISTRIBUTE_GROUP_DOC = NO
|
|
37
|
+
TAB_SIZE = 8
|
|
38
|
+
GENERATE_TODOLIST = YES
|
|
39
|
+
GENERATE_TESTLIST = YES
|
|
40
|
+
GENERATE_BUGLIST = YES
|
|
41
|
+
GENERATE_DEPRECATEDLIST= YES
|
|
42
|
+
ALIASES =
|
|
43
|
+
ENABLED_SECTIONS =
|
|
44
|
+
MAX_INITIALIZER_LINES = 30
|
|
45
|
+
OPTIMIZE_OUTPUT_FOR_C = YES
|
|
46
|
+
OPTIMIZE_OUTPUT_JAVA = NO
|
|
47
|
+
SHOW_USED_FILES = YES
|
|
48
|
+
#---------------------------------------------------------------------------
|
|
49
|
+
# configuration options related to warning and progress messages
|
|
50
|
+
#---------------------------------------------------------------------------
|
|
51
|
+
QUIET = NO
|
|
52
|
+
WARNINGS = YES
|
|
53
|
+
WARN_IF_UNDOCUMENTED = YES
|
|
54
|
+
WARN_IF_DOC_ERROR = YES
|
|
55
|
+
WARN_FORMAT = "$file:$line: $text"
|
|
56
|
+
WARN_LOGFILE =
|
|
57
|
+
#---------------------------------------------------------------------------
|
|
58
|
+
# configuration options related to the input files
|
|
59
|
+
#---------------------------------------------------------------------------
|
|
60
|
+
INPUT = ../inc/camellia.h
|
|
61
|
+
FILE_PATTERNS =
|
|
62
|
+
RECURSIVE = YES
|
|
63
|
+
EXCLUDE =
|
|
64
|
+
EXCLUDE_SYMLINKS = NO
|
|
65
|
+
EXCLUDE_PATTERNS =
|
|
66
|
+
EXAMPLE_PATH =
|
|
67
|
+
EXAMPLE_PATTERNS =
|
|
68
|
+
EXAMPLE_RECURSIVE = NO
|
|
69
|
+
IMAGE_PATH =
|
|
70
|
+
INPUT_FILTER =
|
|
71
|
+
FILTER_SOURCE_FILES = NO
|
|
72
|
+
#---------------------------------------------------------------------------
|
|
73
|
+
# configuration options related to source browsing
|
|
74
|
+
#---------------------------------------------------------------------------
|
|
75
|
+
SOURCE_BROWSER = NO
|
|
76
|
+
INLINE_SOURCES = NO
|
|
77
|
+
STRIP_CODE_COMMENTS = YES
|
|
78
|
+
REFERENCED_BY_RELATION = YES
|
|
79
|
+
REFERENCES_RELATION = YES
|
|
80
|
+
VERBATIM_HEADERS = YES
|
|
81
|
+
#---------------------------------------------------------------------------
|
|
82
|
+
# configuration options related to the alphabetical class index
|
|
83
|
+
#---------------------------------------------------------------------------
|
|
84
|
+
ALPHABETICAL_INDEX = NO
|
|
85
|
+
COLS_IN_ALPHA_INDEX = 5
|
|
86
|
+
IGNORE_PREFIX =
|
|
87
|
+
#---------------------------------------------------------------------------
|
|
88
|
+
# configuration options related to the HTML output
|
|
89
|
+
#---------------------------------------------------------------------------
|
|
90
|
+
GENERATE_HTML = YES
|
|
91
|
+
HTML_OUTPUT = html
|
|
92
|
+
HTML_FILE_EXTENSION = .html
|
|
93
|
+
HTML_HEADER =
|
|
94
|
+
HTML_FOOTER =
|
|
95
|
+
HTML_STYLESHEET =
|
|
96
|
+
HTML_ALIGN_MEMBERS = YES
|
|
97
|
+
GENERATE_HTMLHELP = NO
|
|
98
|
+
CHM_FILE =
|
|
99
|
+
HHC_LOCATION =
|
|
100
|
+
GENERATE_CHI = NO
|
|
101
|
+
BINARY_TOC = NO
|
|
102
|
+
TOC_EXPAND = NO
|
|
103
|
+
DISABLE_INDEX = NO
|
|
104
|
+
ENUM_VALUES_PER_LINE = 4
|
|
105
|
+
GENERATE_TREEVIEW = YES
|
|
106
|
+
TREEVIEW_WIDTH = 250
|
|
107
|
+
#---------------------------------------------------------------------------
|
|
108
|
+
# configuration options related to the LaTeX output
|
|
109
|
+
#---------------------------------------------------------------------------
|
|
110
|
+
GENERATE_LATEX = NO
|
|
111
|
+
LATEX_OUTPUT = latex
|
|
112
|
+
LATEX_CMD_NAME = latex
|
|
113
|
+
MAKEINDEX_CMD_NAME = makeindex
|
|
114
|
+
COMPACT_LATEX = NO
|
|
115
|
+
PAPER_TYPE = a4wide
|
|
116
|
+
EXTRA_PACKAGES =
|
|
117
|
+
LATEX_HEADER =
|
|
118
|
+
PDF_HYPERLINKS = NO
|
|
119
|
+
USE_PDFLATEX = NO
|
|
120
|
+
LATEX_BATCHMODE = NO
|
|
121
|
+
LATEX_HIDE_INDICES = NO
|
|
122
|
+
#---------------------------------------------------------------------------
|
|
123
|
+
# configuration options related to the RTF output
|
|
124
|
+
#---------------------------------------------------------------------------
|
|
125
|
+
GENERATE_RTF = YES
|
|
126
|
+
RTF_OUTPUT = rtf
|
|
127
|
+
COMPACT_RTF = NO
|
|
128
|
+
RTF_HYPERLINKS = NO
|
|
129
|
+
RTF_STYLESHEET_FILE = camellia_stylesheet.dox
|
|
130
|
+
RTF_EXTENSIONS_FILE =
|
|
131
|
+
#---------------------------------------------------------------------------
|
|
132
|
+
# configuration options related to the man page output
|
|
133
|
+
#---------------------------------------------------------------------------
|
|
134
|
+
GENERATE_MAN = NO
|
|
135
|
+
MAN_OUTPUT = man
|
|
136
|
+
MAN_EXTENSION = .3
|
|
137
|
+
MAN_LINKS = NO
|
|
138
|
+
#---------------------------------------------------------------------------
|
|
139
|
+
# configuration options related to the XML output
|
|
140
|
+
#---------------------------------------------------------------------------
|
|
141
|
+
GENERATE_XML = NO
|
|
142
|
+
XML_OUTPUT = xml
|
|
143
|
+
XML_SCHEMA =
|
|
144
|
+
XML_DTD =
|
|
145
|
+
#---------------------------------------------------------------------------
|
|
146
|
+
# configuration options for the AutoGen Definitions output
|
|
147
|
+
#---------------------------------------------------------------------------
|
|
148
|
+
GENERATE_AUTOGEN_DEF = NO
|
|
149
|
+
#---------------------------------------------------------------------------
|
|
150
|
+
# configuration options related to the Perl module output
|
|
151
|
+
#---------------------------------------------------------------------------
|
|
152
|
+
GENERATE_PERLMOD = NO
|
|
153
|
+
PERLMOD_LATEX = NO
|
|
154
|
+
PERLMOD_PRETTY = YES
|
|
155
|
+
PERLMOD_MAKEVAR_PREFIX =
|
|
156
|
+
#---------------------------------------------------------------------------
|
|
157
|
+
# Configuration options related to the preprocessor
|
|
158
|
+
#---------------------------------------------------------------------------
|
|
159
|
+
ENABLE_PREPROCESSING = YES
|
|
160
|
+
MACRO_EXPANSION = NO
|
|
161
|
+
EXPAND_ONLY_PREDEF = NO
|
|
162
|
+
SEARCH_INCLUDES = NO
|
|
163
|
+
INCLUDE_PATH = .
|
|
164
|
+
INCLUDE_FILE_PATTERNS =
|
|
165
|
+
PREDEFINED = __cplusplus
|
|
166
|
+
EXPAND_AS_DEFINED = __cplusplus
|
|
167
|
+
SKIP_FUNCTION_MACROS = YES
|
|
168
|
+
#---------------------------------------------------------------------------
|
|
169
|
+
# Configuration::addtions related to external references
|
|
170
|
+
#---------------------------------------------------------------------------
|
|
171
|
+
TAGFILES =
|
|
172
|
+
GENERATE_TAGFILE =
|
|
173
|
+
ALLEXTERNALS = NO
|
|
174
|
+
EXTERNAL_GROUPS = YES
|
|
175
|
+
PERL_PATH = /usr/bin/perl
|
|
176
|
+
#---------------------------------------------------------------------------
|
|
177
|
+
# Configuration options related to the dot tool
|
|
178
|
+
#---------------------------------------------------------------------------
|
|
179
|
+
CLASS_DIAGRAMS = YES
|
|
180
|
+
HIDE_UNDOC_RELATIONS = YES
|
|
181
|
+
HAVE_DOT = NO
|
|
182
|
+
CLASS_GRAPH = YES
|
|
183
|
+
COLLABORATION_GRAPH = YES
|
|
184
|
+
TEMPLATE_RELATIONS = NO
|
|
185
|
+
INCLUDE_GRAPH = YES
|
|
186
|
+
INCLUDED_BY_GRAPH = YES
|
|
187
|
+
GRAPHICAL_HIERARCHY = YES
|
|
188
|
+
DOT_IMAGE_FORMAT = png
|
|
189
|
+
DOT_PATH =
|
|
190
|
+
DOTFILE_DIRS =
|
|
191
|
+
MAX_DOT_GRAPH_WIDTH = 1024
|
|
192
|
+
MAX_DOT_GRAPH_HEIGHT = 1024
|
|
193
|
+
MAX_DOT_GRAPH_DEPTH = 0
|
|
194
|
+
GENERATE_LEGEND = YES
|
|
195
|
+
DOT_CLEANUP = YES
|
|
196
|
+
#---------------------------------------------------------------------------
|
|
197
|
+
# Configuration::addtions related to the search engine
|
|
198
|
+
#---------------------------------------------------------------------------
|
|
199
|
+
SEARCHENGINE = NO
|
|
200
|
+
CGI_NAME = search.cgi
|
|
201
|
+
CGI_URL =
|
|
202
|
+
DOC_URL =
|
|
203
|
+
DOC_ABSPATH =
|
|
204
|
+
BIN_ABSPATH = /usr/local/bin/
|
|
205
|
+
EXT_DOC_PATHS =
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
|
3
|
+
<title>Camellia: Data Structures</title>
|
|
4
|
+
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
|
5
|
+
<link href="tabs.css" rel="stylesheet" type="text/css">
|
|
6
|
+
</head><body>
|
|
7
|
+
<!-- Generated by Doxygen 1.4.6 -->
|
|
8
|
+
<div class="tabs">
|
|
9
|
+
<ul>
|
|
10
|
+
<li><a href="main.html"><span>Main Page</span></a></li>
|
|
11
|
+
<li id="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
|
12
|
+
<li><a href="files.html"><span>Files</span></a></li>
|
|
13
|
+
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
|
14
|
+
</ul></div>
|
|
15
|
+
<div class="tabs">
|
|
16
|
+
<ul>
|
|
17
|
+
<li id="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
|
18
|
+
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
|
|
19
|
+
<li><a href="functions.html"><span>Data Fields</span></a></li>
|
|
20
|
+
</ul></div>
|
|
21
|
+
<h1>Camellia Data Structures</h1>Here are the data structures with brief descriptions:<table>
|
|
22
|
+
<tr><td class="indexkey"><a class="el" href="structCamArithmParams.html">CamArithmParams</a></td><td class="indexvalue">This is the parameter structure for the arithmetic computation kernel </td></tr>
|
|
23
|
+
<tr><td class="indexkey"><a class="el" href="structCamBasin.html">CamBasin</a></td><td class="indexvalue">The structure defining a basin </td></tr>
|
|
24
|
+
<tr><td class="indexkey"><a class="el" href="structCamBitmapFont.html">CamBitmapFont</a></td><td class="indexvalue">The bitmap font structure </td></tr>
|
|
25
|
+
<tr><td class="indexkey"><a class="el" href="structCamBlobInfo.html">CamBlobInfo</a></td><td class="indexvalue">The Blob (block of bits) Information Structure. This is the most important result of Labeling + Blob analysis </td></tr>
|
|
26
|
+
<tr><td class="indexkey"><a class="el" href="structCamBlobs.html">CamBlobs</a></td><td class="indexvalue">The result of any blob analysis. Essentially an array of <a class="el" href="structCamBlobInfo.html">CamBlobInfo</a> </td></tr>
|
|
27
|
+
<tr><td class="indexkey"><a class="el" href="structCamImage.html">CamImage</a></td><td class="indexvalue">The famous IplImage/CamImage structure, today's standard structure for image processing </td></tr>
|
|
28
|
+
<tr><td class="indexkey"><a class="el" href="structCamLabelingResults.html">CamLabelingResults</a></td><td class="indexvalue">Data structure containing the result of pixel-based labeling </td></tr>
|
|
29
|
+
<tr><td class="indexkey"><a class="el" href="structCamLinearFilterKernel.html">CamLinearFilterKernel</a></td><td class="indexvalue">The parameters structure for linear filtering </td></tr>
|
|
30
|
+
<tr><td class="indexkey"><a class="el" href="structCamMeasuresResults.html">CamMeasuresResults</a></td><td class="indexvalue">The structure containing the result of measuring </td></tr>
|
|
31
|
+
<tr><td class="indexkey"><a class="el" href="structCamMorphoMathsKernel.html">CamMorphoMathsKernel</a></td><td class="indexvalue">This is the parameter structure for the morpho maths kernel </td></tr>
|
|
32
|
+
<tr><td class="indexkey"><a class="el" href="structCamPoint.html">CamPoint</a></td><td class="indexvalue">The structure used by warping to identify a point in 2D </td></tr>
|
|
33
|
+
<tr><td class="indexkey"><a class="el" href="structCamRLEImage.html">CamRLEImage</a></td><td class="indexvalue">The <a class="el" href="structCamRLEImage.html">CamRLEImage</a> structure : the RLE (Run Length Encoded) image structure </td></tr>
|
|
34
|
+
<tr><td class="indexkey"><a class="el" href="structCamROI.html">CamROI</a></td><td class="indexvalue">The IPL Region Of Interest structure </td></tr>
|
|
35
|
+
<tr><td class="indexkey"><a class="el" href="structCamRun.html">CamRun</a></td><td class="indexvalue">The <a class="el" href="structCamRun.html">CamRun</a> structure, basic element of a Run-Length Encoding (RLE) of an image </td></tr>
|
|
36
|
+
<tr><td class="indexkey"><a class="el" href="structCamSepFilterKernel.html">CamSepFilterKernel</a></td><td class="indexvalue">The parameters structure for linear filtering </td></tr>
|
|
37
|
+
<tr><td class="indexkey"><a class="el" href="structCamTable.html">CamTable</a></td><td class="indexvalue">Pixel table (LUT (Look-Up Table) and histogram) structure </td></tr>
|
|
38
|
+
<tr><td class="indexkey"><a class="el" href="structCamTableOfBasins.html">CamTableOfBasins</a></td><td class="indexvalue">The table of basins structure. Simply a dynamic size array of <code><a class="el" href="structCamBasin.html">CamBasin</a></code> </td></tr>
|
|
39
|
+
<tr><td class="indexkey"><a class="el" href="structCamVolbergFwdParams.html">CamVolbergFwdParams</a></td><td class="indexvalue">The structure to provide to the Volberg's algorithm : two functions </td></tr>
|
|
40
|
+
<tr><td class="indexkey"><a class="el" href="structCamWarpingParams.html">CamWarpingParams</a></td><td class="indexvalue">The parameters structure used by <a class="el" href="camellia_8h.html#ad957d473fde58077a501728e5aa8f13">camWarping()</a> </td></tr>
|
|
41
|
+
</table>
|
|
42
|
+
<hr size="1"><address style="align: right;"><small>Generated on Wed Aug 2 14:00:17 2006 for Camellia by
|
|
43
|
+
<a href="http://www.doxygen.org/index.html">
|
|
44
|
+
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
|
|
45
|
+
</body>
|
|
46
|
+
</html>
|