dub 0.5.0
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.
Potentially problematic release.
This version of dub might be problematic. Click here for more details.
- data/.gitignore +8 -0
- data/History.txt +5 -0
- data/LICENSE +20 -0
- data/README.rdoc +53 -0
- data/Rakefile +58 -0
- data/dub.gemspec +194 -0
- data/lib/dub/argument.rb +261 -0
- data/lib/dub/entities_unescape.rb +16 -0
- data/lib/dub/function.rb +111 -0
- data/lib/dub/function_group.rb +74 -0
- data/lib/dub/generator.rb +15 -0
- data/lib/dub/group.rb +10 -0
- data/lib/dub/klass.rb +231 -0
- data/lib/dub/lua/class.cpp.erb +75 -0
- data/lib/dub/lua/class_gen.rb +78 -0
- data/lib/dub/lua/function.cpp.erb +4 -0
- data/lib/dub/lua/function_gen.rb +223 -0
- data/lib/dub/lua/group.cpp.erb +10 -0
- data/lib/dub/lua/lua_cpp_helper.h +141 -0
- data/lib/dub/lua/namespace.cpp.erb +35 -0
- data/lib/dub/lua/namespace_gen.rb +86 -0
- data/lib/dub/lua.rb +24 -0
- data/lib/dub/member_extraction.rb +88 -0
- data/lib/dub/namespace.rb +276 -0
- data/lib/dub/parser.rb +46 -0
- data/lib/dub/templates/lua_template.erb +21 -0
- data/lib/dub/version.rb +3 -0
- data/lib/dub.rb +26 -0
- data/test/argument_test.rb +423 -0
- data/test/fixtures/app/CMakeLists.txt +54 -0
- data/test/fixtures/app/Doxyfile +1600 -0
- data/test/fixtures/app/bindings/all_lua.cpp +299 -0
- data/test/fixtures/app/include/matrix.h +123 -0
- data/test/fixtures/app/make_lua_bindings.rb +13 -0
- data/test/fixtures/app/vendor/lua/CMakeLists.txt +25 -0
- data/test/fixtures/app/vendor/lua/COPYRIGHT +34 -0
- data/test/fixtures/app/vendor/lua/HISTORY +183 -0
- data/test/fixtures/app/vendor/lua/INSTALL +99 -0
- data/test/fixtures/app/vendor/lua/Makefile +183 -0
- data/test/fixtures/app/vendor/lua/README +37 -0
- data/test/fixtures/app/vendor/lua/lapi.c +1080 -0
- data/test/fixtures/app/vendor/lua/lapi.h +16 -0
- data/test/fixtures/app/vendor/lua/lauxlib.c +653 -0
- data/test/fixtures/app/vendor/lua/lauxlib.h +174 -0
- data/test/fixtures/app/vendor/lua/lbaselib.c +643 -0
- data/test/fixtures/app/vendor/lua/lcode.c +839 -0
- data/test/fixtures/app/vendor/lua/lcode.h +76 -0
- data/test/fixtures/app/vendor/lua/ldblib.c +397 -0
- data/test/fixtures/app/vendor/lua/ldebug.c +622 -0
- data/test/fixtures/app/vendor/lua/ldebug.h +33 -0
- data/test/fixtures/app/vendor/lua/ldo.c +516 -0
- data/test/fixtures/app/vendor/lua/ldo.h +57 -0
- data/test/fixtures/app/vendor/lua/ldump.c +164 -0
- data/test/fixtures/app/vendor/lua/lfunc.c +174 -0
- data/test/fixtures/app/vendor/lua/lfunc.h +34 -0
- data/test/fixtures/app/vendor/lua/lgc.c +711 -0
- data/test/fixtures/app/vendor/lua/lgc.h +110 -0
- data/test/fixtures/app/vendor/lua/liblua.a +0 -0
- data/test/fixtures/app/vendor/lua/linit.c +38 -0
- data/test/fixtures/app/vendor/lua/liolib.c +532 -0
- data/test/fixtures/app/vendor/lua/llex.c +461 -0
- data/test/fixtures/app/vendor/lua/llex.h +81 -0
- data/test/fixtures/app/vendor/lua/llimits.h +128 -0
- data/test/fixtures/app/vendor/lua/lmathlib.c +263 -0
- data/test/fixtures/app/vendor/lua/lmem.c +86 -0
- data/test/fixtures/app/vendor/lua/lmem.h +49 -0
- data/test/fixtures/app/vendor/lua/loadlib.c +664 -0
- data/test/fixtures/app/vendor/lua/lobject.c +214 -0
- data/test/fixtures/app/vendor/lua/lobject.h +381 -0
- data/test/fixtures/app/vendor/lua/lopcodes.c +102 -0
- data/test/fixtures/app/vendor/lua/lopcodes.h +268 -0
- data/test/fixtures/app/vendor/lua/loslib.c +244 -0
- data/test/fixtures/app/vendor/lua/lparser.c +1337 -0
- data/test/fixtures/app/vendor/lua/lparser.h +82 -0
- data/test/fixtures/app/vendor/lua/lstate.c +214 -0
- data/test/fixtures/app/vendor/lua/lstate.h +168 -0
- data/test/fixtures/app/vendor/lua/lstring.c +111 -0
- data/test/fixtures/app/vendor/lua/lstring.h +31 -0
- data/test/fixtures/app/vendor/lua/lstrlib.c +868 -0
- data/test/fixtures/app/vendor/lua/ltable.c +588 -0
- data/test/fixtures/app/vendor/lua/ltable.h +40 -0
- data/test/fixtures/app/vendor/lua/ltablib.c +278 -0
- data/test/fixtures/app/vendor/lua/ltm.c +75 -0
- data/test/fixtures/app/vendor/lua/ltm.h +54 -0
- data/test/fixtures/app/vendor/lua/lua.c +695 -0
- data/test/fixtures/app/vendor/lua/lua.h +385 -0
- data/test/fixtures/app/vendor/lua/lua_dub_helper.h +77 -0
- data/test/fixtures/app/vendor/lua/luac +0 -0
- data/test/fixtures/app/vendor/lua/luac.c +200 -0
- data/test/fixtures/app/vendor/lua/luaconf.h +762 -0
- data/test/fixtures/app/vendor/lua/lualib.h +53 -0
- data/test/fixtures/app/vendor/lua/lundump.c +223 -0
- data/test/fixtures/app/vendor/lua/lundump.h +36 -0
- data/test/fixtures/app/vendor/lua/lvm.c +765 -0
- data/test/fixtures/app/vendor/lua/lvm.h +36 -0
- data/test/fixtures/app/vendor/lua/lzio.c +82 -0
- data/test/fixtures/app/vendor/lua/lzio.h +67 -0
- data/test/fixtures/app/vendor/lua/matrix.h +102 -0
- data/test/fixtures/app/vendor/lua/print.c +227 -0
- data/test/fixtures/app/vendor/lua/test/README +26 -0
- data/test/fixtures/app/vendor/lua/test/bisect.lua +27 -0
- data/test/fixtures/app/vendor/lua/test/cf.lua +16 -0
- data/test/fixtures/app/vendor/lua/test/echo.lua +5 -0
- data/test/fixtures/app/vendor/lua/test/env.lua +7 -0
- data/test/fixtures/app/vendor/lua/test/factorial.lua +32 -0
- data/test/fixtures/app/vendor/lua/test/fib.lua +40 -0
- data/test/fixtures/app/vendor/lua/test/fibfor.lua +13 -0
- data/test/fixtures/app/vendor/lua/test/globals.lua +13 -0
- data/test/fixtures/app/vendor/lua/test/hello.lua +3 -0
- data/test/fixtures/app/vendor/lua/test/life.lua +111 -0
- data/test/fixtures/app/vendor/lua/test/luac.lua +7 -0
- data/test/fixtures/app/vendor/lua/test/printf.lua +7 -0
- data/test/fixtures/app/vendor/lua/test/readonly.lua +12 -0
- data/test/fixtures/app/vendor/lua/test/sieve.lua +29 -0
- data/test/fixtures/app/vendor/lua/test/sort.lua +66 -0
- data/test/fixtures/app/vendor/lua/test/table.lua +12 -0
- data/test/fixtures/app/vendor/lua/test/trace-calls.lua +32 -0
- data/test/fixtures/app/vendor/lua/test/trace-globals.lua +38 -0
- data/test/fixtures/app/vendor/lua/test/xd.lua +14 -0
- data/test/fixtures/app/xml/classdub_1_1_matrix.xml +239 -0
- data/test/fixtures/app/xml/classdub_1_1_t_mat.xml +233 -0
- data/test/fixtures/app/xml/combine.xslt +15 -0
- data/test/fixtures/app/xml/compound.xsd +814 -0
- data/test/fixtures/app/xml/dir_53661a2bdeb1d55e60581a7e15deb763.xml +12 -0
- data/test/fixtures/app/xml/index.xml +42 -0
- data/test/fixtures/app/xml/index.xsd +66 -0
- data/test/fixtures/app/xml/matrix_8h.xml +149 -0
- data/test/fixtures/app/xml/namespacedub.xml +41 -0
- data/test/fixtures/classcv_1_1_mat.xml +1996 -0
- data/test/fixtures/classcv_1_1_point__.xml +341 -0
- data/test/fixtures/classcv_1_1_size__.xml +270 -0
- data/test/fixtures/group___magic_type.xml +406 -0
- data/test/fixtures/namespacecv.xml +12659 -0
- data/test/function_group_test.rb +15 -0
- data/test/function_test.rb +252 -0
- data/test/group_test.rb +155 -0
- data/test/helper.rb +34 -0
- data/test/klass_test.rb +297 -0
- data/test/lua_function_gen_test.rb +179 -0
- data/test/namespace_test.rb +220 -0
- data/test/parser_test.rb +36 -0
- metadata +216 -0
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
|
|
2
|
+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.6.3">
|
|
3
|
+
<compounddef id="classcv_1_1_point__" kind="class" prot="public">
|
|
4
|
+
<compoundname>cv::Point_</compoundname>
|
|
5
|
+
<includes refid="cxcore_8hpp" local="no">cxcore.hpp</includes>
|
|
6
|
+
<templateparamlist>
|
|
7
|
+
<param>
|
|
8
|
+
<type>typename</type>
|
|
9
|
+
<declname>_Tp</declname>
|
|
10
|
+
<defname>_Tp</defname>
|
|
11
|
+
</param>
|
|
12
|
+
</templateparamlist>
|
|
13
|
+
<sectiondef kind="public-type">
|
|
14
|
+
<memberdef kind="typedef" id="classcv_1_1_point___1ac81cd00bbdd5d66cf87e32654596160e" prot="public" static="no">
|
|
15
|
+
<type>_Tp</type>
|
|
16
|
+
<definition>typedef _Tp cv::Point_< _Tp >::value_type</definition>
|
|
17
|
+
<argsstring></argsstring>
|
|
18
|
+
<name>value_type</name>
|
|
19
|
+
<briefdescription>
|
|
20
|
+
</briefdescription>
|
|
21
|
+
<detaileddescription>
|
|
22
|
+
</detaileddescription>
|
|
23
|
+
<inbodydescription>
|
|
24
|
+
</inbodydescription>
|
|
25
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="293" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="293" bodyend="-1"/>
|
|
26
|
+
</memberdef>
|
|
27
|
+
</sectiondef>
|
|
28
|
+
<sectiondef kind="public-attrib">
|
|
29
|
+
<memberdef kind="variable" id="classcv_1_1_point___1a4c96fa7bdbfe390be5ed356edb274ff3" prot="public" static="no" mutable="no">
|
|
30
|
+
<type>_Tp</type>
|
|
31
|
+
<definition>_Tp cv::Point_< _Tp >::x</definition>
|
|
32
|
+
<argsstring></argsstring>
|
|
33
|
+
<name>x</name>
|
|
34
|
+
<briefdescription>
|
|
35
|
+
</briefdescription>
|
|
36
|
+
<detaileddescription>
|
|
37
|
+
</detaileddescription>
|
|
38
|
+
<inbodydescription>
|
|
39
|
+
</inbodydescription>
|
|
40
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="312" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="312" bodyend="-1"/>
|
|
41
|
+
</memberdef>
|
|
42
|
+
<memberdef kind="variable" id="classcv_1_1_point___1a157337197338ff199e5df1a393022f15" prot="public" static="no" mutable="no">
|
|
43
|
+
<type>_Tp</type>
|
|
44
|
+
<definition>_Tp cv::Point_< _Tp >::y</definition>
|
|
45
|
+
<argsstring></argsstring>
|
|
46
|
+
<name>y</name>
|
|
47
|
+
<briefdescription>
|
|
48
|
+
</briefdescription>
|
|
49
|
+
<detaileddescription>
|
|
50
|
+
</detaileddescription>
|
|
51
|
+
<inbodydescription>
|
|
52
|
+
</inbodydescription>
|
|
53
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="312" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="312" bodyend="-1"/>
|
|
54
|
+
</memberdef>
|
|
55
|
+
</sectiondef>
|
|
56
|
+
<sectiondef kind="public-func">
|
|
57
|
+
<memberdef kind="function" id="classcv_1_1_point___1a415ac41e8676210b06bcfaf23d7e6105" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
58
|
+
<type></type>
|
|
59
|
+
<definition>cv::Point_< _Tp >::Point_</definition>
|
|
60
|
+
<argsstring>()</argsstring>
|
|
61
|
+
<name>Point_</name>
|
|
62
|
+
<briefdescription>
|
|
63
|
+
</briefdescription>
|
|
64
|
+
<detaileddescription>
|
|
65
|
+
</detaileddescription>
|
|
66
|
+
<inbodydescription>
|
|
67
|
+
</inbodydescription>
|
|
68
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="295"/>
|
|
69
|
+
</memberdef>
|
|
70
|
+
<memberdef kind="function" id="classcv_1_1_point___1a8db927bb4ec0aa348367566cb6219c0f" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
71
|
+
<type></type>
|
|
72
|
+
<definition>cv::Point_< _Tp >::Point_</definition>
|
|
73
|
+
<argsstring>(_Tp _x, _Tp _y)</argsstring>
|
|
74
|
+
<name>Point_</name>
|
|
75
|
+
<param>
|
|
76
|
+
<type>_Tp</type>
|
|
77
|
+
<declname>_x</declname>
|
|
78
|
+
</param>
|
|
79
|
+
<param>
|
|
80
|
+
<type>_Tp</type>
|
|
81
|
+
<declname>_y</declname>
|
|
82
|
+
</param>
|
|
83
|
+
<briefdescription>
|
|
84
|
+
</briefdescription>
|
|
85
|
+
<detaileddescription>
|
|
86
|
+
</detaileddescription>
|
|
87
|
+
<inbodydescription>
|
|
88
|
+
</inbodydescription>
|
|
89
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="296"/>
|
|
90
|
+
</memberdef>
|
|
91
|
+
<memberdef kind="function" id="classcv_1_1_point___1a58704d8c14d03c1fc738d87f6bf3d35c" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
92
|
+
<type></type>
|
|
93
|
+
<definition>cv::Point_< _Tp >::Point_</definition>
|
|
94
|
+
<argsstring>(const Point_ &pt)</argsstring>
|
|
95
|
+
<name>Point_</name>
|
|
96
|
+
<param>
|
|
97
|
+
<type>const <ref refid="classcv_1_1_point__" kindref="compound">Point_</ref> &</type>
|
|
98
|
+
<declname>pt</declname>
|
|
99
|
+
</param>
|
|
100
|
+
<briefdescription>
|
|
101
|
+
</briefdescription>
|
|
102
|
+
<detaileddescription>
|
|
103
|
+
</detaileddescription>
|
|
104
|
+
<inbodydescription>
|
|
105
|
+
</inbodydescription>
|
|
106
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="297"/>
|
|
107
|
+
</memberdef>
|
|
108
|
+
<memberdef kind="function" id="classcv_1_1_point___1ae28e0cbfecf24417db92f2483abad146" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
109
|
+
<type></type>
|
|
110
|
+
<definition>cv::Point_< _Tp >::Point_</definition>
|
|
111
|
+
<argsstring>(const CvPoint &pt)</argsstring>
|
|
112
|
+
<name>Point_</name>
|
|
113
|
+
<param>
|
|
114
|
+
<type>const <ref refid="struct_cv_point" kindref="compound">CvPoint</ref> &</type>
|
|
115
|
+
<declname>pt</declname>
|
|
116
|
+
</param>
|
|
117
|
+
<briefdescription>
|
|
118
|
+
</briefdescription>
|
|
119
|
+
<detaileddescription>
|
|
120
|
+
</detaileddescription>
|
|
121
|
+
<inbodydescription>
|
|
122
|
+
</inbodydescription>
|
|
123
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="298"/>
|
|
124
|
+
</memberdef>
|
|
125
|
+
<memberdef kind="function" id="classcv_1_1_point___1a552ff5edaa99c5cd41af246f538b1aa1" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
126
|
+
<type></type>
|
|
127
|
+
<definition>cv::Point_< _Tp >::Point_</definition>
|
|
128
|
+
<argsstring>(const CvPoint2D32f &pt)</argsstring>
|
|
129
|
+
<name>Point_</name>
|
|
130
|
+
<param>
|
|
131
|
+
<type>const <ref refid="struct_cv_point2_d32f" kindref="compound">CvPoint2D32f</ref> &</type>
|
|
132
|
+
<declname>pt</declname>
|
|
133
|
+
</param>
|
|
134
|
+
<briefdescription>
|
|
135
|
+
</briefdescription>
|
|
136
|
+
<detaileddescription>
|
|
137
|
+
</detaileddescription>
|
|
138
|
+
<inbodydescription>
|
|
139
|
+
</inbodydescription>
|
|
140
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="299"/>
|
|
141
|
+
</memberdef>
|
|
142
|
+
<memberdef kind="function" id="classcv_1_1_point___1a3d82eb725fc94c259b4467db3eb2f17c" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
143
|
+
<type></type>
|
|
144
|
+
<definition>cv::Point_< _Tp >::Point_</definition>
|
|
145
|
+
<argsstring>(const Size_< _Tp > &sz)</argsstring>
|
|
146
|
+
<name>Point_</name>
|
|
147
|
+
<param>
|
|
148
|
+
<type>const <ref refid="classcv_1_1_size__" kindref="compound">Size_</ref>< _Tp > &</type>
|
|
149
|
+
<declname>sz</declname>
|
|
150
|
+
</param>
|
|
151
|
+
<briefdescription>
|
|
152
|
+
</briefdescription>
|
|
153
|
+
<detaileddescription>
|
|
154
|
+
</detaileddescription>
|
|
155
|
+
<inbodydescription>
|
|
156
|
+
</inbodydescription>
|
|
157
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="300"/>
|
|
158
|
+
</memberdef>
|
|
159
|
+
<memberdef kind="function" id="classcv_1_1_point___1a60730a6fd845368d2323f62a186d8fe7" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
160
|
+
<type></type>
|
|
161
|
+
<definition>cv::Point_< _Tp >::Point_</definition>
|
|
162
|
+
<argsstring>(const Vec< _Tp, 2 > &v)</argsstring>
|
|
163
|
+
<name>Point_</name>
|
|
164
|
+
<param>
|
|
165
|
+
<type>const <ref refid="classcv_1_1_vec" kindref="compound">Vec</ref>< _Tp, 2 > &</type>
|
|
166
|
+
<declname>v</declname>
|
|
167
|
+
</param>
|
|
168
|
+
<briefdescription>
|
|
169
|
+
</briefdescription>
|
|
170
|
+
<detaileddescription>
|
|
171
|
+
</detaileddescription>
|
|
172
|
+
<inbodydescription>
|
|
173
|
+
</inbodydescription>
|
|
174
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="301"/>
|
|
175
|
+
</memberdef>
|
|
176
|
+
<memberdef kind="function" id="classcv_1_1_point___1abf33cd1b15c729e84a3f6351b8a8f814" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
177
|
+
<type><ref refid="classcv_1_1_point__" kindref="compound">Point_</ref> &</type>
|
|
178
|
+
<definition>Point_& cv::Point_< _Tp >::operator=</definition>
|
|
179
|
+
<argsstring>(const Point_ &pt)</argsstring>
|
|
180
|
+
<name>operator=</name>
|
|
181
|
+
<param>
|
|
182
|
+
<type>const <ref refid="classcv_1_1_point__" kindref="compound">Point_</ref> &</type>
|
|
183
|
+
<declname>pt</declname>
|
|
184
|
+
</param>
|
|
185
|
+
<briefdescription>
|
|
186
|
+
</briefdescription>
|
|
187
|
+
<detaileddescription>
|
|
188
|
+
</detaileddescription>
|
|
189
|
+
<inbodydescription>
|
|
190
|
+
</inbodydescription>
|
|
191
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="302"/>
|
|
192
|
+
</memberdef>
|
|
193
|
+
<memberdef kind="function" id="classcv_1_1_point___1a72c0e5b99a1157d2f928149456de3904" prot="public" static="no" const="yes" explicit="no" inline="yes" virt="non-virtual">
|
|
194
|
+
<templateparamlist>
|
|
195
|
+
<param>
|
|
196
|
+
<type>typename _Tp2</type>
|
|
197
|
+
</param>
|
|
198
|
+
</templateparamlist>
|
|
199
|
+
<type></type>
|
|
200
|
+
<definition>cv::Point_< _Tp >::operator Point_< _Tp2 ></definition>
|
|
201
|
+
<argsstring>() const </argsstring>
|
|
202
|
+
<name>operator Point_< _Tp2 ></name>
|
|
203
|
+
<briefdescription>
|
|
204
|
+
</briefdescription>
|
|
205
|
+
<detaileddescription>
|
|
206
|
+
</detaileddescription>
|
|
207
|
+
<inbodydescription>
|
|
208
|
+
</inbodydescription>
|
|
209
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="303"/>
|
|
210
|
+
</memberdef>
|
|
211
|
+
<memberdef kind="function" id="classcv_1_1_point___1a77d2b671affc935b7c1cfc0edaa62f9c" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
212
|
+
<type></type>
|
|
213
|
+
<definition>cv::Point_< _Tp >::operator CvPoint</definition>
|
|
214
|
+
<argsstring>() const </argsstring>
|
|
215
|
+
<name>operator CvPoint</name>
|
|
216
|
+
<briefdescription>
|
|
217
|
+
</briefdescription>
|
|
218
|
+
<detaileddescription>
|
|
219
|
+
</detaileddescription>
|
|
220
|
+
<inbodydescription>
|
|
221
|
+
</inbodydescription>
|
|
222
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="304"/>
|
|
223
|
+
</memberdef>
|
|
224
|
+
<memberdef kind="function" id="classcv_1_1_point___1a79a8a8009aa87eb94796ddf56e221153" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
225
|
+
<type></type>
|
|
226
|
+
<definition>cv::Point_< _Tp >::operator CvPoint2D32f</definition>
|
|
227
|
+
<argsstring>() const </argsstring>
|
|
228
|
+
<name>operator CvPoint2D32f</name>
|
|
229
|
+
<briefdescription>
|
|
230
|
+
</briefdescription>
|
|
231
|
+
<detaileddescription>
|
|
232
|
+
</detaileddescription>
|
|
233
|
+
<inbodydescription>
|
|
234
|
+
</inbodydescription>
|
|
235
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="305"/>
|
|
236
|
+
</memberdef>
|
|
237
|
+
<memberdef kind="function" id="classcv_1_1_point___1a0b4aa067273ddcfa0944ef735aa49cd3" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
238
|
+
<type></type>
|
|
239
|
+
<definition>cv::Point_< _Tp >::operator Vec< _Tp, 2 ></definition>
|
|
240
|
+
<argsstring>() const </argsstring>
|
|
241
|
+
<name>operator Vec< _Tp, 2 ></name>
|
|
242
|
+
<briefdescription>
|
|
243
|
+
</briefdescription>
|
|
244
|
+
<detaileddescription>
|
|
245
|
+
</detaileddescription>
|
|
246
|
+
<inbodydescription>
|
|
247
|
+
</inbodydescription>
|
|
248
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="306"/>
|
|
249
|
+
</memberdef>
|
|
250
|
+
<memberdef kind="function" id="classcv_1_1_point___1af9558abc8b94931be0a7d1ae67ef26bc" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
251
|
+
<type>_Tp</type>
|
|
252
|
+
<definition>_Tp cv::Point_< _Tp >::dot</definition>
|
|
253
|
+
<argsstring>(const Point_ &pt) const </argsstring>
|
|
254
|
+
<name>dot</name>
|
|
255
|
+
<param>
|
|
256
|
+
<type>const <ref refid="classcv_1_1_point__" kindref="compound">Point_</ref> &</type>
|
|
257
|
+
<declname>pt</declname>
|
|
258
|
+
</param>
|
|
259
|
+
<briefdescription>
|
|
260
|
+
</briefdescription>
|
|
261
|
+
<detaileddescription>
|
|
262
|
+
</detaileddescription>
|
|
263
|
+
<inbodydescription>
|
|
264
|
+
</inbodydescription>
|
|
265
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="308"/>
|
|
266
|
+
</memberdef>
|
|
267
|
+
<memberdef kind="function" id="classcv_1_1_point___1a16c34b89a3aabb419ed9f7833bf47c38" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
268
|
+
<type>double</type>
|
|
269
|
+
<definition>double cv::Point_< _Tp >::ddot</definition>
|
|
270
|
+
<argsstring>(const Point_ &pt) const </argsstring>
|
|
271
|
+
<name>ddot</name>
|
|
272
|
+
<param>
|
|
273
|
+
<type>const <ref refid="classcv_1_1_point__" kindref="compound">Point_</ref> &</type>
|
|
274
|
+
<declname>pt</declname>
|
|
275
|
+
</param>
|
|
276
|
+
<briefdescription>
|
|
277
|
+
</briefdescription>
|
|
278
|
+
<detaileddescription>
|
|
279
|
+
</detaileddescription>
|
|
280
|
+
<inbodydescription>
|
|
281
|
+
</inbodydescription>
|
|
282
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="309"/>
|
|
283
|
+
</memberdef>
|
|
284
|
+
<memberdef kind="function" id="classcv_1_1_point___1adbc44df0fd35d69af5ec2d13438b24bd" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
285
|
+
<type>bool</type>
|
|
286
|
+
<definition>bool cv::Point_< _Tp >::inside</definition>
|
|
287
|
+
<argsstring>(const Rect_< _Tp > &r) const </argsstring>
|
|
288
|
+
<name>inside</name>
|
|
289
|
+
<param>
|
|
290
|
+
<type>const <ref refid="classcv_1_1_rect__" kindref="compound">Rect_</ref>< _Tp > &</type>
|
|
291
|
+
<declname>r</declname>
|
|
292
|
+
</param>
|
|
293
|
+
<briefdescription>
|
|
294
|
+
</briefdescription>
|
|
295
|
+
<detaileddescription>
|
|
296
|
+
</detaileddescription>
|
|
297
|
+
<inbodydescription>
|
|
298
|
+
</inbodydescription>
|
|
299
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="310"/>
|
|
300
|
+
</memberdef>
|
|
301
|
+
</sectiondef>
|
|
302
|
+
<briefdescription>
|
|
303
|
+
</briefdescription>
|
|
304
|
+
<detaileddescription>
|
|
305
|
+
</detaileddescription>
|
|
306
|
+
<collaborationgraph>
|
|
307
|
+
<node id="329">
|
|
308
|
+
<label>cv::Point_< _Tp ></label>
|
|
309
|
+
<link refid="classcv_1_1_point__"/>
|
|
310
|
+
<childnode refid="330" relation="usage">
|
|
311
|
+
<edgelabel>x</edgelabel>
|
|
312
|
+
<edgelabel>y</edgelabel>
|
|
313
|
+
</childnode>
|
|
314
|
+
</node>
|
|
315
|
+
<node id="330">
|
|
316
|
+
<label>_Tp</label>
|
|
317
|
+
</node>
|
|
318
|
+
</collaborationgraph>
|
|
319
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="291" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="290" bodyend="313"/>
|
|
320
|
+
<listofallmembers>
|
|
321
|
+
<member refid="classcv_1_1_point___1a16c34b89a3aabb419ed9f7833bf47c38" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>ddot</name></member>
|
|
322
|
+
<member refid="classcv_1_1_point___1af9558abc8b94931be0a7d1ae67ef26bc" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>dot</name></member>
|
|
323
|
+
<member refid="classcv_1_1_point___1adbc44df0fd35d69af5ec2d13438b24bd" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>inside</name></member>
|
|
324
|
+
<member refid="classcv_1_1_point___1a77d2b671affc935b7c1cfc0edaa62f9c" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>operator CvPoint</name></member>
|
|
325
|
+
<member refid="classcv_1_1_point___1a79a8a8009aa87eb94796ddf56e221153" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>operator CvPoint2D32f</name></member>
|
|
326
|
+
<member refid="classcv_1_1_point___1a72c0e5b99a1157d2f928149456de3904" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>operator Point_< _Tp2 ></name></member>
|
|
327
|
+
<member refid="classcv_1_1_point___1a0b4aa067273ddcfa0944ef735aa49cd3" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>operator Vec< _Tp, 2 ></name></member>
|
|
328
|
+
<member refid="classcv_1_1_point___1abf33cd1b15c729e84a3f6351b8a8f814" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>operator=</name></member>
|
|
329
|
+
<member refid="classcv_1_1_point___1a415ac41e8676210b06bcfaf23d7e6105" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>Point_</name></member>
|
|
330
|
+
<member refid="classcv_1_1_point___1a8db927bb4ec0aa348367566cb6219c0f" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>Point_</name></member>
|
|
331
|
+
<member refid="classcv_1_1_point___1a58704d8c14d03c1fc738d87f6bf3d35c" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>Point_</name></member>
|
|
332
|
+
<member refid="classcv_1_1_point___1ae28e0cbfecf24417db92f2483abad146" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>Point_</name></member>
|
|
333
|
+
<member refid="classcv_1_1_point___1a552ff5edaa99c5cd41af246f538b1aa1" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>Point_</name></member>
|
|
334
|
+
<member refid="classcv_1_1_point___1a3d82eb725fc94c259b4467db3eb2f17c" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>Point_</name></member>
|
|
335
|
+
<member refid="classcv_1_1_point___1a60730a6fd845368d2323f62a186d8fe7" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>Point_</name></member>
|
|
336
|
+
<member refid="classcv_1_1_point___1ac81cd00bbdd5d66cf87e32654596160e" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>value_type</name></member>
|
|
337
|
+
<member refid="classcv_1_1_point___1a4c96fa7bdbfe390be5ed356edb274ff3" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>x</name></member>
|
|
338
|
+
<member refid="classcv_1_1_point___1a157337197338ff199e5df1a393022f15" prot="public" virt="non-virtual"><scope>cv::Point_</scope><name>y</name></member>
|
|
339
|
+
</listofallmembers>
|
|
340
|
+
</compounddef>
|
|
341
|
+
</doxygen>
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
|
|
2
|
+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.6.3">
|
|
3
|
+
<compounddef id="classcv_1_1_size__" kind="class" prot="public">
|
|
4
|
+
<compoundname>cv::Size_</compoundname>
|
|
5
|
+
<includes refid="cxcore_8hpp" local="no">cxcore.hpp</includes>
|
|
6
|
+
<templateparamlist>
|
|
7
|
+
<param>
|
|
8
|
+
<type>typename</type>
|
|
9
|
+
<declname>_Tp</declname>
|
|
10
|
+
<defname>_Tp</defname>
|
|
11
|
+
</param>
|
|
12
|
+
</templateparamlist>
|
|
13
|
+
<sectiondef kind="public-type">
|
|
14
|
+
<memberdef kind="typedef" id="classcv_1_1_size___1a545d43b608de451311855c2ef808642d" prot="public" static="no">
|
|
15
|
+
<type>_Tp</type>
|
|
16
|
+
<definition>typedef _Tp cv::Size_< _Tp >::value_type</definition>
|
|
17
|
+
<argsstring></argsstring>
|
|
18
|
+
<name>value_type</name>
|
|
19
|
+
<briefdescription>
|
|
20
|
+
</briefdescription>
|
|
21
|
+
<detaileddescription>
|
|
22
|
+
</detaileddescription>
|
|
23
|
+
<inbodydescription>
|
|
24
|
+
</inbodydescription>
|
|
25
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="346" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="346" bodyend="-1"/>
|
|
26
|
+
</memberdef>
|
|
27
|
+
</sectiondef>
|
|
28
|
+
<sectiondef kind="public-attrib">
|
|
29
|
+
<memberdef kind="variable" id="classcv_1_1_size___1abfe0367b32c407ddccf5ddf92667c73d" prot="public" static="no" mutable="no">
|
|
30
|
+
<type>_Tp</type>
|
|
31
|
+
<definition>_Tp cv::Size_< _Tp >::width</definition>
|
|
32
|
+
<argsstring></argsstring>
|
|
33
|
+
<name>width</name>
|
|
34
|
+
<briefdescription>
|
|
35
|
+
</briefdescription>
|
|
36
|
+
<detaileddescription>
|
|
37
|
+
</detaileddescription>
|
|
38
|
+
<inbodydescription>
|
|
39
|
+
</inbodydescription>
|
|
40
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="361" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="361" bodyend="-1"/>
|
|
41
|
+
</memberdef>
|
|
42
|
+
<memberdef kind="variable" id="classcv_1_1_size___1a1d289dce6b5d8006a54f3ee0259fc545" prot="public" static="no" mutable="no">
|
|
43
|
+
<type>_Tp</type>
|
|
44
|
+
<definition>_Tp cv::Size_< _Tp >::height</definition>
|
|
45
|
+
<argsstring></argsstring>
|
|
46
|
+
<name>height</name>
|
|
47
|
+
<briefdescription>
|
|
48
|
+
</briefdescription>
|
|
49
|
+
<detaileddescription>
|
|
50
|
+
</detaileddescription>
|
|
51
|
+
<inbodydescription>
|
|
52
|
+
</inbodydescription>
|
|
53
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="361" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="361" bodyend="-1"/>
|
|
54
|
+
</memberdef>
|
|
55
|
+
</sectiondef>
|
|
56
|
+
<sectiondef kind="public-func">
|
|
57
|
+
<memberdef kind="function" id="classcv_1_1_size___1ae09ae11fd75a16928ca40980ad46a9bf" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
58
|
+
<type></type>
|
|
59
|
+
<definition>cv::Size_< _Tp >::Size_</definition>
|
|
60
|
+
<argsstring>()</argsstring>
|
|
61
|
+
<name>Size_</name>
|
|
62
|
+
<briefdescription>
|
|
63
|
+
</briefdescription>
|
|
64
|
+
<detaileddescription>
|
|
65
|
+
</detaileddescription>
|
|
66
|
+
<inbodydescription>
|
|
67
|
+
</inbodydescription>
|
|
68
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="348"/>
|
|
69
|
+
</memberdef>
|
|
70
|
+
<memberdef kind="function" id="classcv_1_1_size___1a45c97e9a4930d73fde11c2acc5f371ac" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
71
|
+
<type></type>
|
|
72
|
+
<definition>cv::Size_< _Tp >::Size_</definition>
|
|
73
|
+
<argsstring>(_Tp _width, _Tp _height)</argsstring>
|
|
74
|
+
<name>Size_</name>
|
|
75
|
+
<param>
|
|
76
|
+
<type>_Tp</type>
|
|
77
|
+
<declname>_width</declname>
|
|
78
|
+
</param>
|
|
79
|
+
<param>
|
|
80
|
+
<type>_Tp</type>
|
|
81
|
+
<declname>_height</declname>
|
|
82
|
+
</param>
|
|
83
|
+
<briefdescription>
|
|
84
|
+
</briefdescription>
|
|
85
|
+
<detaileddescription>
|
|
86
|
+
</detaileddescription>
|
|
87
|
+
<inbodydescription>
|
|
88
|
+
</inbodydescription>
|
|
89
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="349"/>
|
|
90
|
+
</memberdef>
|
|
91
|
+
<memberdef kind="function" id="classcv_1_1_size___1abe760f15bf01a0ee3f51d81f4f8ea259" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
92
|
+
<type></type>
|
|
93
|
+
<definition>cv::Size_< _Tp >::Size_</definition>
|
|
94
|
+
<argsstring>(const Size_ &sz)</argsstring>
|
|
95
|
+
<name>Size_</name>
|
|
96
|
+
<param>
|
|
97
|
+
<type>const <ref refid="classcv_1_1_size__" kindref="compound">Size_</ref> &</type>
|
|
98
|
+
<declname>sz</declname>
|
|
99
|
+
</param>
|
|
100
|
+
<briefdescription>
|
|
101
|
+
</briefdescription>
|
|
102
|
+
<detaileddescription>
|
|
103
|
+
</detaileddescription>
|
|
104
|
+
<inbodydescription>
|
|
105
|
+
</inbodydescription>
|
|
106
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="350"/>
|
|
107
|
+
</memberdef>
|
|
108
|
+
<memberdef kind="function" id="classcv_1_1_size___1a77f2cfcaf863a5e91b84aa7fde6b64bb" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
109
|
+
<type></type>
|
|
110
|
+
<definition>cv::Size_< _Tp >::Size_</definition>
|
|
111
|
+
<argsstring>(const CvSize &sz)</argsstring>
|
|
112
|
+
<name>Size_</name>
|
|
113
|
+
<param>
|
|
114
|
+
<type>const <ref refid="struct_cv_size" kindref="compound">CvSize</ref> &</type>
|
|
115
|
+
<declname>sz</declname>
|
|
116
|
+
</param>
|
|
117
|
+
<briefdescription>
|
|
118
|
+
</briefdescription>
|
|
119
|
+
<detaileddescription>
|
|
120
|
+
</detaileddescription>
|
|
121
|
+
<inbodydescription>
|
|
122
|
+
</inbodydescription>
|
|
123
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="351"/>
|
|
124
|
+
</memberdef>
|
|
125
|
+
<memberdef kind="function" id="classcv_1_1_size___1a9d9a4c7977d6d4bf9101954ce1bac941" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
126
|
+
<type></type>
|
|
127
|
+
<definition>cv::Size_< _Tp >::Size_</definition>
|
|
128
|
+
<argsstring>(const CvSize2D32f &sz)</argsstring>
|
|
129
|
+
<name>Size_</name>
|
|
130
|
+
<param>
|
|
131
|
+
<type>const <ref refid="struct_cv_size2_d32f" kindref="compound">CvSize2D32f</ref> &</type>
|
|
132
|
+
<declname>sz</declname>
|
|
133
|
+
</param>
|
|
134
|
+
<briefdescription>
|
|
135
|
+
</briefdescription>
|
|
136
|
+
<detaileddescription>
|
|
137
|
+
</detaileddescription>
|
|
138
|
+
<inbodydescription>
|
|
139
|
+
</inbodydescription>
|
|
140
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="352"/>
|
|
141
|
+
</memberdef>
|
|
142
|
+
<memberdef kind="function" id="classcv_1_1_size___1a2c6d59e6fe58dc2cda78504271b7ec6c" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
143
|
+
<type></type>
|
|
144
|
+
<definition>cv::Size_< _Tp >::Size_</definition>
|
|
145
|
+
<argsstring>(const Point_< _Tp > &pt)</argsstring>
|
|
146
|
+
<name>Size_</name>
|
|
147
|
+
<param>
|
|
148
|
+
<type>const <ref refid="classcv_1_1_point__" kindref="compound">Point_</ref>< _Tp > &</type>
|
|
149
|
+
<declname>pt</declname>
|
|
150
|
+
</param>
|
|
151
|
+
<briefdescription>
|
|
152
|
+
</briefdescription>
|
|
153
|
+
<detaileddescription>
|
|
154
|
+
</detaileddescription>
|
|
155
|
+
<inbodydescription>
|
|
156
|
+
</inbodydescription>
|
|
157
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="353"/>
|
|
158
|
+
</memberdef>
|
|
159
|
+
<memberdef kind="function" id="classcv_1_1_size___1a7a115285576d3211b24bda4628ee7f4d" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
|
160
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size_</ref> &</type>
|
|
161
|
+
<definition>Size_& cv::Size_< _Tp >::operator=</definition>
|
|
162
|
+
<argsstring>(const Size_ &sz)</argsstring>
|
|
163
|
+
<name>operator=</name>
|
|
164
|
+
<param>
|
|
165
|
+
<type>const <ref refid="classcv_1_1_size__" kindref="compound">Size_</ref> &</type>
|
|
166
|
+
<declname>sz</declname>
|
|
167
|
+
</param>
|
|
168
|
+
<briefdescription>
|
|
169
|
+
</briefdescription>
|
|
170
|
+
<detaileddescription>
|
|
171
|
+
</detaileddescription>
|
|
172
|
+
<inbodydescription>
|
|
173
|
+
</inbodydescription>
|
|
174
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="354"/>
|
|
175
|
+
</memberdef>
|
|
176
|
+
<memberdef kind="function" id="classcv_1_1_size___1a9778005e591a0cc20c69ad8325cf2bcd" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
177
|
+
<type>_Tp</type>
|
|
178
|
+
<definition>_Tp cv::Size_< _Tp >::area</definition>
|
|
179
|
+
<argsstring>() const </argsstring>
|
|
180
|
+
<name>area</name>
|
|
181
|
+
<briefdescription>
|
|
182
|
+
</briefdescription>
|
|
183
|
+
<detaileddescription>
|
|
184
|
+
</detaileddescription>
|
|
185
|
+
<inbodydescription>
|
|
186
|
+
</inbodydescription>
|
|
187
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="355"/>
|
|
188
|
+
</memberdef>
|
|
189
|
+
<memberdef kind="function" id="classcv_1_1_size___1ab2f57fa789ce8700f3aae08a0bd35e58" prot="public" static="no" const="yes" explicit="no" inline="yes" virt="non-virtual">
|
|
190
|
+
<templateparamlist>
|
|
191
|
+
<param>
|
|
192
|
+
<type>typename _Tp2</type>
|
|
193
|
+
</param>
|
|
194
|
+
</templateparamlist>
|
|
195
|
+
<type></type>
|
|
196
|
+
<definition>cv::Size_< _Tp >::operator Size_< _Tp2 ></definition>
|
|
197
|
+
<argsstring>() const </argsstring>
|
|
198
|
+
<name>operator Size_< _Tp2 ></name>
|
|
199
|
+
<briefdescription>
|
|
200
|
+
</briefdescription>
|
|
201
|
+
<detaileddescription>
|
|
202
|
+
</detaileddescription>
|
|
203
|
+
<inbodydescription>
|
|
204
|
+
</inbodydescription>
|
|
205
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="357"/>
|
|
206
|
+
</memberdef>
|
|
207
|
+
<memberdef kind="function" id="classcv_1_1_size___1a7256e3023448f08aae7aa7406e809502" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
208
|
+
<type></type>
|
|
209
|
+
<definition>cv::Size_< _Tp >::operator CvSize</definition>
|
|
210
|
+
<argsstring>() const </argsstring>
|
|
211
|
+
<name>operator CvSize</name>
|
|
212
|
+
<briefdescription>
|
|
213
|
+
</briefdescription>
|
|
214
|
+
<detaileddescription>
|
|
215
|
+
</detaileddescription>
|
|
216
|
+
<inbodydescription>
|
|
217
|
+
</inbodydescription>
|
|
218
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="358"/>
|
|
219
|
+
</memberdef>
|
|
220
|
+
<memberdef kind="function" id="classcv_1_1_size___1a7a06105145aeae88c7a0701bda4135a1" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
|
221
|
+
<type></type>
|
|
222
|
+
<definition>cv::Size_< _Tp >::operator CvSize2D32f</definition>
|
|
223
|
+
<argsstring>() const </argsstring>
|
|
224
|
+
<name>operator CvSize2D32f</name>
|
|
225
|
+
<briefdescription>
|
|
226
|
+
</briefdescription>
|
|
227
|
+
<detaileddescription>
|
|
228
|
+
</detaileddescription>
|
|
229
|
+
<inbodydescription>
|
|
230
|
+
</inbodydescription>
|
|
231
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="359"/>
|
|
232
|
+
</memberdef>
|
|
233
|
+
</sectiondef>
|
|
234
|
+
<briefdescription>
|
|
235
|
+
</briefdescription>
|
|
236
|
+
<detaileddescription>
|
|
237
|
+
<para>Represent a two dimensional size using the template typename. The class contains two fields: <computeroutput>height</computeroutput> (rows) and <computeroutput>width</computeroutput> (acols). <simplesect kind="see"><para><ref refid="namespacecv_1a346f563897249351a34549137c8532a0" kindref="member">Size</ref> </para></simplesect>
|
|
238
|
+
</para> </detaileddescription>
|
|
239
|
+
<collaborationgraph>
|
|
240
|
+
<node id="361">
|
|
241
|
+
<label>_Tp</label>
|
|
242
|
+
</node>
|
|
243
|
+
<node id="360">
|
|
244
|
+
<label>cv::Size_< _Tp ></label>
|
|
245
|
+
<link refid="classcv_1_1_size__"/>
|
|
246
|
+
<childnode refid="361" relation="usage">
|
|
247
|
+
<edgelabel>width</edgelabel>
|
|
248
|
+
<edgelabel>height</edgelabel>
|
|
249
|
+
</childnode>
|
|
250
|
+
</node>
|
|
251
|
+
</collaborationgraph>
|
|
252
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="344" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="343" bodyend="362"/>
|
|
253
|
+
<listofallmembers>
|
|
254
|
+
<member refid="classcv_1_1_size___1a9778005e591a0cc20c69ad8325cf2bcd" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>area</name></member>
|
|
255
|
+
<member refid="classcv_1_1_size___1a1d289dce6b5d8006a54f3ee0259fc545" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>height</name></member>
|
|
256
|
+
<member refid="classcv_1_1_size___1a7256e3023448f08aae7aa7406e809502" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>operator CvSize</name></member>
|
|
257
|
+
<member refid="classcv_1_1_size___1a7a06105145aeae88c7a0701bda4135a1" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>operator CvSize2D32f</name></member>
|
|
258
|
+
<member refid="classcv_1_1_size___1ab2f57fa789ce8700f3aae08a0bd35e58" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>operator Size_< _Tp2 ></name></member>
|
|
259
|
+
<member refid="classcv_1_1_size___1a7a115285576d3211b24bda4628ee7f4d" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>operator=</name></member>
|
|
260
|
+
<member refid="classcv_1_1_size___1ae09ae11fd75a16928ca40980ad46a9bf" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>Size_</name></member>
|
|
261
|
+
<member refid="classcv_1_1_size___1a45c97e9a4930d73fde11c2acc5f371ac" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>Size_</name></member>
|
|
262
|
+
<member refid="classcv_1_1_size___1abe760f15bf01a0ee3f51d81f4f8ea259" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>Size_</name></member>
|
|
263
|
+
<member refid="classcv_1_1_size___1a77f2cfcaf863a5e91b84aa7fde6b64bb" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>Size_</name></member>
|
|
264
|
+
<member refid="classcv_1_1_size___1a9d9a4c7977d6d4bf9101954ce1bac941" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>Size_</name></member>
|
|
265
|
+
<member refid="classcv_1_1_size___1a2c6d59e6fe58dc2cda78504271b7ec6c" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>Size_</name></member>
|
|
266
|
+
<member refid="classcv_1_1_size___1a545d43b608de451311855c2ef808642d" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>value_type</name></member>
|
|
267
|
+
<member refid="classcv_1_1_size___1abfe0367b32c407ddccf5ddf92667c73d" prot="public" virt="non-virtual"><scope>cv::Size_</scope><name>width</name></member>
|
|
268
|
+
</listofallmembers>
|
|
269
|
+
</compounddef>
|
|
270
|
+
</doxygen>
|