camellia 2.7.0-i386-mswin32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/README +59 -0
  2. data/doc/README +58 -0
  3. data/doc/camellia.dox +205 -0
  4. data/ext/Debug/BuildLog.htm +0 -0
  5. data/ext/Debug/camellia.dll.embed.manifest +1 -0
  6. data/ext/Debug/vc80.idb +0 -0
  7. data/ext/Debug/vc80.pdb +0 -0
  8. data/ext/README +12 -0
  9. data/ext/Release/BuildLog.htm +0 -0
  10. data/ext/Release/camellia.exp +0 -0
  11. data/ext/Release/swig_ruby.pch +0 -0
  12. data/ext/Release/vc60.idb +0 -0
  13. data/ext/Release/vc80.idb +0 -0
  14. data/ext/camellia_ruby.i +493 -0
  15. data/ext/camellia_ruby_wrap.cpp +21103 -0
  16. data/ext/camellia_ruby_wrap.cxx +21103 -0
  17. data/ext/extconf.rb +12 -0
  18. data/ext/install.rb +11 -0
  19. data/ext/swig_ruby.dsp +159 -0
  20. data/ext/swig_ruby.plg +53 -0
  21. data/ext/swig_ruby.vcproj +290 -0
  22. data/ext/swig_ruby.vcproj.HAMBURG.Bruno STEUX.user +65 -0
  23. data/ext/test.rb +31 -0
  24. data/inc/SHLWAPI.H +661 -0
  25. data/inc/cam_capture.h +202 -0
  26. data/inc/camellia.h +2651 -0
  27. data/inc/camellia_internals.h +205 -0
  28. data/inc/config.h +59 -0
  29. data/inc/config.h.in +58 -0
  30. data/inc/stamp-h1 +1 -0
  31. data/lib/camellia-fox.rb +39 -0
  32. data/lib/camellia.dll +0 -0
  33. data/test/test_arithm.rb +13 -0
  34. data/test/test_capture.rb +15 -0
  35. data/test/test_color_labeling.rb +45 -0
  36. data/test/test_copy.rb +13 -0
  37. data/test/test_draw.rb +15 -0
  38. data/test/test_fixed_filters.rb +23 -0
  39. data/test/test_fox.rb +106 -0
  40. data/test/test_fox2.rb +108 -0
  41. data/test/test_histogram.rb +18 -0
  42. data/test/test_hough.rb +29 -0
  43. data/test/test_keypoints.rb +106 -0
  44. data/test/test_labeling.rb +30 -0
  45. data/test/test_mask.rb +34 -0
  46. data/test/test_warping.rb +46 -0
  47. data/test/test_watershed.rb +35 -0
  48. data/test/ts_camellia.rb +12 -0
  49. metadata +110 -0
data/README ADDED
@@ -0,0 +1,59 @@
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
+ ./configure
10
+ make
11
+ ./cam_demo (test. requires resources directory)
12
+ make install (requires administrator privileges)
13
+
14
+ Windows :
15
+ A Visual Studio 6 project file is provided, that creates the camellia.lib library and the demo application.
16
+ A VC++ Express "solution" is also provided.
17
+
18
+ The Camellia Image Processing Library is an open source low-level image processing library.
19
+ As it uses the IplImage structure to describe images, it is a good replacement to the IPL (Intel) library
20
+ and a good complement to the OpenCV library. It includes a lot of functions for image processing
21
+ (filtering, morphological mathematics, labelling, warping, loading/saving images, etc.),
22
+ some of them being highly optimized; It is also cross-platform and robust. It is doxygen-documented
23
+ and examples of use are provided.
24
+
25
+ This software library is an outcome of the Camellia european project (IST-2001-34410).
26
+ It was developped by the Ecole des Mines de Paris (ENSMP), in coordination with
27
+ the other partners of the projects.
28
+
29
+ ==========================================================================
30
+
31
+ Copyright (c) 2002-2007, Ecole des Mines de Paris - Centre de Robotique
32
+ All rights reserved.
33
+
34
+ Redistribution and use in source and binary forms, with or without
35
+ modification, are permitted provided that the following conditions are met:
36
+
37
+ * Redistributions of source code must retain the above copyright
38
+ notice, this list of conditions and the following disclaimer.
39
+ * Redistributions in binary form must reproduce the above copyright
40
+ notice, this list of conditions and the following disclaimer
41
+ in the documentation and/or other materials provided with the distribution.
42
+ * Neither the name of the Ecole des Mines de Paris nor the names of
43
+ its contributors may be used to endorse or promote products
44
+ derived from this software without specific prior written permission.
45
+
46
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
47
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
48
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
49
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
50
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
51
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
52
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
53
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
54
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
55
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
56
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57
+
58
+ ==========================================================================
59
+
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 'configure & make' to build the library.
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-2007, 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.7.0
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 =
Binary file
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1"></assembly>
Binary file
Binary file
data/ext/README ADDED
@@ -0,0 +1,12 @@
1
+ # How to build the Ruby wrapper for Camellia
2
+
3
+ cd ..
4
+ make dist
5
+ cd ext
6
+ swig -ruby -c++ camellia_ruby.i
7
+ ruby extconf.rb
8
+ make clean
9
+ make
10
+ cp camellia.so ../lib
11
+ sudo make install
12
+ sudo ruby install.rb
Binary file
Binary file
Binary file
Binary file
Binary file