dub 0.2.2 → 1.0.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/History.txt +92 -0
- data/LICENSE +20 -0
- data/README.rdoc +115 -0
- data/Rakefile +59 -0
- data/dub.gemspec +197 -0
- data/lib/dub/argument.rb +286 -0
- data/lib/dub/entities_unescape.rb +9 -0
- data/lib/dub/function.rb +177 -0
- data/lib/dub/function_group.rb +72 -0
- data/lib/dub/generator.rb +15 -0
- data/lib/dub/group.rb +20 -0
- data/lib/dub/klass.rb +338 -0
- data/lib/dub/lua/class.cpp.erb +114 -0
- data/lib/dub/lua/class_gen.rb +96 -0
- data/lib/dub/lua/function.cpp.erb +15 -0
- data/lib/dub/lua/function_gen.rb +329 -0
- data/lib/dub/lua/group.cpp.erb +9 -0
- data/lib/dub/lua/lua_cpp_helper.cpp +259 -0
- data/lib/dub/lua/lua_cpp_helper.h +219 -0
- data/lib/dub/lua/lua_object.cpp +158 -0
- data/lib/dub/lua/lua_object.h +69 -0
- data/lib/dub/lua/namespace.cpp.erb +42 -0
- data/lib/dub/lua/namespace_gen.rb +69 -0
- data/lib/dub/lua.rb +24 -0
- data/lib/dub/member_extraction.rb +128 -0
- data/lib/dub/namespace.rb +295 -0
- data/lib/dub/opts_parser.rb +30 -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 +24 -20
- data/test/argument_test.rb +581 -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 +283 -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_base.xml +85 -0
- data/test/fixtures/app/xml/classdub_1_1_custom_destructor.xml +67 -0
- data/test/fixtures/app/xml/classdub_1_1_deletable_out_of_lua.xml +43 -0
- data/test/fixtures/app/xml/classdub_1_1_matrix.xml +482 -0
- data/test/fixtures/app/xml/classdub_1_1_no_destructor.xml +49 -0
- data/test/fixtures/app/xml/classdub_1_1_priv_sub_base.xml +89 -0
- data/test/fixtures/app/xml/classdub_1_1_private_constr.xml +68 -0
- data/test/fixtures/app/xml/classdub_1_1_static_constr.xml +69 -0
- data/test/fixtures/app/xml/classdub_1_1_sub_base.xml +89 -0
- data/test/fixtures/app/xml/classdub_1_1_t_mat.xml +252 -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 +91 -0
- data/test/fixtures/app/xml/index.xsd +66 -0
- data/test/fixtures/app/xml/matrix_8h.xml +310 -0
- data/test/fixtures/app/xml/namespacedub.xml +48 -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_scalar__.xml +269 -0
- data/test/fixtures/classcv_1_1_size__.xml +270 -0
- data/test/fixtures/dummy_class.cpp.erb +1 -0
- data/test/fixtures/dummy_function.cpp.erb +1 -0
- data/test/fixtures/group___magic_type.xml +406 -0
- data/test/fixtures/namespacecv.xml +12659 -0
- data/test/function_group_test.rb +43 -0
- data/test/function_test.rb +405 -0
- data/test/group_test.rb +241 -0
- data/test/helper.rb +34 -0
- data/test/klass_test.rb +551 -0
- data/test/lua_function_gen_test.rb +242 -0
- data/test/namespace_test.rb +220 -0
- data/test/parser_test.rb +36 -0
- metadata +229 -272
- checksums.yaml +0 -7
- data/lib/open_api_sdk/analytics.rb +0 -99
- data/lib/open_api_sdk/domains.rb +0 -353
- data/lib/open_api_sdk/dub.rb +0 -88
- data/lib/open_api_sdk/links.rb +0 -766
- data/lib/open_api_sdk/metatags.rb +0 -54
- data/lib/open_api_sdk/models/operations/bulkcreatelinks_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/bulkupdatelinks_requestbody.rb +0 -27
- data/lib/open_api_sdk/models/operations/bulkupdatelinks_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/color.rb +0 -24
- data/lib/open_api_sdk/models/operations/createdomain_requestbody.rb +0 -33
- data/lib/open_api_sdk/models/operations/createdomain_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/createlink_requestbody.rb +0 -95
- data/lib/open_api_sdk/models/operations/createlink_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/createtag_requestbody.rb +0 -32
- data/lib/open_api_sdk/models/operations/createtag_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/data.rb +0 -83
- data/lib/open_api_sdk/models/operations/deletedomain_request.rb +0 -24
- data/lib/open_api_sdk/models/operations/deletedomain_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/deletedomain_responsebody.rb +0 -24
- data/lib/open_api_sdk/models/operations/deletelink_request.rb +0 -24
- data/lib/open_api_sdk/models/operations/deletelink_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/deletelink_responsebody.rb +0 -24
- data/lib/open_api_sdk/models/operations/event.rb +0 -21
- data/lib/open_api_sdk/models/operations/getlinkinfo_request.rb +0 -33
- data/lib/open_api_sdk/models/operations/getlinkinfo_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/getlinks_request.rb +0 -51
- data/lib/open_api_sdk/models/operations/getlinks_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/getlinkscount_request.rb +0 -48
- data/lib/open_api_sdk/models/operations/getlinkscount_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/getmetatags_request.rb +0 -24
- data/lib/open_api_sdk/models/operations/getmetatags_response.rb +0 -33
- data/lib/open_api_sdk/models/operations/getmetatags_responsebody.rb +0 -30
- data/lib/open_api_sdk/models/operations/getqrcode_request.rb +0 -39
- data/lib/open_api_sdk/models/operations/getqrcode_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/gettags_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/getworkspace_request.rb +0 -24
- data/lib/open_api_sdk/models/operations/getworkspace_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/groupby.rb +0 -28
- data/lib/open_api_sdk/models/operations/interval.rb +0 -25
- data/lib/open_api_sdk/models/operations/level.rb +0 -21
- data/lib/open_api_sdk/models/operations/listdomains_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/paymentprocessor.rb +0 -20
- data/lib/open_api_sdk/models/operations/requestbody.rb +0 -95
- data/lib/open_api_sdk/models/operations/retrieveanalytics_request.rb +0 -81
- data/lib/open_api_sdk/models/operations/retrieveanalytics_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/sort.rb +0 -20
- data/lib/open_api_sdk/models/operations/trackcustomer_requestbody.rb +0 -33
- data/lib/open_api_sdk/models/operations/trackcustomer_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/trackcustomer_responsebody.rb +0 -33
- data/lib/open_api_sdk/models/operations/tracklead_requestbody.rb +0 -42
- data/lib/open_api_sdk/models/operations/tracklead_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/tracklead_responsebody.rb +0 -42
- data/lib/open_api_sdk/models/operations/tracksale_requestbody.rb +0 -42
- data/lib/open_api_sdk/models/operations/tracksale_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/tracksale_responsebody.rb +0 -42
- data/lib/open_api_sdk/models/operations/updatedomain_request.rb +0 -27
- data/lib/open_api_sdk/models/operations/updatedomain_requestbody.rb +0 -33
- data/lib/open_api_sdk/models/operations/updatedomain_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/updatelink_request.rb +0 -27
- data/lib/open_api_sdk/models/operations/updatelink_requestbody.rb +0 -95
- data/lib/open_api_sdk/models/operations/updatelink_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/updatetag_color.rb +0 -24
- data/lib/open_api_sdk/models/operations/updatetag_request.rb +0 -27
- data/lib/open_api_sdk/models/operations/updatetag_requestbody.rb +0 -32
- data/lib/open_api_sdk/models/operations/updatetag_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/updateworkspace_request.rb +0 -27
- data/lib/open_api_sdk/models/operations/updateworkspace_requestbody.rb +0 -27
- data/lib/open_api_sdk/models/operations/updateworkspace_response.rb +0 -60
- data/lib/open_api_sdk/models/operations/upsertlink_requestbody.rb +0 -95
- data/lib/open_api_sdk/models/operations/upsertlink_response.rb +0 -60
- data/lib/open_api_sdk/models/operations.rb +0 -74
- data/lib/open_api_sdk/models/shared/badrequest.rb +0 -24
- data/lib/open_api_sdk/models/shared/code.rb +0 -18
- data/lib/open_api_sdk/models/shared/color.rb +0 -24
- data/lib/open_api_sdk/models/shared/conflict.rb +0 -24
- data/lib/open_api_sdk/models/shared/conflict_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/conflict_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/countrycode.rb +0 -267
- data/lib/open_api_sdk/models/shared/domains.rb +0 -27
- data/lib/open_api_sdk/models/shared/domainschema.rb +0 -48
- data/lib/open_api_sdk/models/shared/error.rb +0 -30
- data/lib/open_api_sdk/models/shared/forbidden.rb +0 -24
- data/lib/open_api_sdk/models/shared/forbidden_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/forbidden_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/geo.rb +0 -771
- data/lib/open_api_sdk/models/shared/internalservererror.rb +0 -24
- data/lib/open_api_sdk/models/shared/internalservererror_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/internalservererror_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/inviteexpired.rb +0 -24
- data/lib/open_api_sdk/models/shared/inviteexpired_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/inviteexpired_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/linkgeotargeting.rb +0 -771
- data/lib/open_api_sdk/models/shared/linkschema.rb +0 -142
- data/lib/open_api_sdk/models/shared/notfound.rb +0 -24
- data/lib/open_api_sdk/models/shared/notfound_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/notfound_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/plan.rb +0 -24
- data/lib/open_api_sdk/models/shared/ratelimitexceeded.rb +0 -24
- data/lib/open_api_sdk/models/shared/ratelimitexceeded_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/ratelimitexceeded_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/role.rb +0 -19
- data/lib/open_api_sdk/models/shared/security.rb +0 -24
- data/lib/open_api_sdk/models/shared/tagschema.rb +0 -30
- data/lib/open_api_sdk/models/shared/unauthorized.rb +0 -24
- data/lib/open_api_sdk/models/shared/unauthorized_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/unauthorized_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/unprocessableentity.rb +0 -24
- data/lib/open_api_sdk/models/shared/unprocessableentity_code.rb +0 -18
- data/lib/open_api_sdk/models/shared/unprocessableentity_error.rb +0 -30
- data/lib/open_api_sdk/models/shared/users.rb +0 -24
- data/lib/open_api_sdk/models/shared/workspaceschema.rb +0 -81
- data/lib/open_api_sdk/models/shared.rb +0 -49
- data/lib/open_api_sdk/qr_codes.rb +0 -97
- data/lib/open_api_sdk/sdkconfiguration.rb +0 -52
- data/lib/open_api_sdk/tags.rb +0 -272
- data/lib/open_api_sdk/track.rb +0 -276
- data/lib/open_api_sdk/utils/metadata_fields.rb +0 -150
- data/lib/open_api_sdk/utils/t.rb +0 -59
- data/lib/open_api_sdk/utils/utils.rb +0 -772
- data/lib/open_api_sdk/workspaces.rb +0 -192
@@ -0,0 +1,1996 @@
|
|
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_mat" kind="class" prot="public">
|
4
|
+
<compoundname>cv::Mat</compoundname>
|
5
|
+
<derivedcompoundref refid="classcv_1_1_mat__" prot="public" virt="non-virtual">cv::Mat_< _Tp ></derivedcompoundref>
|
6
|
+
<includes refid="cxcore_8hpp" local="no">cxcore.hpp</includes>
|
7
|
+
<sectiondef kind="public-type">
|
8
|
+
<memberdef kind="enum" id="classcv_1_1_mat_1a8972932ab3070c42b7898cdbeaebc12f" prot="public" static="no">
|
9
|
+
<name>@62</name>
|
10
|
+
<enumvalue id="classcv_1_1_mat_1a8972932ab3070c42b7898cdbeaebc12fa2082a2faa4b65dedcc5b84433c97f817" prot="public">
|
11
|
+
<name>MAGIC_VAL</name>
|
12
|
+
<initializer>0x42FF0000</initializer>
|
13
|
+
<briefdescription>
|
14
|
+
</briefdescription>
|
15
|
+
<detaileddescription>
|
16
|
+
</detaileddescription>
|
17
|
+
</enumvalue>
|
18
|
+
<enumvalue id="classcv_1_1_mat_1a8972932ab3070c42b7898cdbeaebc12fa1c147538fd896f4f9abce9eaea9727e3" prot="public">
|
19
|
+
<name>AUTO_STEP</name>
|
20
|
+
<initializer>0</initializer>
|
21
|
+
<briefdescription>
|
22
|
+
</briefdescription>
|
23
|
+
<detaileddescription>
|
24
|
+
</detaileddescription>
|
25
|
+
</enumvalue>
|
26
|
+
<enumvalue id="classcv_1_1_mat_1a8972932ab3070c42b7898cdbeaebc12fa3a50403178ba15a9617f5ff341418cf9" prot="public">
|
27
|
+
<name>CONTINUOUS_FLAG</name>
|
28
|
+
<initializer>CV_MAT_CONT_FLAG</initializer>
|
29
|
+
<briefdescription>
|
30
|
+
</briefdescription>
|
31
|
+
<detaileddescription>
|
32
|
+
</detaileddescription>
|
33
|
+
</enumvalue>
|
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="1008" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1008" bodyend="1008"/>
|
41
|
+
</memberdef>
|
42
|
+
</sectiondef>
|
43
|
+
<sectiondef kind="public-attrib">
|
44
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1af9333f06c84f115fda4cdf3af18c2ad0" prot="public" static="no" mutable="no">
|
45
|
+
<type>int</type>
|
46
|
+
<definition>int cv::Mat::flags</definition>
|
47
|
+
<argsstring></argsstring>
|
48
|
+
<name>flags</name>
|
49
|
+
<briefdescription>
|
50
|
+
</briefdescription>
|
51
|
+
<detaileddescription>
|
52
|
+
</detaileddescription>
|
53
|
+
<inbodydescription>
|
54
|
+
</inbodydescription>
|
55
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1015" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1015" bodyend="-1"/>
|
56
|
+
</memberdef>
|
57
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1abed816466c45234254d25bc59c31245e" prot="public" static="no" mutable="no">
|
58
|
+
<type>int</type>
|
59
|
+
<definition>int cv::Mat::rows</definition>
|
60
|
+
<argsstring></argsstring>
|
61
|
+
<name>rows</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="1017" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1017" bodyend="-1"/>
|
69
|
+
</memberdef>
|
70
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1aa3e5a47585c9ef6a0842556739155e3e" prot="public" static="no" mutable="no">
|
71
|
+
<type>int</type>
|
72
|
+
<definition>int cv::Mat::cols</definition>
|
73
|
+
<argsstring></argsstring>
|
74
|
+
<name>cols</name>
|
75
|
+
<briefdescription>
|
76
|
+
</briefdescription>
|
77
|
+
<detaileddescription>
|
78
|
+
</detaileddescription>
|
79
|
+
<inbodydescription>
|
80
|
+
</inbodydescription>
|
81
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1017" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1017" bodyend="-1"/>
|
82
|
+
</memberdef>
|
83
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1a189e3e4d28750a300bbf49103ce3ec6e" prot="public" static="no" mutable="no">
|
84
|
+
<type>size_t</type>
|
85
|
+
<definition>size_t cv::Mat::step</definition>
|
86
|
+
<argsstring></argsstring>
|
87
|
+
<name>step</name>
|
88
|
+
<briefdescription>
|
89
|
+
</briefdescription>
|
90
|
+
<detaileddescription>
|
91
|
+
</detaileddescription>
|
92
|
+
<inbodydescription>
|
93
|
+
</inbodydescription>
|
94
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1019" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1019" bodyend="-1"/>
|
95
|
+
</memberdef>
|
96
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1a4d33bed1c850265370d2af0ff02e1564" prot="public" static="no" mutable="no">
|
97
|
+
<type><ref refid="cxtypes_8h_1a65f85814a8290f9797005d3b28e7e5fc" kindref="member">uchar</ref> *</type>
|
98
|
+
<definition>uchar* cv::Mat::data</definition>
|
99
|
+
<argsstring></argsstring>
|
100
|
+
<name>data</name>
|
101
|
+
<briefdescription>
|
102
|
+
</briefdescription>
|
103
|
+
<detaileddescription>
|
104
|
+
</detaileddescription>
|
105
|
+
<inbodydescription>
|
106
|
+
</inbodydescription>
|
107
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1021" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1021" bodyend="-1"/>
|
108
|
+
</memberdef>
|
109
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1a731b10faf33879e2d6a0ebd0fcce4ce4" prot="public" static="no" mutable="no">
|
110
|
+
<type>int *</type>
|
111
|
+
<definition>int* cv::Mat::refcount</definition>
|
112
|
+
<argsstring></argsstring>
|
113
|
+
<name>refcount</name>
|
114
|
+
<briefdescription>
|
115
|
+
</briefdescription>
|
116
|
+
<detaileddescription>
|
117
|
+
</detaileddescription>
|
118
|
+
<inbodydescription>
|
119
|
+
</inbodydescription>
|
120
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1025" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1025" bodyend="-1"/>
|
121
|
+
</memberdef>
|
122
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1a3c094be66d6a19b74c93d57a502a59d0" prot="public" static="no" mutable="no">
|
123
|
+
<type><ref refid="cxtypes_8h_1a65f85814a8290f9797005d3b28e7e5fc" kindref="member">uchar</ref> *</type>
|
124
|
+
<definition>uchar* cv::Mat::datastart</definition>
|
125
|
+
<argsstring></argsstring>
|
126
|
+
<name>datastart</name>
|
127
|
+
<briefdescription>
|
128
|
+
</briefdescription>
|
129
|
+
<detaileddescription>
|
130
|
+
</detaileddescription>
|
131
|
+
<inbodydescription>
|
132
|
+
</inbodydescription>
|
133
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1028" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1028" bodyend="-1"/>
|
134
|
+
</memberdef>
|
135
|
+
<memberdef kind="variable" id="classcv_1_1_mat_1a717e658d46d705f4c4863b67cade70d8" prot="public" static="no" mutable="no">
|
136
|
+
<type><ref refid="cxtypes_8h_1a65f85814a8290f9797005d3b28e7e5fc" kindref="member">uchar</ref> *</type>
|
137
|
+
<definition>uchar* cv::Mat::dataend</definition>
|
138
|
+
<argsstring></argsstring>
|
139
|
+
<name>dataend</name>
|
140
|
+
<briefdescription>
|
141
|
+
</briefdescription>
|
142
|
+
<detaileddescription>
|
143
|
+
</detaileddescription>
|
144
|
+
<inbodydescription>
|
145
|
+
</inbodydescription>
|
146
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1029" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="1029" bodyend="-1"/>
|
147
|
+
</memberdef>
|
148
|
+
</sectiondef>
|
149
|
+
<sectiondef kind="public-func">
|
150
|
+
<memberdef kind="function" id="classcv_1_1_mat_1af1d014cecd1510cdf580bf2ed7e5aafc" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
151
|
+
<type></type>
|
152
|
+
<definition>cv::Mat::Mat</definition>
|
153
|
+
<argsstring>()</argsstring>
|
154
|
+
<name>Mat</name>
|
155
|
+
<briefdescription>
|
156
|
+
</briefdescription>
|
157
|
+
<detaileddescription>
|
158
|
+
</detaileddescription>
|
159
|
+
<inbodydescription>
|
160
|
+
</inbodydescription>
|
161
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="746"/>
|
162
|
+
</memberdef>
|
163
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a083d116f0db8e67991f60ac0f7fbf7a5" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
164
|
+
<type></type>
|
165
|
+
<definition>cv::Mat::Mat</definition>
|
166
|
+
<argsstring>(int _rows, int _cols, int _type)</argsstring>
|
167
|
+
<name>Mat</name>
|
168
|
+
<param>
|
169
|
+
<type>int</type>
|
170
|
+
<declname>_rows</declname>
|
171
|
+
</param>
|
172
|
+
<param>
|
173
|
+
<type>int</type>
|
174
|
+
<declname>_cols</declname>
|
175
|
+
</param>
|
176
|
+
<param>
|
177
|
+
<type>int</type>
|
178
|
+
<declname>_type</declname>
|
179
|
+
</param>
|
180
|
+
<briefdescription>
|
181
|
+
</briefdescription>
|
182
|
+
<detaileddescription>
|
183
|
+
<para>Create a new matrix of the given size and type.</para><para><parameterlist kind="param"><parameteritem>
|
184
|
+
<parameternamelist>
|
185
|
+
<parametername>_rows</parametername>
|
186
|
+
</parameternamelist>
|
187
|
+
<parameterdescription>
|
188
|
+
<para>number of rows </para></parameterdescription>
|
189
|
+
</parameteritem>
|
190
|
+
<parameteritem>
|
191
|
+
<parameternamelist>
|
192
|
+
<parametername>_cols</parametername>
|
193
|
+
</parameternamelist>
|
194
|
+
<parameterdescription>
|
195
|
+
<para>number of columns </para></parameterdescription>
|
196
|
+
</parameteritem>
|
197
|
+
<parameteritem>
|
198
|
+
<parameternamelist>
|
199
|
+
<parametername>_type</parametername>
|
200
|
+
</parameternamelist>
|
201
|
+
<parameterdescription>
|
202
|
+
<para>an integer representing the <ref refid="group___magic_type" kindref="compound">MagicType</ref> </para></parameterdescription>
|
203
|
+
</parameteritem>
|
204
|
+
</parameterlist>
|
205
|
+
</para> </detaileddescription>
|
206
|
+
<inbodydescription>
|
207
|
+
</inbodydescription>
|
208
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="754"/>
|
209
|
+
</memberdef>
|
210
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a6bd47aeb10295ac550af449fe0c3e643" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
211
|
+
<type></type>
|
212
|
+
<definition>cv::Mat::Mat</definition>
|
213
|
+
<argsstring>(Size _size, int _type)</argsstring>
|
214
|
+
<name>Mat</name>
|
215
|
+
<param>
|
216
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
217
|
+
<declname>_size</declname>
|
218
|
+
</param>
|
219
|
+
<param>
|
220
|
+
<type>int</type>
|
221
|
+
<declname>_type</declname>
|
222
|
+
</param>
|
223
|
+
<briefdescription>
|
224
|
+
</briefdescription>
|
225
|
+
<detaileddescription>
|
226
|
+
</detaileddescription>
|
227
|
+
<inbodydescription>
|
228
|
+
</inbodydescription>
|
229
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="755"/>
|
230
|
+
</memberdef>
|
231
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a1cd663c089366877df2b666ac609bbde" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
232
|
+
<type></type>
|
233
|
+
<definition>cv::Mat::Mat</definition>
|
234
|
+
<argsstring>(int _rows, int _cols, int _type, const Scalar &_s)</argsstring>
|
235
|
+
<name>Mat</name>
|
236
|
+
<param>
|
237
|
+
<type>int</type>
|
238
|
+
<declname>_rows</declname>
|
239
|
+
</param>
|
240
|
+
<param>
|
241
|
+
<type>int</type>
|
242
|
+
<declname>_cols</declname>
|
243
|
+
</param>
|
244
|
+
<param>
|
245
|
+
<type>int</type>
|
246
|
+
<declname>_type</declname>
|
247
|
+
</param>
|
248
|
+
<param>
|
249
|
+
<type>const <ref refid="classcv_1_1_scalar__" kindref="compound">Scalar</ref> &</type>
|
250
|
+
<declname>_s</declname>
|
251
|
+
</param>
|
252
|
+
<briefdescription>
|
253
|
+
</briefdescription>
|
254
|
+
<detaileddescription>
|
255
|
+
</detaileddescription>
|
256
|
+
<inbodydescription>
|
257
|
+
</inbodydescription>
|
258
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="757"/>
|
259
|
+
</memberdef>
|
260
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a1315aee0375536d374630d6e7c42af44" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
261
|
+
<type></type>
|
262
|
+
<definition>cv::Mat::Mat</definition>
|
263
|
+
<argsstring>(Size _size, int _type, const Scalar &_s)</argsstring>
|
264
|
+
<name>Mat</name>
|
265
|
+
<param>
|
266
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
267
|
+
<declname>_size</declname>
|
268
|
+
</param>
|
269
|
+
<param>
|
270
|
+
<type>int</type>
|
271
|
+
<declname>_type</declname>
|
272
|
+
</param>
|
273
|
+
<param>
|
274
|
+
<type>const <ref refid="classcv_1_1_scalar__" kindref="compound">Scalar</ref> &</type>
|
275
|
+
<declname>_s</declname>
|
276
|
+
</param>
|
277
|
+
<briefdescription>
|
278
|
+
</briefdescription>
|
279
|
+
<detaileddescription>
|
280
|
+
</detaileddescription>
|
281
|
+
<inbodydescription>
|
282
|
+
</inbodydescription>
|
283
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="758"/>
|
284
|
+
</memberdef>
|
285
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a294eaf8a95d2f9c7be19ff594d06278e" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
286
|
+
<type></type>
|
287
|
+
<definition>cv::Mat::Mat</definition>
|
288
|
+
<argsstring>(const Mat &m)</argsstring>
|
289
|
+
<name>Mat</name>
|
290
|
+
<param>
|
291
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
292
|
+
<declname>m</declname>
|
293
|
+
</param>
|
294
|
+
<briefdescription>
|
295
|
+
</briefdescription>
|
296
|
+
<detaileddescription>
|
297
|
+
</detaileddescription>
|
298
|
+
<inbodydescription>
|
299
|
+
</inbodydescription>
|
300
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="760"/>
|
301
|
+
</memberdef>
|
302
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a65a7515778ed4045708af82c2f7eec63" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
303
|
+
<type></type>
|
304
|
+
<definition>cv::Mat::Mat</definition>
|
305
|
+
<argsstring>(int _rows, int _cols, int _type, void *_data, size_t _step=AUTO_STEP)</argsstring>
|
306
|
+
<name>Mat</name>
|
307
|
+
<param>
|
308
|
+
<type>int</type>
|
309
|
+
<declname>_rows</declname>
|
310
|
+
</param>
|
311
|
+
<param>
|
312
|
+
<type>int</type>
|
313
|
+
<declname>_cols</declname>
|
314
|
+
</param>
|
315
|
+
<param>
|
316
|
+
<type>int</type>
|
317
|
+
<declname>_type</declname>
|
318
|
+
</param>
|
319
|
+
<param>
|
320
|
+
<type>void *</type>
|
321
|
+
<declname>_data</declname>
|
322
|
+
</param>
|
323
|
+
<param>
|
324
|
+
<type>size_t</type>
|
325
|
+
<declname>_step</declname>
|
326
|
+
<defval>AUTO_STEP</defval>
|
327
|
+
</param>
|
328
|
+
<briefdescription>
|
329
|
+
</briefdescription>
|
330
|
+
<detaileddescription>
|
331
|
+
<para>Create a matrix header pointing to user-allocated data. If this matrix is further assigned to another matrix, the data <bold>will not</bold> be copied and no reference counting will be executed.</para><para><parameterlist kind="param"><parameteritem>
|
332
|
+
<parameternamelist>
|
333
|
+
<parametername>_rows</parametername>
|
334
|
+
</parameternamelist>
|
335
|
+
<parameterdescription>
|
336
|
+
<para>number of rows in the data </para></parameterdescription>
|
337
|
+
</parameteritem>
|
338
|
+
<parameteritem>
|
339
|
+
<parameternamelist>
|
340
|
+
<parametername>_cols</parametername>
|
341
|
+
</parameternamelist>
|
342
|
+
<parameterdescription>
|
343
|
+
<para>number of columns in the data </para></parameterdescription>
|
344
|
+
</parameteritem>
|
345
|
+
<parameteritem>
|
346
|
+
<parameternamelist>
|
347
|
+
<parametername>_type</parametername>
|
348
|
+
</parameternamelist>
|
349
|
+
<parameterdescription>
|
350
|
+
<para>an integer representing a <ref refid="group___magic_type" kindref="compound">MagicType</ref> of the data </para></parameterdescription>
|
351
|
+
</parameteritem>
|
352
|
+
<parameteritem>
|
353
|
+
<parameternamelist>
|
354
|
+
<parametername>_data</parametername>
|
355
|
+
</parameternamelist>
|
356
|
+
<parameterdescription>
|
357
|
+
<para>a pointer to the user-allocated data </para></parameterdescription>
|
358
|
+
</parameteritem>
|
359
|
+
<parameteritem>
|
360
|
+
<parameternamelist>
|
361
|
+
<parametername>_step</parametername>
|
362
|
+
</parameternamelist>
|
363
|
+
<parameterdescription>
|
364
|
+
<para>number of <bold>bytes</bold> to advance from one row to the other. If the value is <computeroutput>AUTO_STEP</computeroutput>, the number of bytes will be calculated from the type and number of columns. </para></parameterdescription>
|
365
|
+
</parameteritem>
|
366
|
+
</parameterlist>
|
367
|
+
</para> </detaileddescription>
|
368
|
+
<inbodydescription>
|
369
|
+
</inbodydescription>
|
370
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="774"/>
|
371
|
+
</memberdef>
|
372
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a4f2ba3afb7980dbdfe676bc8e04fdbc4" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
373
|
+
<type></type>
|
374
|
+
<definition>cv::Mat::Mat</definition>
|
375
|
+
<argsstring>(Size _size, int _type, void *_data, size_t _step=AUTO_STEP)</argsstring>
|
376
|
+
<name>Mat</name>
|
377
|
+
<param>
|
378
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
379
|
+
<declname>_size</declname>
|
380
|
+
</param>
|
381
|
+
<param>
|
382
|
+
<type>int</type>
|
383
|
+
<declname>_type</declname>
|
384
|
+
</param>
|
385
|
+
<param>
|
386
|
+
<type>void *</type>
|
387
|
+
<declname>_data</declname>
|
388
|
+
</param>
|
389
|
+
<param>
|
390
|
+
<type>size_t</type>
|
391
|
+
<declname>_step</declname>
|
392
|
+
<defval>AUTO_STEP</defval>
|
393
|
+
</param>
|
394
|
+
<briefdescription>
|
395
|
+
</briefdescription>
|
396
|
+
<detaileddescription>
|
397
|
+
</detaileddescription>
|
398
|
+
<inbodydescription>
|
399
|
+
</inbodydescription>
|
400
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="775"/>
|
401
|
+
</memberdef>
|
402
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a1ccf50d67abb0f05a14ad138e52fb80b" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
403
|
+
<type></type>
|
404
|
+
<definition>cv::Mat::Mat</definition>
|
405
|
+
<argsstring>(const Mat &m, const Range &rowRange, const Range &colRange)</argsstring>
|
406
|
+
<name>Mat</name>
|
407
|
+
<param>
|
408
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
409
|
+
<declname>m</declname>
|
410
|
+
</param>
|
411
|
+
<param>
|
412
|
+
<type>const <ref refid="classcv_1_1_range" kindref="compound">Range</ref> &</type>
|
413
|
+
<declname>rowRange</declname>
|
414
|
+
</param>
|
415
|
+
<param>
|
416
|
+
<type>const <ref refid="classcv_1_1_range" kindref="compound">Range</ref> &</type>
|
417
|
+
<declname>colRange</declname>
|
418
|
+
</param>
|
419
|
+
<briefdescription>
|
420
|
+
</briefdescription>
|
421
|
+
<detaileddescription>
|
422
|
+
</detaileddescription>
|
423
|
+
<inbodydescription>
|
424
|
+
</inbodydescription>
|
425
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="777"/>
|
426
|
+
</memberdef>
|
427
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aa7ec97373406215f2d4bc72cc1d27036" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
428
|
+
<type></type>
|
429
|
+
<definition>cv::Mat::Mat</definition>
|
430
|
+
<argsstring>(const Mat &m, const Rect &roi)</argsstring>
|
431
|
+
<name>Mat</name>
|
432
|
+
<param>
|
433
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
434
|
+
<declname>m</declname>
|
435
|
+
</param>
|
436
|
+
<param>
|
437
|
+
<type>const <ref refid="classcv_1_1_rect__" kindref="compound">Rect</ref> &</type>
|
438
|
+
<declname>roi</declname>
|
439
|
+
</param>
|
440
|
+
<briefdescription>
|
441
|
+
</briefdescription>
|
442
|
+
<detaileddescription>
|
443
|
+
<para>Create a sub-matrix from a bigger matrix</para><para><parameterlist kind="param"><parameteritem>
|
444
|
+
<parameternamelist>
|
445
|
+
<parametername>m</parametername>
|
446
|
+
</parameternamelist>
|
447
|
+
<parameterdescription>
|
448
|
+
<para>the original matrix </para></parameterdescription>
|
449
|
+
</parameteritem>
|
450
|
+
<parameteritem>
|
451
|
+
<parameternamelist>
|
452
|
+
<parametername>roi</parametername>
|
453
|
+
</parameternamelist>
|
454
|
+
<parameterdescription>
|
455
|
+
<para>the region of interest </para></parameterdescription>
|
456
|
+
</parameteritem>
|
457
|
+
</parameterlist>
|
458
|
+
</para> </detaileddescription>
|
459
|
+
<inbodydescription>
|
460
|
+
</inbodydescription>
|
461
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="784"/>
|
462
|
+
</memberdef>
|
463
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ac54e1c5025e8afd7641fd2a37a3deef7" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
464
|
+
<type></type>
|
465
|
+
<definition>cv::Mat::Mat</definition>
|
466
|
+
<argsstring>(const CvMat *m, bool copyData=false)</argsstring>
|
467
|
+
<name>Mat</name>
|
468
|
+
<param>
|
469
|
+
<type>const <ref refid="struct_cv_mat" kindref="compound">CvMat</ref> *</type>
|
470
|
+
<declname>m</declname>
|
471
|
+
</param>
|
472
|
+
<param>
|
473
|
+
<type>bool</type>
|
474
|
+
<declname>copyData</declname>
|
475
|
+
<defval>false</defval>
|
476
|
+
</param>
|
477
|
+
<briefdescription>
|
478
|
+
</briefdescription>
|
479
|
+
<detaileddescription>
|
480
|
+
</detaileddescription>
|
481
|
+
<inbodydescription>
|
482
|
+
</inbodydescription>
|
483
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="786"/>
|
484
|
+
</memberdef>
|
485
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a5bd19249b7951dd47b04304646404b5c" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
486
|
+
<type></type>
|
487
|
+
<definition>cv::Mat::Mat</definition>
|
488
|
+
<argsstring>(const IplImage *img, bool copyData=false)</argsstring>
|
489
|
+
<name>Mat</name>
|
490
|
+
<param>
|
491
|
+
<type>const <ref refid="struct___ipl_image" kindref="compound">IplImage</ref> *</type>
|
492
|
+
<declname>img</declname>
|
493
|
+
</param>
|
494
|
+
<param>
|
495
|
+
<type>bool</type>
|
496
|
+
<declname>copyData</declname>
|
497
|
+
<defval>false</defval>
|
498
|
+
</param>
|
499
|
+
<briefdescription>
|
500
|
+
</briefdescription>
|
501
|
+
<detaileddescription>
|
502
|
+
</detaileddescription>
|
503
|
+
<inbodydescription>
|
504
|
+
</inbodydescription>
|
505
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="788"/>
|
506
|
+
</memberdef>
|
507
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a7d65237bb33769a0f785239ede9c0eac" prot="public" static="no" const="no" explicit="yes" inline="yes" virt="non-virtual">
|
508
|
+
<templateparamlist>
|
509
|
+
<param>
|
510
|
+
<type>typename _Tp</type>
|
511
|
+
</param>
|
512
|
+
</templateparamlist>
|
513
|
+
<type></type>
|
514
|
+
<definition>cv::Mat::Mat</definition>
|
515
|
+
<argsstring>(const vector< _Tp > &vec, bool copyData=false)</argsstring>
|
516
|
+
<name>Mat</name>
|
517
|
+
<param>
|
518
|
+
<type>const vector< _Tp > &</type>
|
519
|
+
<declname>vec</declname>
|
520
|
+
</param>
|
521
|
+
<param>
|
522
|
+
<type>bool</type>
|
523
|
+
<declname>copyData</declname>
|
524
|
+
<defval>false</defval>
|
525
|
+
</param>
|
526
|
+
<briefdescription>
|
527
|
+
</briefdescription>
|
528
|
+
<detaileddescription>
|
529
|
+
</detaileddescription>
|
530
|
+
<inbodydescription>
|
531
|
+
</inbodydescription>
|
532
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="790"/>
|
533
|
+
</memberdef>
|
534
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ac0d35e5faf631138a36895c8f8d63dba" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
535
|
+
<type></type>
|
536
|
+
<definition>cv::Mat::Mat</definition>
|
537
|
+
<argsstring>(const MatExpr_Base &expr)</argsstring>
|
538
|
+
<name>Mat</name>
|
539
|
+
<param>
|
540
|
+
<type>const <ref refid="namespacecv_1a3a82d9b17055aebfd78f88a64827d894" kindref="member">MatExpr_Base</ref> &</type>
|
541
|
+
<declname>expr</declname>
|
542
|
+
</param>
|
543
|
+
<briefdescription>
|
544
|
+
</briefdescription>
|
545
|
+
<detaileddescription>
|
546
|
+
</detaileddescription>
|
547
|
+
<inbodydescription>
|
548
|
+
</inbodydescription>
|
549
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="792"/>
|
550
|
+
</memberdef>
|
551
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a1b2ae166171f6a7306cf09ff67a2153f" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
552
|
+
<type></type>
|
553
|
+
<definition>cv::Mat::~Mat</definition>
|
554
|
+
<argsstring>()</argsstring>
|
555
|
+
<name>~Mat</name>
|
556
|
+
<briefdescription>
|
557
|
+
</briefdescription>
|
558
|
+
<detaileddescription>
|
559
|
+
</detaileddescription>
|
560
|
+
<inbodydescription>
|
561
|
+
</inbodydescription>
|
562
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="794"/>
|
563
|
+
</memberdef>
|
564
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aed1f81fe7efaacc2bd95149cdfa34302" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
565
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
566
|
+
<definition>Mat& cv::Mat::operator=</definition>
|
567
|
+
<argsstring>(const Mat &m)</argsstring>
|
568
|
+
<name>operator=</name>
|
569
|
+
<reimplementedby refid="classcv_1_1_mat___1afa953e9a1c92c930aed2bf1af0f61502">operator=</reimplementedby>
|
570
|
+
<param>
|
571
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
572
|
+
<declname>m</declname>
|
573
|
+
</param>
|
574
|
+
<briefdescription>
|
575
|
+
</briefdescription>
|
576
|
+
<detaileddescription>
|
577
|
+
</detaileddescription>
|
578
|
+
<inbodydescription>
|
579
|
+
</inbodydescription>
|
580
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="796"/>
|
581
|
+
</memberdef>
|
582
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a4a087de5e4b6ce7e321f7cecf311d7dd" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
583
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
584
|
+
<definition>Mat& cv::Mat::operator=</definition>
|
585
|
+
<argsstring>(const MatExpr_Base &expr)</argsstring>
|
586
|
+
<name>operator=</name>
|
587
|
+
<reimplementedby refid="classcv_1_1_mat___1aad00d3ea7be0376d09ec0677d6ad6c72">operator=</reimplementedby>
|
588
|
+
<param>
|
589
|
+
<type>const <ref refid="namespacecv_1a3a82d9b17055aebfd78f88a64827d894" kindref="member">MatExpr_Base</ref> &</type>
|
590
|
+
<declname>expr</declname>
|
591
|
+
</param>
|
592
|
+
<briefdescription>
|
593
|
+
</briefdescription>
|
594
|
+
<detaileddescription>
|
595
|
+
</detaileddescription>
|
596
|
+
<inbodydescription>
|
597
|
+
</inbodydescription>
|
598
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="797"/>
|
599
|
+
</memberdef>
|
600
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a5205e13801065d6a002360ca1e276d13" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
601
|
+
<type></type>
|
602
|
+
<definition>cv::Mat::operator MatExpr_< Mat, Mat ></definition>
|
603
|
+
<argsstring>() const </argsstring>
|
604
|
+
<name>operator MatExpr_< Mat, Mat ></name>
|
605
|
+
<briefdescription>
|
606
|
+
</briefdescription>
|
607
|
+
<detaileddescription>
|
608
|
+
</detaileddescription>
|
609
|
+
<inbodydescription>
|
610
|
+
</inbodydescription>
|
611
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="799"/>
|
612
|
+
</memberdef>
|
613
|
+
<memberdef kind="function" id="classcv_1_1_mat_1acce30f9c4475038ee86ea8b24e00850a" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
614
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
615
|
+
<definition>Mat cv::Mat::row</definition>
|
616
|
+
<argsstring>(int y) const </argsstring>
|
617
|
+
<name>row</name>
|
618
|
+
<reimplementedby refid="classcv_1_1_mat___1ac70213d03722f3598c2de5abe5cd8b83">row</reimplementedby>
|
619
|
+
<param>
|
620
|
+
<type>int</type>
|
621
|
+
<declname>y</declname>
|
622
|
+
</param>
|
623
|
+
<briefdescription>
|
624
|
+
</briefdescription>
|
625
|
+
<detaileddescription>
|
626
|
+
</detaileddescription>
|
627
|
+
<inbodydescription>
|
628
|
+
</inbodydescription>
|
629
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="802"/>
|
630
|
+
</memberdef>
|
631
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ace2ab8cd964b5299c069c39f4f3318f4" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
632
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
633
|
+
<definition>Mat cv::Mat::col</definition>
|
634
|
+
<argsstring>(int x) const </argsstring>
|
635
|
+
<name>col</name>
|
636
|
+
<reimplementedby refid="classcv_1_1_mat___1ad27fbb624e744fe738664ca3ae9db1da">col</reimplementedby>
|
637
|
+
<param>
|
638
|
+
<type>int</type>
|
639
|
+
<declname>x</declname>
|
640
|
+
</param>
|
641
|
+
<briefdescription>
|
642
|
+
</briefdescription>
|
643
|
+
<detaileddescription>
|
644
|
+
</detaileddescription>
|
645
|
+
<inbodydescription>
|
646
|
+
</inbodydescription>
|
647
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="804"/>
|
648
|
+
</memberdef>
|
649
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aa5c442a1c548e3c686dbc57be60c7fad" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
650
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
651
|
+
<definition>Mat cv::Mat::rowRange</definition>
|
652
|
+
<argsstring>(int startrow, int endrow) const </argsstring>
|
653
|
+
<name>rowRange</name>
|
654
|
+
<param>
|
655
|
+
<type>int</type>
|
656
|
+
<declname>startrow</declname>
|
657
|
+
</param>
|
658
|
+
<param>
|
659
|
+
<type>int</type>
|
660
|
+
<declname>endrow</declname>
|
661
|
+
</param>
|
662
|
+
<briefdescription>
|
663
|
+
</briefdescription>
|
664
|
+
<detaileddescription>
|
665
|
+
</detaileddescription>
|
666
|
+
<inbodydescription>
|
667
|
+
</inbodydescription>
|
668
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="806"/>
|
669
|
+
</memberdef>
|
670
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a41f404b47717a0216d4e2ec16390e406" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
671
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
672
|
+
<definition>Mat cv::Mat::rowRange</definition>
|
673
|
+
<argsstring>(const Range &r) const </argsstring>
|
674
|
+
<name>rowRange</name>
|
675
|
+
<param>
|
676
|
+
<type>const <ref refid="classcv_1_1_range" kindref="compound">Range</ref> &</type>
|
677
|
+
<declname>r</declname>
|
678
|
+
</param>
|
679
|
+
<briefdescription>
|
680
|
+
</briefdescription>
|
681
|
+
<detaileddescription>
|
682
|
+
</detaileddescription>
|
683
|
+
<inbodydescription>
|
684
|
+
</inbodydescription>
|
685
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="807"/>
|
686
|
+
</memberdef>
|
687
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a1138b6f6e9fc1f0d99d8bc0f595b9a20" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
688
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
689
|
+
<definition>Mat cv::Mat::colRange</definition>
|
690
|
+
<argsstring>(int startcol, int endcol) const </argsstring>
|
691
|
+
<name>colRange</name>
|
692
|
+
<param>
|
693
|
+
<type>int</type>
|
694
|
+
<declname>startcol</declname>
|
695
|
+
</param>
|
696
|
+
<param>
|
697
|
+
<type>int</type>
|
698
|
+
<declname>endcol</declname>
|
699
|
+
</param>
|
700
|
+
<briefdescription>
|
701
|
+
</briefdescription>
|
702
|
+
<detaileddescription>
|
703
|
+
</detaileddescription>
|
704
|
+
<inbodydescription>
|
705
|
+
</inbodydescription>
|
706
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="809"/>
|
707
|
+
</memberdef>
|
708
|
+
<memberdef kind="function" id="classcv_1_1_mat_1afaa1adb197492153ae11bf690d4eaaea" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
709
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
710
|
+
<definition>Mat cv::Mat::colRange</definition>
|
711
|
+
<argsstring>(const Range &r) const </argsstring>
|
712
|
+
<name>colRange</name>
|
713
|
+
<param>
|
714
|
+
<type>const <ref refid="classcv_1_1_range" kindref="compound">Range</ref> &</type>
|
715
|
+
<declname>r</declname>
|
716
|
+
</param>
|
717
|
+
<briefdescription>
|
718
|
+
</briefdescription>
|
719
|
+
<detaileddescription>
|
720
|
+
</detaileddescription>
|
721
|
+
<inbodydescription>
|
722
|
+
</inbodydescription>
|
723
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="810"/>
|
724
|
+
</memberdef>
|
725
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a6a2cf5257b0e8436b9342df14a4797b7" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
726
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
727
|
+
<definition>Mat cv::Mat::diag</definition>
|
728
|
+
<argsstring>(int d=0) const </argsstring>
|
729
|
+
<name>diag</name>
|
730
|
+
<reimplementedby refid="classcv_1_1_mat___1a03d0b3c8cfd92883b001b0f9c3d1b47f">diag</reimplementedby>
|
731
|
+
<param>
|
732
|
+
<type>int</type>
|
733
|
+
<declname>d</declname>
|
734
|
+
<defval>0</defval>
|
735
|
+
</param>
|
736
|
+
<briefdescription>
|
737
|
+
</briefdescription>
|
738
|
+
<detaileddescription>
|
739
|
+
</detaileddescription>
|
740
|
+
<inbodydescription>
|
741
|
+
</inbodydescription>
|
742
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="815"/>
|
743
|
+
</memberdef>
|
744
|
+
<memberdef kind="function" id="classcv_1_1_mat_1afb01ff6b2231b72f55618bfb66a5326b" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
745
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
746
|
+
<definition>Mat cv::Mat::clone</definition>
|
747
|
+
<argsstring>() const </argsstring>
|
748
|
+
<name>clone</name>
|
749
|
+
<reimplementedby refid="classcv_1_1_mat___1a4a89cd7de1f298d49733969afa7d5ff4">clone</reimplementedby>
|
750
|
+
<briefdescription>
|
751
|
+
</briefdescription>
|
752
|
+
<detaileddescription>
|
753
|
+
<para>Create a deep copy of the matrix. This method uses <ref refid="classcv_1_1_mat_1a93d41f0686c829fd293bfb09c5aa0d3f" kindref="member">Mat.copyTo</ref> internal so the latter is a better option if you already have a matrix to clone the content into. <simplesect kind="return"><para>new matrix with a copy of the data </para></simplesect>
|
754
|
+
</para> </detaileddescription>
|
755
|
+
<inbodydescription>
|
756
|
+
</inbodydescription>
|
757
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="824"/>
|
758
|
+
</memberdef>
|
759
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a93d41f0686c829fd293bfb09c5aa0d3f" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
760
|
+
<type>void</type>
|
761
|
+
<definition>void cv::Mat::copyTo</definition>
|
762
|
+
<argsstring>(Mat &m) const </argsstring>
|
763
|
+
<name>copyTo</name>
|
764
|
+
<param>
|
765
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
766
|
+
<declname>m</declname>
|
767
|
+
</param>
|
768
|
+
<briefdescription>
|
769
|
+
</briefdescription>
|
770
|
+
<detaileddescription>
|
771
|
+
<para>Copy the data into another matrix. <parameterlist kind="param"><parameteritem>
|
772
|
+
<parameternamelist>
|
773
|
+
<parametername>m</parametername>
|
774
|
+
</parameternamelist>
|
775
|
+
<parameterdescription>
|
776
|
+
<para>matrix receiving a copy of the data </para></parameterdescription>
|
777
|
+
</parameteritem>
|
778
|
+
</parameterlist>
|
779
|
+
</para> </detaileddescription>
|
780
|
+
<inbodydescription>
|
781
|
+
</inbodydescription>
|
782
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="829"/>
|
783
|
+
</memberdef>
|
784
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a28a159311cb0bdcaccb0bab8a12eaa7f" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
785
|
+
<type>void</type>
|
786
|
+
<definition>void cv::Mat::copyTo</definition>
|
787
|
+
<argsstring>(Mat &m, const Mat &mask) const </argsstring>
|
788
|
+
<name>copyTo</name>
|
789
|
+
<param>
|
790
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
791
|
+
<declname>m</declname>
|
792
|
+
</param>
|
793
|
+
<param>
|
794
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
795
|
+
<declname>mask</declname>
|
796
|
+
</param>
|
797
|
+
<briefdescription>
|
798
|
+
</briefdescription>
|
799
|
+
<detaileddescription>
|
800
|
+
</detaileddescription>
|
801
|
+
<inbodydescription>
|
802
|
+
</inbodydescription>
|
803
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="831"/>
|
804
|
+
</memberdef>
|
805
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a2e8e4141e6e2a4b504a8300aa45deaa0" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
806
|
+
<type>void</type>
|
807
|
+
<definition>void cv::Mat::convertTo</definition>
|
808
|
+
<argsstring>(Mat &m, int rtype, double alpha=1, double beta=0) const </argsstring>
|
809
|
+
<name>convertTo</name>
|
810
|
+
<param>
|
811
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
812
|
+
<declname>m</declname>
|
813
|
+
</param>
|
814
|
+
<param>
|
815
|
+
<type>int</type>
|
816
|
+
<declname>rtype</declname>
|
817
|
+
</param>
|
818
|
+
<param>
|
819
|
+
<type>double</type>
|
820
|
+
<declname>alpha</declname>
|
821
|
+
<defval>1</defval>
|
822
|
+
</param>
|
823
|
+
<param>
|
824
|
+
<type>double</type>
|
825
|
+
<declname>beta</declname>
|
826
|
+
<defval>0</defval>
|
827
|
+
</param>
|
828
|
+
<briefdescription>
|
829
|
+
</briefdescription>
|
830
|
+
<detaileddescription>
|
831
|
+
<para>Convert to another datatype with optional value scaling. This method first multiplies the values by <computeroutput>alpha</computeroutput> (scale), adds <computeroutput>beta</computeroutput> (shift) and then converts to the new <ref refid="group___magic_type" kindref="compound">MagicType</ref> <computeroutput>rtype</computeroutput>. <simplesect kind="see"><para>cvConvertScale </para></simplesect>
|
832
|
+
<parameterlist kind="param"><parameteritem>
|
833
|
+
<parameternamelist>
|
834
|
+
<parametername>m</parametername>
|
835
|
+
</parameternamelist>
|
836
|
+
<parameterdescription>
|
837
|
+
<para>matrix to which the resulting content will be written </para></parameterdescription>
|
838
|
+
</parameteritem>
|
839
|
+
<parameteritem>
|
840
|
+
<parameternamelist>
|
841
|
+
<parametername>rtype</parametername>
|
842
|
+
</parameternamelist>
|
843
|
+
<parameterdescription>
|
844
|
+
<para><ref refid="group___magic_type" kindref="compound">MagicType</ref> of the converted matrix </para></parameterdescription>
|
845
|
+
</parameteritem>
|
846
|
+
<parameteritem>
|
847
|
+
<parameternamelist>
|
848
|
+
<parametername>alpha</parametername>
|
849
|
+
</parameternamelist>
|
850
|
+
<parameterdescription>
|
851
|
+
<para>value scaling factor (applied first) </para></parameterdescription>
|
852
|
+
</parameteritem>
|
853
|
+
<parameteritem>
|
854
|
+
<parameternamelist>
|
855
|
+
<parametername>beta</parametername>
|
856
|
+
</parameternamelist>
|
857
|
+
<parameterdescription>
|
858
|
+
<para>shift factor (applied after scaling but before conversion) </para></parameterdescription>
|
859
|
+
</parameteritem>
|
860
|
+
</parameterlist>
|
861
|
+
</para> </detaileddescription>
|
862
|
+
<inbodydescription>
|
863
|
+
</inbodydescription>
|
864
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="843"/>
|
865
|
+
</memberdef>
|
866
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a1ae9e51754ae9e3577c567c635d06a72" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
867
|
+
<type>void</type>
|
868
|
+
<definition>void cv::Mat::assignTo</definition>
|
869
|
+
<argsstring>(Mat &m, int type=-1) const </argsstring>
|
870
|
+
<name>assignTo</name>
|
871
|
+
<param>
|
872
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
873
|
+
<declname>m</declname>
|
874
|
+
</param>
|
875
|
+
<param>
|
876
|
+
<type>int</type>
|
877
|
+
<declname>type</declname>
|
878
|
+
<defval>-1</defval>
|
879
|
+
</param>
|
880
|
+
<briefdescription>
|
881
|
+
</briefdescription>
|
882
|
+
<detaileddescription>
|
883
|
+
</detaileddescription>
|
884
|
+
<inbodydescription>
|
885
|
+
</inbodydescription>
|
886
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="845"/>
|
887
|
+
</memberdef>
|
888
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aa5c947f7e449a4d856a4f3a87fcebd50" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
889
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
890
|
+
<definition>Mat& cv::Mat::operator=</definition>
|
891
|
+
<argsstring>(const Scalar &s)</argsstring>
|
892
|
+
<name>operator=</name>
|
893
|
+
<param>
|
894
|
+
<type>const <ref refid="classcv_1_1_scalar__" kindref="compound">Scalar</ref> &</type>
|
895
|
+
<declname>s</declname>
|
896
|
+
</param>
|
897
|
+
<briefdescription>
|
898
|
+
</briefdescription>
|
899
|
+
<detaileddescription>
|
900
|
+
</detaileddescription>
|
901
|
+
<inbodydescription>
|
902
|
+
</inbodydescription>
|
903
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="848"/>
|
904
|
+
</memberdef>
|
905
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a53bd9b635ccac48bb44ebcdeeb9dc676" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
906
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
907
|
+
<definition>Mat& cv::Mat::setTo</definition>
|
908
|
+
<argsstring>(const Scalar &s, const Mat &mask=Mat())</argsstring>
|
909
|
+
<name>setTo</name>
|
910
|
+
<param>
|
911
|
+
<type>const <ref refid="classcv_1_1_scalar__" kindref="compound">Scalar</ref> &</type>
|
912
|
+
<declname>s</declname>
|
913
|
+
</param>
|
914
|
+
<param>
|
915
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
916
|
+
<declname>mask</declname>
|
917
|
+
<defval><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>()</defval>
|
918
|
+
</param>
|
919
|
+
<briefdescription>
|
920
|
+
</briefdescription>
|
921
|
+
<detaileddescription>
|
922
|
+
</detaileddescription>
|
923
|
+
<inbodydescription>
|
924
|
+
</inbodydescription>
|
925
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="850"/>
|
926
|
+
</memberdef>
|
927
|
+
<memberdef kind="function" id="classcv_1_1_mat_1adbca7d35259c060dbd9346a6ccff6bba" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
928
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
929
|
+
<definition>Mat cv::Mat::reshape</definition>
|
930
|
+
<argsstring>(int _cn, int _rows=0) const </argsstring>
|
931
|
+
<name>reshape</name>
|
932
|
+
<param>
|
933
|
+
<type>int</type>
|
934
|
+
<declname>_cn</declname>
|
935
|
+
</param>
|
936
|
+
<param>
|
937
|
+
<type>int</type>
|
938
|
+
<declname>_rows</declname>
|
939
|
+
<defval>0</defval>
|
940
|
+
</param>
|
941
|
+
<briefdescription>
|
942
|
+
</briefdescription>
|
943
|
+
<detaileddescription>
|
944
|
+
</detaileddescription>
|
945
|
+
<inbodydescription>
|
946
|
+
</inbodydescription>
|
947
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="853"/>
|
948
|
+
</memberdef>
|
949
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ab291c4a4818f8f7a257b1cb670ae9307" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
950
|
+
<type>MatExpr_< MatExpr_Op2_< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, double, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="namespacecv_1a0e43134a513eec9867f199dace31c8c3" kindref="member">MatOp_T_</ref>< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > >, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> ></type>
|
951
|
+
<definition>MatExpr_<MatExpr_Op2_<Mat, double, Mat, MatOp_T_<Mat> >, Mat> cv::Mat::t</definition>
|
952
|
+
<argsstring>() const </argsstring>
|
953
|
+
<name>t</name>
|
954
|
+
<reimplementedby refid="classcv_1_1_mat___1ab22a528ec17982893297ed4727320ac7">t</reimplementedby>
|
955
|
+
<briefdescription>
|
956
|
+
</briefdescription>
|
957
|
+
<detaileddescription>
|
958
|
+
</detaileddescription>
|
959
|
+
<inbodydescription>
|
960
|
+
</inbodydescription>
|
961
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="857"/>
|
962
|
+
</memberdef>
|
963
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a92064ae3058eb780d10b1d0e16e10a87" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
964
|
+
<type>MatExpr_< MatExpr_Op2_< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, int, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="namespacecv_1a10f88824e47afee16e4ee9ae4dc239f4" kindref="member">MatOp_Inv_</ref>< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > >, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> ></type>
|
965
|
+
<definition>MatExpr_<MatExpr_Op2_<Mat, int, Mat, MatOp_Inv_<Mat> >, Mat> cv::Mat::inv</definition>
|
966
|
+
<argsstring>(int method=DECOMP_LU) const </argsstring>
|
967
|
+
<name>inv</name>
|
968
|
+
<reimplementedby refid="classcv_1_1_mat___1a91fbd5ed62c0578121f9c1260a56edca">inv</reimplementedby>
|
969
|
+
<param>
|
970
|
+
<type>int</type>
|
971
|
+
<declname>method</declname>
|
972
|
+
<defval>DECOMP_LU</defval>
|
973
|
+
</param>
|
974
|
+
<briefdescription>
|
975
|
+
</briefdescription>
|
976
|
+
<detaileddescription>
|
977
|
+
</detaileddescription>
|
978
|
+
<inbodydescription>
|
979
|
+
</inbodydescription>
|
980
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="860"/>
|
981
|
+
</memberdef>
|
982
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ab915211d568d9a3286a765e1a10378e6" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
983
|
+
<type>MatExpr_< MatExpr_Op4_< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, double, char, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="namespacecv_1aa84c1d1ae9cf2476d71a1e085fe9e081" kindref="member">MatOp_MulDiv_</ref>< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > >, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> ></type>
|
984
|
+
<definition>MatExpr_<MatExpr_Op4_<Mat, Mat, double, char, Mat, MatOp_MulDiv_<Mat> >, Mat> cv::Mat::mul</definition>
|
985
|
+
<argsstring>(const Mat &m, double scale=1) const </argsstring>
|
986
|
+
<name>mul</name>
|
987
|
+
<param>
|
988
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
989
|
+
<declname>m</declname>
|
990
|
+
</param>
|
991
|
+
<param>
|
992
|
+
<type>double</type>
|
993
|
+
<declname>scale</declname>
|
994
|
+
<defval>1</defval>
|
995
|
+
</param>
|
996
|
+
<briefdescription>
|
997
|
+
</briefdescription>
|
998
|
+
<detaileddescription>
|
999
|
+
</detaileddescription>
|
1000
|
+
<inbodydescription>
|
1001
|
+
</inbodydescription>
|
1002
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="863"/>
|
1003
|
+
</memberdef>
|
1004
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a173122ee6a42a6a5964c5e3cf7993302" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1005
|
+
<type>MatExpr_< MatExpr_Op4_< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, double, char, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="namespacecv_1aa84c1d1ae9cf2476d71a1e085fe9e081" kindref="member">MatOp_MulDiv_</ref>< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > >, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> ></type>
|
1006
|
+
<definition>MatExpr_<MatExpr_Op4_<Mat, Mat, double, char, Mat, MatOp_MulDiv_<Mat> >, Mat> cv::Mat::mul</definition>
|
1007
|
+
<argsstring>(const MatExpr_< MatExpr_Op2_< Mat, double, Mat, MatOp_Scale_< Mat > >, Mat > &m, double scale=1) const </argsstring>
|
1008
|
+
<name>mul</name>
|
1009
|
+
<param>
|
1010
|
+
<type>const MatExpr_< MatExpr_Op2_< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, double, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="namespacecv_1a838d1cf4bd3d04a0dde4fe73c61f4f85" kindref="member">MatOp_Scale_</ref>< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > >, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > &</type>
|
1011
|
+
<declname>m</declname>
|
1012
|
+
</param>
|
1013
|
+
<param>
|
1014
|
+
<type>double</type>
|
1015
|
+
<declname>scale</declname>
|
1016
|
+
<defval>1</defval>
|
1017
|
+
</param>
|
1018
|
+
<briefdescription>
|
1019
|
+
</briefdescription>
|
1020
|
+
<detaileddescription>
|
1021
|
+
</detaileddescription>
|
1022
|
+
<inbodydescription>
|
1023
|
+
</inbodydescription>
|
1024
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="865"/>
|
1025
|
+
</memberdef>
|
1026
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a269878746e8cdc1d2c5464822781eccb" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1027
|
+
<type>MatExpr_< MatExpr_Op4_< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, double, char, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="namespacecv_1aa84c1d1ae9cf2476d71a1e085fe9e081" kindref="member">MatOp_MulDiv_</ref>< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > >, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> ></type>
|
1028
|
+
<definition>MatExpr_<MatExpr_Op4_<Mat, Mat, double, char, Mat, MatOp_MulDiv_<Mat> >, Mat> cv::Mat::mul</definition>
|
1029
|
+
<argsstring>(const MatExpr_< MatExpr_Op2_< Mat, double, Mat, MatOp_DivRS_< Mat > >, Mat > &m, double scale=1) const </argsstring>
|
1030
|
+
<name>mul</name>
|
1031
|
+
<param>
|
1032
|
+
<type>const MatExpr_< MatExpr_Op2_< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, double, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref>, <ref refid="namespacecv_1a4e317b7fcf701e6c834e0f68fb845c7b" kindref="member">MatOp_DivRS_</ref>< <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > >, <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> > &</type>
|
1033
|
+
<declname>m</declname>
|
1034
|
+
</param>
|
1035
|
+
<param>
|
1036
|
+
<type>double</type>
|
1037
|
+
<declname>scale</declname>
|
1038
|
+
<defval>1</defval>
|
1039
|
+
</param>
|
1040
|
+
<briefdescription>
|
1041
|
+
</briefdescription>
|
1042
|
+
<detaileddescription>
|
1043
|
+
</detaileddescription>
|
1044
|
+
<inbodydescription>
|
1045
|
+
</inbodydescription>
|
1046
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="867"/>
|
1047
|
+
</memberdef>
|
1048
|
+
<memberdef kind="function" id="classcv_1_1_mat_1af22eb949a15144a145e9283ed0cadccb" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1049
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
1050
|
+
<definition>Mat cv::Mat::cross</definition>
|
1051
|
+
<argsstring>(const Mat &m) const </argsstring>
|
1052
|
+
<name>cross</name>
|
1053
|
+
<param>
|
1054
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
1055
|
+
<declname>m</declname>
|
1056
|
+
</param>
|
1057
|
+
<briefdescription>
|
1058
|
+
</briefdescription>
|
1059
|
+
<detaileddescription>
|
1060
|
+
</detaileddescription>
|
1061
|
+
<inbodydescription>
|
1062
|
+
</inbodydescription>
|
1063
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="870"/>
|
1064
|
+
</memberdef>
|
1065
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ac2a05e801a408df5be90491639a52c89" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1066
|
+
<type>double</type>
|
1067
|
+
<definition>double cv::Mat::dot</definition>
|
1068
|
+
<argsstring>(const Mat &m) const </argsstring>
|
1069
|
+
<name>dot</name>
|
1070
|
+
<param>
|
1071
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
1072
|
+
<declname>m</declname>
|
1073
|
+
</param>
|
1074
|
+
<briefdescription>
|
1075
|
+
</briefdescription>
|
1076
|
+
<detaileddescription>
|
1077
|
+
</detaileddescription>
|
1078
|
+
<inbodydescription>
|
1079
|
+
</inbodydescription>
|
1080
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="872"/>
|
1081
|
+
</memberdef>
|
1082
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aef6575da9c9d0286c4687d6ddbb00788" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
1083
|
+
<type>void</type>
|
1084
|
+
<definition>void cv::Mat::create</definition>
|
1085
|
+
<argsstring>(int _rows, int _cols, int _type)</argsstring>
|
1086
|
+
<name>create</name>
|
1087
|
+
<param>
|
1088
|
+
<type>int</type>
|
1089
|
+
<declname>_rows</declname>
|
1090
|
+
</param>
|
1091
|
+
<param>
|
1092
|
+
<type>int</type>
|
1093
|
+
<declname>_cols</declname>
|
1094
|
+
</param>
|
1095
|
+
<param>
|
1096
|
+
<type>int</type>
|
1097
|
+
<declname>_type</declname>
|
1098
|
+
</param>
|
1099
|
+
<briefdescription>
|
1100
|
+
</briefdescription>
|
1101
|
+
<detaileddescription>
|
1102
|
+
<para>Allocate new matrix data unless the matrix already has the specified size and type. The previous data will be unreferenced if needed. <parameterlist kind="param"><parameteritem>
|
1103
|
+
<parameternamelist>
|
1104
|
+
<parametername>_rows</parametername>
|
1105
|
+
</parameternamelist>
|
1106
|
+
<parameterdescription>
|
1107
|
+
<para>number of rows in the new matrix data </para></parameterdescription>
|
1108
|
+
</parameteritem>
|
1109
|
+
<parameteritem>
|
1110
|
+
<parameternamelist>
|
1111
|
+
<parametername>_cols</parametername>
|
1112
|
+
</parameternamelist>
|
1113
|
+
<parameterdescription>
|
1114
|
+
<para>number of columns in the new matrix data </para></parameterdescription>
|
1115
|
+
</parameteritem>
|
1116
|
+
<parameteritem>
|
1117
|
+
<parameternamelist>
|
1118
|
+
<parametername>_type</parametername>
|
1119
|
+
</parameternamelist>
|
1120
|
+
<parameterdescription>
|
1121
|
+
<para><ref refid="group___magic_type" kindref="compound">MagicType</ref> of the new data </para></parameterdescription>
|
1122
|
+
</parameteritem>
|
1123
|
+
</parameterlist>
|
1124
|
+
</para> </detaileddescription>
|
1125
|
+
<inbodydescription>
|
1126
|
+
</inbodydescription>
|
1127
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="888"/>
|
1128
|
+
</memberdef>
|
1129
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a8e1e3ce54ef27bfb07b88b6db807b480" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
1130
|
+
<type>void</type>
|
1131
|
+
<definition>void cv::Mat::create</definition>
|
1132
|
+
<argsstring>(Size _size, int _type)</argsstring>
|
1133
|
+
<name>create</name>
|
1134
|
+
<param>
|
1135
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
1136
|
+
<declname>_size</declname>
|
1137
|
+
</param>
|
1138
|
+
<param>
|
1139
|
+
<type>int</type>
|
1140
|
+
<declname>_type</declname>
|
1141
|
+
</param>
|
1142
|
+
<briefdescription>
|
1143
|
+
</briefdescription>
|
1144
|
+
<detaileddescription>
|
1145
|
+
</detaileddescription>
|
1146
|
+
<inbodydescription>
|
1147
|
+
</inbodydescription>
|
1148
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="889"/>
|
1149
|
+
</memberdef>
|
1150
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a9d3794250e3dc39714f980b4d0d45864" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
1151
|
+
<type>void</type>
|
1152
|
+
<definition>void cv::Mat::addref</definition>
|
1153
|
+
<argsstring>()</argsstring>
|
1154
|
+
<name>addref</name>
|
1155
|
+
<briefdescription>
|
1156
|
+
</briefdescription>
|
1157
|
+
<detaileddescription>
|
1158
|
+
</detaileddescription>
|
1159
|
+
<inbodydescription>
|
1160
|
+
</inbodydescription>
|
1161
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="891"/>
|
1162
|
+
</memberdef>
|
1163
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ae48d4913285518e2c21a3457017e716e" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
1164
|
+
<type>void</type>
|
1165
|
+
<definition>void cv::Mat::release</definition>
|
1166
|
+
<argsstring>()</argsstring>
|
1167
|
+
<name>release</name>
|
1168
|
+
<briefdescription>
|
1169
|
+
</briefdescription>
|
1170
|
+
<detaileddescription>
|
1171
|
+
</detaileddescription>
|
1172
|
+
<inbodydescription>
|
1173
|
+
</inbodydescription>
|
1174
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="894"/>
|
1175
|
+
</memberdef>
|
1176
|
+
<memberdef kind="function" id="classcv_1_1_mat_1af188277bef9a3c31dc8054519ba76d77" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1177
|
+
<type>void</type>
|
1178
|
+
<definition>void cv::Mat::locateROI</definition>
|
1179
|
+
<argsstring>(Size &wholeSize, Point &ofs) const </argsstring>
|
1180
|
+
<name>locateROI</name>
|
1181
|
+
<param>
|
1182
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref> &</type>
|
1183
|
+
<declname>wholeSize</declname>
|
1184
|
+
</param>
|
1185
|
+
<param>
|
1186
|
+
<type><ref refid="classcv_1_1_point__" kindref="compound">Point</ref> &</type>
|
1187
|
+
<declname>ofs</declname>
|
1188
|
+
</param>
|
1189
|
+
<briefdescription>
|
1190
|
+
</briefdescription>
|
1191
|
+
<detaileddescription>
|
1192
|
+
</detaileddescription>
|
1193
|
+
<inbodydescription>
|
1194
|
+
</inbodydescription>
|
1195
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="897"/>
|
1196
|
+
</memberdef>
|
1197
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a2fece3507ee7e1284deee6da99e76b9b" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
1198
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
1199
|
+
<definition>Mat& cv::Mat::adjustROI</definition>
|
1200
|
+
<argsstring>(int dtop, int dbottom, int dleft, int dright)</argsstring>
|
1201
|
+
<name>adjustROI</name>
|
1202
|
+
<reimplementedby refid="classcv_1_1_mat___1a25bbeeabcfac92ac63c9a7fa0ef4d037">adjustROI</reimplementedby>
|
1203
|
+
<param>
|
1204
|
+
<type>int</type>
|
1205
|
+
<declname>dtop</declname>
|
1206
|
+
</param>
|
1207
|
+
<param>
|
1208
|
+
<type>int</type>
|
1209
|
+
<declname>dbottom</declname>
|
1210
|
+
</param>
|
1211
|
+
<param>
|
1212
|
+
<type>int</type>
|
1213
|
+
<declname>dleft</declname>
|
1214
|
+
</param>
|
1215
|
+
<param>
|
1216
|
+
<type>int</type>
|
1217
|
+
<declname>dright</declname>
|
1218
|
+
</param>
|
1219
|
+
<briefdescription>
|
1220
|
+
</briefdescription>
|
1221
|
+
<detaileddescription>
|
1222
|
+
<para>Changes the Region Of Interest (ROI) by moving/resizing the current ROI. All adjustments are limited to the bounds of the original matrix to ensure that the ROI does not go out of the matrix data.</para><para><parameterlist kind="param"><parameteritem>
|
1223
|
+
<parameternamelist>
|
1224
|
+
<parametername>dtop</parametername>
|
1225
|
+
</parameternamelist>
|
1226
|
+
<parameterdescription>
|
1227
|
+
<para>delta to move top side </para></parameterdescription>
|
1228
|
+
</parameteritem>
|
1229
|
+
<parameteritem>
|
1230
|
+
<parameternamelist>
|
1231
|
+
<parametername>dbottom</parametername>
|
1232
|
+
</parameternamelist>
|
1233
|
+
<parameterdescription>
|
1234
|
+
<para>delta to move bottom side </para></parameterdescription>
|
1235
|
+
</parameteritem>
|
1236
|
+
<parameteritem>
|
1237
|
+
<parameternamelist>
|
1238
|
+
<parametername>dleft</parametername>
|
1239
|
+
</parameternamelist>
|
1240
|
+
<parameterdescription>
|
1241
|
+
<para>delta to move left side </para></parameterdescription>
|
1242
|
+
</parameteritem>
|
1243
|
+
<parameteritem>
|
1244
|
+
<parameternamelist>
|
1245
|
+
<parametername>dright</parametername>
|
1246
|
+
</parameternamelist>
|
1247
|
+
<parameterdescription>
|
1248
|
+
<para>delta to move right side </para></parameterdescription>
|
1249
|
+
</parameteritem>
|
1250
|
+
</parameterlist>
|
1251
|
+
<simplesect kind="return"><para>reference to the current matrix </para></simplesect>
|
1252
|
+
</para> </detaileddescription>
|
1253
|
+
<inbodydescription>
|
1254
|
+
</inbodydescription>
|
1255
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="909"/>
|
1256
|
+
</memberdef>
|
1257
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a639213bc2cb22d5215cee2d50fd38e0a" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1258
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
1259
|
+
<definition>Mat cv::Mat::operator()</definition>
|
1260
|
+
<argsstring>(Range rowRange, Range colRange) const </argsstring>
|
1261
|
+
<name>operator()</name>
|
1262
|
+
<param>
|
1263
|
+
<type><ref refid="classcv_1_1_range" kindref="compound">Range</ref></type>
|
1264
|
+
<declname>rowRange</declname>
|
1265
|
+
</param>
|
1266
|
+
<param>
|
1267
|
+
<type><ref refid="classcv_1_1_range" kindref="compound">Range</ref></type>
|
1268
|
+
<declname>colRange</declname>
|
1269
|
+
</param>
|
1270
|
+
<briefdescription>
|
1271
|
+
</briefdescription>
|
1272
|
+
<detaileddescription>
|
1273
|
+
<para>Extract a rectangular sub-matrix from row and column range information.</para><para><parameterlist kind="param"><parameteritem>
|
1274
|
+
<parameternamelist>
|
1275
|
+
<parametername>rowRange</parametername>
|
1276
|
+
</parameternamelist>
|
1277
|
+
<parameterdescription>
|
1278
|
+
<para>the row range that we want to extract </para></parameterdescription>
|
1279
|
+
</parameteritem>
|
1280
|
+
<parameteritem>
|
1281
|
+
<parameternamelist>
|
1282
|
+
<parametername>colRange</parametername>
|
1283
|
+
</parameternamelist>
|
1284
|
+
<parameterdescription>
|
1285
|
+
<para>the column range that we want to extract </para></parameterdescription>
|
1286
|
+
</parameteritem>
|
1287
|
+
</parameterlist>
|
1288
|
+
<simplesect kind="return"><para>new <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> header sharing the data of the original matrix </para></simplesect>
|
1289
|
+
</para> </detaileddescription>
|
1290
|
+
<inbodydescription>
|
1291
|
+
</inbodydescription>
|
1292
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="917"/>
|
1293
|
+
</memberdef>
|
1294
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a07413f2e3e63a12185b8b218c24c7270" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1295
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
1296
|
+
<definition>Mat cv::Mat::operator()</definition>
|
1297
|
+
<argsstring>(const Rect &roi) const </argsstring>
|
1298
|
+
<name>operator()</name>
|
1299
|
+
<reimplementedby refid="classcv_1_1_mat___1a7c0098257cea0d87bb599904b64d4fdb">operator()</reimplementedby>
|
1300
|
+
<param>
|
1301
|
+
<type>const <ref refid="classcv_1_1_rect__" kindref="compound">Rect</ref> &</type>
|
1302
|
+
<declname>roi</declname>
|
1303
|
+
</param>
|
1304
|
+
<briefdescription>
|
1305
|
+
</briefdescription>
|
1306
|
+
<detaileddescription>
|
1307
|
+
<para>Extract a rectangular sub-matrix from a rectangle ROI.</para><para><parameterlist kind="param"><parameteritem>
|
1308
|
+
<parameternamelist>
|
1309
|
+
<parametername>roi</parametername>
|
1310
|
+
</parameternamelist>
|
1311
|
+
<parameterdescription>
|
1312
|
+
<para>the region of interest in the current matrix </para></parameterdescription>
|
1313
|
+
</parameteritem>
|
1314
|
+
</parameterlist>
|
1315
|
+
<simplesect kind="return"><para>new <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> header sharing the data of the original matrix </para></simplesect>
|
1316
|
+
</para> </detaileddescription>
|
1317
|
+
<inbodydescription>
|
1318
|
+
</inbodydescription>
|
1319
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="924"/>
|
1320
|
+
</memberdef>
|
1321
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aa09a1c7966df3ce9bb5b1d936354d868" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1322
|
+
<type></type>
|
1323
|
+
<definition>cv::Mat::operator CvMat</definition>
|
1324
|
+
<argsstring>() const </argsstring>
|
1325
|
+
<name>operator CvMat</name>
|
1326
|
+
<briefdescription>
|
1327
|
+
</briefdescription>
|
1328
|
+
<detaileddescription>
|
1329
|
+
<para>Convert header to legacy <ref refid="struct_cv_mat" kindref="compound">CvMat</ref> format without copying the data. <simplesect kind="return"><para>a new <ref refid="struct_cv_mat" kindref="compound">CvMat</ref> header using the same format and data. </para></simplesect>
|
1330
|
+
</para> </detaileddescription>
|
1331
|
+
<inbodydescription>
|
1332
|
+
</inbodydescription>
|
1333
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="929"/>
|
1334
|
+
</memberdef>
|
1335
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a58be4601818b7271611786bb554241c3" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1336
|
+
<type></type>
|
1337
|
+
<definition>cv::Mat::operator IplImage</definition>
|
1338
|
+
<argsstring>() const </argsstring>
|
1339
|
+
<name>operator IplImage</name>
|
1340
|
+
<briefdescription>
|
1341
|
+
</briefdescription>
|
1342
|
+
<detaileddescription>
|
1343
|
+
</detaileddescription>
|
1344
|
+
<inbodydescription>
|
1345
|
+
</inbodydescription>
|
1346
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="931"/>
|
1347
|
+
</memberdef>
|
1348
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aff83775c7fc1479de5f4a8c4e67fe361" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1349
|
+
<type>bool</type>
|
1350
|
+
<definition>bool cv::Mat::isContinuous</definition>
|
1351
|
+
<argsstring>() const </argsstring>
|
1352
|
+
<name>isContinuous</name>
|
1353
|
+
<briefdescription>
|
1354
|
+
</briefdescription>
|
1355
|
+
<detaileddescription>
|
1356
|
+
</detaileddescription>
|
1357
|
+
<inbodydescription>
|
1358
|
+
</inbodydescription>
|
1359
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="936"/>
|
1360
|
+
</memberdef>
|
1361
|
+
<memberdef kind="function" id="classcv_1_1_mat_1af72a7cf6705c102f05b5760db5d3b6ed" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1362
|
+
<type>size_t</type>
|
1363
|
+
<definition>size_t cv::Mat::elemSize</definition>
|
1364
|
+
<argsstring>() const </argsstring>
|
1365
|
+
<name>elemSize</name>
|
1366
|
+
<reimplementedby refid="classcv_1_1_mat___1ab76741aad767a3574eae164742e3d7b5">elemSize</reimplementedby>
|
1367
|
+
<briefdescription>
|
1368
|
+
</briefdescription>
|
1369
|
+
<detaileddescription>
|
1370
|
+
<para>Size in bytes of an element. For example: a matrix with type <computeroutput>CV_32FC3</computeroutput> would have a channel size of 3 and thus an element size of 3 floats = 12 bytes. </para> </detaileddescription>
|
1371
|
+
<inbodydescription>
|
1372
|
+
</inbodydescription>
|
1373
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="942"/>
|
1374
|
+
</memberdef>
|
1375
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a91e0bf81a49b68ca1d95fdf7dce58d30" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1376
|
+
<type>size_t</type>
|
1377
|
+
<definition>size_t cv::Mat::elemSize1</definition>
|
1378
|
+
<argsstring>() const </argsstring>
|
1379
|
+
<name>elemSize1</name>
|
1380
|
+
<reimplementedby refid="classcv_1_1_mat___1a9667acbed43ae6d910d7023de41ce7e5">elemSize1</reimplementedby>
|
1381
|
+
<briefdescription>
|
1382
|
+
</briefdescription>
|
1383
|
+
<detaileddescription>
|
1384
|
+
<para>Size in bytes of a single value. For example: a matrix with type <computeroutput>CV_32FC3</computeroutput> would have an value size of 1 float = 4 bytes. </para> </detaileddescription>
|
1385
|
+
<inbodydescription>
|
1386
|
+
</inbodydescription>
|
1387
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="948"/>
|
1388
|
+
</memberdef>
|
1389
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aa6477efc7399fbe742418250ccf99a4b" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1390
|
+
<type>int</type>
|
1391
|
+
<definition>int cv::Mat::type</definition>
|
1392
|
+
<argsstring>() const </argsstring>
|
1393
|
+
<name>type</name>
|
1394
|
+
<reimplementedby refid="classcv_1_1_mat___1ad049d5f8816aa3e8c2e8584ea0a9c437">type</reimplementedby>
|
1395
|
+
<briefdescription>
|
1396
|
+
</briefdescription>
|
1397
|
+
<detaileddescription>
|
1398
|
+
<para>Get the <ref refid="group___magic_type" kindref="compound">MagicType</ref> of the data. This method is similar to CV_MAT_TYPE(cvmat->type).</para><para><simplesect kind="return"><para><ref refid="group___magic_type" kindref="compound">MagicType</ref> of the data </para></simplesect>
|
1399
|
+
</para> </detaileddescription>
|
1400
|
+
<inbodydescription>
|
1401
|
+
</inbodydescription>
|
1402
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="955"/>
|
1403
|
+
</memberdef>
|
1404
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aaad7b287d4ea97236f6c506d2c4823a4" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1405
|
+
<type>int</type>
|
1406
|
+
<definition>int cv::Mat::depth</definition>
|
1407
|
+
<argsstring>() const </argsstring>
|
1408
|
+
<name>depth</name>
|
1409
|
+
<reimplementedby refid="classcv_1_1_mat___1a91854cefee382a2ead2bc691ac9cf41a">depth</reimplementedby>
|
1410
|
+
<briefdescription>
|
1411
|
+
</briefdescription>
|
1412
|
+
<detaileddescription>
|
1413
|
+
<para>Returns the <ref refid="group___depth_type" kindref="compound">DepthType</ref> of the current matrix. The DepthType is a single number representing the kind of value stored. This method is similar to CV_MAT_DEPTH(cvmat->type). </para> </detaileddescription>
|
1414
|
+
<inbodydescription>
|
1415
|
+
</inbodydescription>
|
1416
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="961"/>
|
1417
|
+
</memberdef>
|
1418
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a25a881a7ec5963714af7de1e4a63e521" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1419
|
+
<type>int</type>
|
1420
|
+
<definition>int cv::Mat::channels</definition>
|
1421
|
+
<argsstring>() const </argsstring>
|
1422
|
+
<name>channels</name>
|
1423
|
+
<reimplementedby refid="classcv_1_1_mat___1ace2da405cbb8da7092628764c124816e">channels</reimplementedby>
|
1424
|
+
<briefdescription>
|
1425
|
+
</briefdescription>
|
1426
|
+
<detaileddescription>
|
1427
|
+
<para>Get the number of channels (number of values in each element). Similar to CV_MAT_CN(cvmat->type). <simplesect kind="return"><para>number of channels </para></simplesect>
|
1428
|
+
</para> </detaileddescription>
|
1429
|
+
<inbodydescription>
|
1430
|
+
</inbodydescription>
|
1431
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="967"/>
|
1432
|
+
</memberdef>
|
1433
|
+
<memberdef kind="function" id="classcv_1_1_mat_1adfa282a0c8b9e5ff259f14b12f2417af" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1434
|
+
<type>size_t</type>
|
1435
|
+
<definition>size_t cv::Mat::step1</definition>
|
1436
|
+
<argsstring>() const </argsstring>
|
1437
|
+
<name>step1</name>
|
1438
|
+
<reimplementedby refid="classcv_1_1_mat___1a78ae1bdd524adc4b6d09613a70ff4917">step1</reimplementedby>
|
1439
|
+
<briefdescription>
|
1440
|
+
</briefdescription>
|
1441
|
+
<detaileddescription>
|
1442
|
+
<para>Get the number of elements to move to next row. This number is the number of bytes to next row (<ref refid="classcv_1_1_mat_1a189e3e4d28750a300bbf49103ce3ec6e" kindref="member">step</ref>) divided by the number of bytes forming a single element (<ref refid="classcv_1_1_mat_1af72a7cf6705c102f05b5760db5d3b6ed" kindref="member">elemSize</ref>). <simplesect kind="return"><para>number of elements to move to next row </para></simplesect>
|
1443
|
+
</para> </detaileddescription>
|
1444
|
+
<inbodydescription>
|
1445
|
+
</inbodydescription>
|
1446
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="974"/>
|
1447
|
+
</memberdef>
|
1448
|
+
<memberdef kind="function" id="classcv_1_1_mat_1af864f7576072dc7594cd0eab9eacc5c0" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1449
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
1450
|
+
<definition>Size cv::Mat::size</definition>
|
1451
|
+
<argsstring>() const </argsstring>
|
1452
|
+
<name>size</name>
|
1453
|
+
<briefdescription>
|
1454
|
+
</briefdescription>
|
1455
|
+
<detaileddescription>
|
1456
|
+
<para>Get the <ref refid="namespacecv_1a346f563897249351a34549137c8532a0" kindref="member">Size</ref> of the matrix. The <computeroutput>width</computeroutput> parameter represents the number of columns and the <computeroutput>height</computeroutput> parameter the number of rows. <simplesect kind="return"><para>size of the matrix </para></simplesect>
|
1457
|
+
</para> </detaileddescription>
|
1458
|
+
<inbodydescription>
|
1459
|
+
</inbodydescription>
|
1460
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="981"/>
|
1461
|
+
</memberdef>
|
1462
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a17d0777aef52a7cfbdb8d04d189fa5c3" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1463
|
+
<type>bool</type>
|
1464
|
+
<definition>bool cv::Mat::empty</definition>
|
1465
|
+
<argsstring>() const </argsstring>
|
1466
|
+
<name>empty</name>
|
1467
|
+
<briefdescription>
|
1468
|
+
</briefdescription>
|
1469
|
+
<detaileddescription>
|
1470
|
+
</detaileddescription>
|
1471
|
+
<inbodydescription>
|
1472
|
+
</inbodydescription>
|
1473
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="983"/>
|
1474
|
+
</memberdef>
|
1475
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a8d2d1cd8de25fe16d8b0348f6fb456a1" prot="public" static="no" const="no" explicit="no" inline="no" virt="non-virtual">
|
1476
|
+
<type><ref refid="cxtypes_8h_1a65f85814a8290f9797005d3b28e7e5fc" kindref="member">uchar</ref> *</type>
|
1477
|
+
<definition>uchar* cv::Mat::ptr</definition>
|
1478
|
+
<argsstring>(int y=0)</argsstring>
|
1479
|
+
<name>ptr</name>
|
1480
|
+
<param>
|
1481
|
+
<type>int</type>
|
1482
|
+
<declname>y</declname>
|
1483
|
+
<defval>0</defval>
|
1484
|
+
</param>
|
1485
|
+
<briefdescription>
|
1486
|
+
</briefdescription>
|
1487
|
+
<detaileddescription>
|
1488
|
+
</detaileddescription>
|
1489
|
+
<inbodydescription>
|
1490
|
+
</inbodydescription>
|
1491
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="986"/>
|
1492
|
+
</memberdef>
|
1493
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ac5491133b0711178c1697f3fc16febac" prot="public" static="no" const="yes" explicit="no" inline="no" virt="non-virtual">
|
1494
|
+
<type>const <ref refid="cxtypes_8h_1a65f85814a8290f9797005d3b28e7e5fc" kindref="member">uchar</ref> *</type>
|
1495
|
+
<definition>const uchar* cv::Mat::ptr</definition>
|
1496
|
+
<argsstring>(int y=0) const </argsstring>
|
1497
|
+
<name>ptr</name>
|
1498
|
+
<param>
|
1499
|
+
<type>int</type>
|
1500
|
+
<declname>y</declname>
|
1501
|
+
<defval>0</defval>
|
1502
|
+
</param>
|
1503
|
+
<briefdescription>
|
1504
|
+
</briefdescription>
|
1505
|
+
<detaileddescription>
|
1506
|
+
</detaileddescription>
|
1507
|
+
<inbodydescription>
|
1508
|
+
</inbodydescription>
|
1509
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="987"/>
|
1510
|
+
</memberdef>
|
1511
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a5601d721e5f8e83c7a774e716c312782" prot="public" static="no" const="no" explicit="no" inline="yes" virt="non-virtual">
|
1512
|
+
<templateparamlist>
|
1513
|
+
<param>
|
1514
|
+
<type>typename _Tp</type>
|
1515
|
+
</param>
|
1516
|
+
</templateparamlist>
|
1517
|
+
<type>_Tp *</type>
|
1518
|
+
<definition>_Tp* cv::Mat::ptr</definition>
|
1519
|
+
<argsstring>(int y=0)</argsstring>
|
1520
|
+
<name>ptr</name>
|
1521
|
+
<param>
|
1522
|
+
<type>int</type>
|
1523
|
+
<declname>y</declname>
|
1524
|
+
<defval>0</defval>
|
1525
|
+
</param>
|
1526
|
+
<briefdescription>
|
1527
|
+
</briefdescription>
|
1528
|
+
<detaileddescription>
|
1529
|
+
</detaileddescription>
|
1530
|
+
<inbodydescription>
|
1531
|
+
</inbodydescription>
|
1532
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="990"/>
|
1533
|
+
</memberdef>
|
1534
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a0c003aad66785786abd582ad3b42bfc0" prot="public" static="no" const="yes" explicit="no" inline="yes" virt="non-virtual">
|
1535
|
+
<templateparamlist>
|
1536
|
+
<param>
|
1537
|
+
<type>typename _Tp</type>
|
1538
|
+
</param>
|
1539
|
+
</templateparamlist>
|
1540
|
+
<type>const _Tp *</type>
|
1541
|
+
<definition>const _Tp* cv::Mat::ptr</definition>
|
1542
|
+
<argsstring>(int y=0) const </argsstring>
|
1543
|
+
<name>ptr</name>
|
1544
|
+
<param>
|
1545
|
+
<type>int</type>
|
1546
|
+
<declname>y</declname>
|
1547
|
+
<defval>0</defval>
|
1548
|
+
</param>
|
1549
|
+
<briefdescription>
|
1550
|
+
</briefdescription>
|
1551
|
+
<detaileddescription>
|
1552
|
+
</detaileddescription>
|
1553
|
+
<inbodydescription>
|
1554
|
+
</inbodydescription>
|
1555
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="991"/>
|
1556
|
+
</memberdef>
|
1557
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a02ab6928538a4122db4b776b882cbbd2" prot="public" static="no" const="no" explicit="no" inline="yes" virt="non-virtual">
|
1558
|
+
<templateparamlist>
|
1559
|
+
<param>
|
1560
|
+
<type>typename _Tp</type>
|
1561
|
+
</param>
|
1562
|
+
</templateparamlist>
|
1563
|
+
<type>_Tp &</type>
|
1564
|
+
<definition>_Tp& cv::Mat::at</definition>
|
1565
|
+
<argsstring>(int y, int x)</argsstring>
|
1566
|
+
<name>at</name>
|
1567
|
+
<param>
|
1568
|
+
<type>int</type>
|
1569
|
+
<declname>y</declname>
|
1570
|
+
</param>
|
1571
|
+
<param>
|
1572
|
+
<type>int</type>
|
1573
|
+
<declname>x</declname>
|
1574
|
+
</param>
|
1575
|
+
<briefdescription>
|
1576
|
+
</briefdescription>
|
1577
|
+
<detaileddescription>
|
1578
|
+
</detaileddescription>
|
1579
|
+
<inbodydescription>
|
1580
|
+
</inbodydescription>
|
1581
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="996"/>
|
1582
|
+
</memberdef>
|
1583
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a2083246e89fe69e1a81c4c793b1eee56" prot="public" static="no" const="no" explicit="no" inline="yes" virt="non-virtual">
|
1584
|
+
<templateparamlist>
|
1585
|
+
<param>
|
1586
|
+
<type>typename _Tp</type>
|
1587
|
+
</param>
|
1588
|
+
</templateparamlist>
|
1589
|
+
<type>_Tp &</type>
|
1590
|
+
<definition>_Tp& cv::Mat::at</definition>
|
1591
|
+
<argsstring>(Point pt)</argsstring>
|
1592
|
+
<name>at</name>
|
1593
|
+
<param>
|
1594
|
+
<type><ref refid="classcv_1_1_point__" kindref="compound">Point</ref></type>
|
1595
|
+
<declname>pt</declname>
|
1596
|
+
</param>
|
1597
|
+
<briefdescription>
|
1598
|
+
</briefdescription>
|
1599
|
+
<detaileddescription>
|
1600
|
+
</detaileddescription>
|
1601
|
+
<inbodydescription>
|
1602
|
+
</inbodydescription>
|
1603
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="997"/>
|
1604
|
+
</memberdef>
|
1605
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ac8aa00cdb411fec2fd56b2b3e15f23b9" prot="public" static="no" const="yes" explicit="no" inline="yes" virt="non-virtual">
|
1606
|
+
<templateparamlist>
|
1607
|
+
<param>
|
1608
|
+
<type>typename _Tp</type>
|
1609
|
+
</param>
|
1610
|
+
</templateparamlist>
|
1611
|
+
<type>const _Tp &</type>
|
1612
|
+
<definition>const _Tp& cv::Mat::at</definition>
|
1613
|
+
<argsstring>(int y, int x) const </argsstring>
|
1614
|
+
<name>at</name>
|
1615
|
+
<param>
|
1616
|
+
<type>int</type>
|
1617
|
+
<declname>y</declname>
|
1618
|
+
</param>
|
1619
|
+
<param>
|
1620
|
+
<type>int</type>
|
1621
|
+
<declname>x</declname>
|
1622
|
+
</param>
|
1623
|
+
<briefdescription>
|
1624
|
+
</briefdescription>
|
1625
|
+
<detaileddescription>
|
1626
|
+
</detaileddescription>
|
1627
|
+
<inbodydescription>
|
1628
|
+
</inbodydescription>
|
1629
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="998"/>
|
1630
|
+
</memberdef>
|
1631
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a16ba832ec218e2957fa7164f339eae3e" prot="public" static="no" const="yes" explicit="no" inline="yes" virt="non-virtual">
|
1632
|
+
<templateparamlist>
|
1633
|
+
<param>
|
1634
|
+
<type>typename _Tp</type>
|
1635
|
+
</param>
|
1636
|
+
</templateparamlist>
|
1637
|
+
<type>const _Tp &</type>
|
1638
|
+
<definition>const _Tp& cv::Mat::at</definition>
|
1639
|
+
<argsstring>(Point pt) const </argsstring>
|
1640
|
+
<name>at</name>
|
1641
|
+
<param>
|
1642
|
+
<type><ref refid="classcv_1_1_point__" kindref="compound">Point</ref></type>
|
1643
|
+
<declname>pt</declname>
|
1644
|
+
</param>
|
1645
|
+
<briefdescription>
|
1646
|
+
</briefdescription>
|
1647
|
+
<detaileddescription>
|
1648
|
+
</detaileddescription>
|
1649
|
+
<inbodydescription>
|
1650
|
+
</inbodydescription>
|
1651
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="999"/>
|
1652
|
+
</memberdef>
|
1653
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a7c429283d024a1b3eb38fe156e7de766" prot="public" static="no" const="no" explicit="no" inline="yes" virt="non-virtual">
|
1654
|
+
<templateparamlist>
|
1655
|
+
<param>
|
1656
|
+
<type>typename _Tp</type>
|
1657
|
+
</param>
|
1658
|
+
</templateparamlist>
|
1659
|
+
<type><ref refid="classcv_1_1_mat_iterator__" kindref="compound">MatIterator_</ref>< _Tp ></type>
|
1660
|
+
<definition>MatIterator_<_Tp> cv::Mat::begin</definition>
|
1661
|
+
<argsstring>()</argsstring>
|
1662
|
+
<name>begin</name>
|
1663
|
+
<reimplementedby refid="classcv_1_1_mat___1aa795ee2dc38e65ee129d9125cbabab0e">begin</reimplementedby>
|
1664
|
+
<briefdescription>
|
1665
|
+
</briefdescription>
|
1666
|
+
<detaileddescription>
|
1667
|
+
</detaileddescription>
|
1668
|
+
<inbodydescription>
|
1669
|
+
</inbodydescription>
|
1670
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1003"/>
|
1671
|
+
</memberdef>
|
1672
|
+
<memberdef kind="function" id="classcv_1_1_mat_1afbfd610b6809c56318ebd45c1182d120" prot="public" static="no" const="no" explicit="no" inline="yes" virt="non-virtual">
|
1673
|
+
<templateparamlist>
|
1674
|
+
<param>
|
1675
|
+
<type>typename _Tp</type>
|
1676
|
+
</param>
|
1677
|
+
</templateparamlist>
|
1678
|
+
<type><ref refid="classcv_1_1_mat_iterator__" kindref="compound">MatIterator_</ref>< _Tp ></type>
|
1679
|
+
<definition>MatIterator_<_Tp> cv::Mat::end</definition>
|
1680
|
+
<argsstring>()</argsstring>
|
1681
|
+
<name>end</name>
|
1682
|
+
<reimplementedby refid="classcv_1_1_mat___1a5e02060c1085a73a91d7fe9e8d2583a5">end</reimplementedby>
|
1683
|
+
<briefdescription>
|
1684
|
+
</briefdescription>
|
1685
|
+
<detaileddescription>
|
1686
|
+
</detaileddescription>
|
1687
|
+
<inbodydescription>
|
1688
|
+
</inbodydescription>
|
1689
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1004"/>
|
1690
|
+
</memberdef>
|
1691
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ae001c111570be49b388fa51f824f091c" prot="public" static="no" const="yes" explicit="no" inline="yes" virt="non-virtual">
|
1692
|
+
<templateparamlist>
|
1693
|
+
<param>
|
1694
|
+
<type>typename _Tp</type>
|
1695
|
+
</param>
|
1696
|
+
</templateparamlist>
|
1697
|
+
<type><ref refid="classcv_1_1_mat_const_iterator__" kindref="compound">MatConstIterator_</ref>< _Tp ></type>
|
1698
|
+
<definition>MatConstIterator_<_Tp> cv::Mat::begin</definition>
|
1699
|
+
<argsstring>() const </argsstring>
|
1700
|
+
<name>begin</name>
|
1701
|
+
<reimplementedby refid="classcv_1_1_mat___1a38b49b60592f45ee12b168ce67c848e1">begin</reimplementedby>
|
1702
|
+
<briefdescription>
|
1703
|
+
</briefdescription>
|
1704
|
+
<detaileddescription>
|
1705
|
+
</detaileddescription>
|
1706
|
+
<inbodydescription>
|
1707
|
+
</inbodydescription>
|
1708
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1005"/>
|
1709
|
+
</memberdef>
|
1710
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ad133d905716f017add2ec481ac725def" prot="public" static="no" const="yes" explicit="no" inline="yes" virt="non-virtual">
|
1711
|
+
<templateparamlist>
|
1712
|
+
<param>
|
1713
|
+
<type>typename _Tp</type>
|
1714
|
+
</param>
|
1715
|
+
</templateparamlist>
|
1716
|
+
<type><ref refid="classcv_1_1_mat_const_iterator__" kindref="compound">MatConstIterator_</ref>< _Tp ></type>
|
1717
|
+
<definition>MatConstIterator_<_Tp> cv::Mat::end</definition>
|
1718
|
+
<argsstring>() const </argsstring>
|
1719
|
+
<name>end</name>
|
1720
|
+
<reimplementedby refid="classcv_1_1_mat___1a735bca4c12cb4ddf99589c7313da94d6">end</reimplementedby>
|
1721
|
+
<briefdescription>
|
1722
|
+
</briefdescription>
|
1723
|
+
<detaileddescription>
|
1724
|
+
</detaileddescription>
|
1725
|
+
<inbodydescription>
|
1726
|
+
</inbodydescription>
|
1727
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="1006"/>
|
1728
|
+
</memberdef>
|
1729
|
+
</sectiondef>
|
1730
|
+
<sectiondef kind="public-static-func">
|
1731
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a0f81856dbcb93eae6113947edb3ea068" prot="public" static="yes" const="no" explicit="no" inline="no" virt="non-virtual">
|
1732
|
+
<type><ref refid="classcv_1_1_mat" kindref="compound">Mat</ref></type>
|
1733
|
+
<definition>static Mat cv::Mat::diag</definition>
|
1734
|
+
<argsstring>(const Mat &d)</argsstring>
|
1735
|
+
<name>diag</name>
|
1736
|
+
<param>
|
1737
|
+
<type>const <ref refid="classcv_1_1_mat" kindref="compound">Mat</ref> &</type>
|
1738
|
+
<declname>d</declname>
|
1739
|
+
</param>
|
1740
|
+
<briefdescription>
|
1741
|
+
</briefdescription>
|
1742
|
+
<detaileddescription>
|
1743
|
+
</detaileddescription>
|
1744
|
+
<inbodydescription>
|
1745
|
+
</inbodydescription>
|
1746
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="817"/>
|
1747
|
+
</memberdef>
|
1748
|
+
<memberdef kind="function" id="classcv_1_1_mat_1aa85b198617b573c2e71f0bc064d82214" prot="public" static="yes" const="no" explicit="no" inline="no" virt="non-virtual">
|
1749
|
+
<type><ref refid="namespacecv_1a15c6f18d0d0a4a1f6622c6c063453042" kindref="member">MatExpr_Initializer</ref></type>
|
1750
|
+
<definition>static MatExpr_Initializer cv::Mat::zeros</definition>
|
1751
|
+
<argsstring>(int rows, int cols, int type)</argsstring>
|
1752
|
+
<name>zeros</name>
|
1753
|
+
<param>
|
1754
|
+
<type>int</type>
|
1755
|
+
<declname>rows</declname>
|
1756
|
+
</param>
|
1757
|
+
<param>
|
1758
|
+
<type>int</type>
|
1759
|
+
<declname>cols</declname>
|
1760
|
+
</param>
|
1761
|
+
<param>
|
1762
|
+
<type>int</type>
|
1763
|
+
<declname>type</declname>
|
1764
|
+
</param>
|
1765
|
+
<briefdescription>
|
1766
|
+
</briefdescription>
|
1767
|
+
<detaileddescription>
|
1768
|
+
</detaileddescription>
|
1769
|
+
<inbodydescription>
|
1770
|
+
</inbodydescription>
|
1771
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="875"/>
|
1772
|
+
</memberdef>
|
1773
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a543a24c6033456fc68c99cfad41625d0" prot="public" static="yes" const="no" explicit="no" inline="no" virt="non-virtual">
|
1774
|
+
<type><ref refid="namespacecv_1a15c6f18d0d0a4a1f6622c6c063453042" kindref="member">MatExpr_Initializer</ref></type>
|
1775
|
+
<definition>static MatExpr_Initializer cv::Mat::zeros</definition>
|
1776
|
+
<argsstring>(Size size, int type)</argsstring>
|
1777
|
+
<name>zeros</name>
|
1778
|
+
<param>
|
1779
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
1780
|
+
<declname>size</declname>
|
1781
|
+
</param>
|
1782
|
+
<param>
|
1783
|
+
<type>int</type>
|
1784
|
+
<declname>type</declname>
|
1785
|
+
</param>
|
1786
|
+
<briefdescription>
|
1787
|
+
</briefdescription>
|
1788
|
+
<detaileddescription>
|
1789
|
+
</detaileddescription>
|
1790
|
+
<inbodydescription>
|
1791
|
+
</inbodydescription>
|
1792
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="876"/>
|
1793
|
+
</memberdef>
|
1794
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a3c85ecda6d3590aa2f5c66245b68f25e" prot="public" static="yes" const="no" explicit="no" inline="no" virt="non-virtual">
|
1795
|
+
<type><ref refid="namespacecv_1a15c6f18d0d0a4a1f6622c6c063453042" kindref="member">MatExpr_Initializer</ref></type>
|
1796
|
+
<definition>static MatExpr_Initializer cv::Mat::ones</definition>
|
1797
|
+
<argsstring>(int rows, int cols, int type)</argsstring>
|
1798
|
+
<name>ones</name>
|
1799
|
+
<param>
|
1800
|
+
<type>int</type>
|
1801
|
+
<declname>rows</declname>
|
1802
|
+
</param>
|
1803
|
+
<param>
|
1804
|
+
<type>int</type>
|
1805
|
+
<declname>cols</declname>
|
1806
|
+
</param>
|
1807
|
+
<param>
|
1808
|
+
<type>int</type>
|
1809
|
+
<declname>type</declname>
|
1810
|
+
</param>
|
1811
|
+
<briefdescription>
|
1812
|
+
</briefdescription>
|
1813
|
+
<detaileddescription>
|
1814
|
+
</detaileddescription>
|
1815
|
+
<inbodydescription>
|
1816
|
+
</inbodydescription>
|
1817
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="877"/>
|
1818
|
+
</memberdef>
|
1819
|
+
<memberdef kind="function" id="classcv_1_1_mat_1ac130fe38df8b4fae0b0b345150aee613" prot="public" static="yes" const="no" explicit="no" inline="no" virt="non-virtual">
|
1820
|
+
<type><ref refid="namespacecv_1a15c6f18d0d0a4a1f6622c6c063453042" kindref="member">MatExpr_Initializer</ref></type>
|
1821
|
+
<definition>static MatExpr_Initializer cv::Mat::ones</definition>
|
1822
|
+
<argsstring>(Size size, int type)</argsstring>
|
1823
|
+
<name>ones</name>
|
1824
|
+
<param>
|
1825
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
1826
|
+
<declname>size</declname>
|
1827
|
+
</param>
|
1828
|
+
<param>
|
1829
|
+
<type>int</type>
|
1830
|
+
<declname>type</declname>
|
1831
|
+
</param>
|
1832
|
+
<briefdescription>
|
1833
|
+
</briefdescription>
|
1834
|
+
<detaileddescription>
|
1835
|
+
</detaileddescription>
|
1836
|
+
<inbodydescription>
|
1837
|
+
</inbodydescription>
|
1838
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="878"/>
|
1839
|
+
</memberdef>
|
1840
|
+
<memberdef kind="function" id="classcv_1_1_mat_1a159f7eb0eef824c074f19d3062303fca" prot="public" static="yes" const="no" explicit="no" inline="no" virt="non-virtual">
|
1841
|
+
<type><ref refid="namespacecv_1a15c6f18d0d0a4a1f6622c6c063453042" kindref="member">MatExpr_Initializer</ref></type>
|
1842
|
+
<definition>static MatExpr_Initializer cv::Mat::eye</definition>
|
1843
|
+
<argsstring>(int rows, int cols, int type)</argsstring>
|
1844
|
+
<name>eye</name>
|
1845
|
+
<param>
|
1846
|
+
<type>int</type>
|
1847
|
+
<declname>rows</declname>
|
1848
|
+
</param>
|
1849
|
+
<param>
|
1850
|
+
<type>int</type>
|
1851
|
+
<declname>cols</declname>
|
1852
|
+
</param>
|
1853
|
+
<param>
|
1854
|
+
<type>int</type>
|
1855
|
+
<declname>type</declname>
|
1856
|
+
</param>
|
1857
|
+
<briefdescription>
|
1858
|
+
</briefdescription>
|
1859
|
+
<detaileddescription>
|
1860
|
+
</detaileddescription>
|
1861
|
+
<inbodydescription>
|
1862
|
+
</inbodydescription>
|
1863
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="879"/>
|
1864
|
+
</memberdef>
|
1865
|
+
<memberdef kind="function" id="classcv_1_1_mat_1af3230f380f439f09c676dd4fa8da2e62" prot="public" static="yes" const="no" explicit="no" inline="no" virt="non-virtual">
|
1866
|
+
<type><ref refid="namespacecv_1a15c6f18d0d0a4a1f6622c6c063453042" kindref="member">MatExpr_Initializer</ref></type>
|
1867
|
+
<definition>static MatExpr_Initializer cv::Mat::eye</definition>
|
1868
|
+
<argsstring>(Size size, int type)</argsstring>
|
1869
|
+
<name>eye</name>
|
1870
|
+
<param>
|
1871
|
+
<type><ref refid="classcv_1_1_size__" kindref="compound">Size</ref></type>
|
1872
|
+
<declname>size</declname>
|
1873
|
+
</param>
|
1874
|
+
<param>
|
1875
|
+
<type>int</type>
|
1876
|
+
<declname>type</declname>
|
1877
|
+
</param>
|
1878
|
+
<briefdescription>
|
1879
|
+
</briefdescription>
|
1880
|
+
<detaileddescription>
|
1881
|
+
</detaileddescription>
|
1882
|
+
<inbodydescription>
|
1883
|
+
</inbodydescription>
|
1884
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="880"/>
|
1885
|
+
</memberdef>
|
1886
|
+
</sectiondef>
|
1887
|
+
<briefdescription>
|
1888
|
+
</briefdescription>
|
1889
|
+
<detaileddescription>
|
1890
|
+
</detaileddescription>
|
1891
|
+
<inheritancegraph>
|
1892
|
+
<node id="286">
|
1893
|
+
<label>cv::Mat_< _Tp ></label>
|
1894
|
+
<link refid="classcv_1_1_mat__"/>
|
1895
|
+
<childnode refid="285" relation="public-inheritance">
|
1896
|
+
</childnode>
|
1897
|
+
</node>
|
1898
|
+
<node id="285">
|
1899
|
+
<label>cv::Mat</label>
|
1900
|
+
<link refid="classcv_1_1_mat"/>
|
1901
|
+
</node>
|
1902
|
+
</inheritancegraph>
|
1903
|
+
<location file="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" line="743" bodyfile="/Users/gaspard/git/opencv/opencv/include/opencv/cxcore.hpp" bodystart="742" bodyend="1030"/>
|
1904
|
+
<listofallmembers>
|
1905
|
+
<member refid="classcv_1_1_mat_1a9d3794250e3dc39714f980b4d0d45864" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>addref</name></member>
|
1906
|
+
<member refid="classcv_1_1_mat_1a2fece3507ee7e1284deee6da99e76b9b" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>adjustROI</name></member>
|
1907
|
+
<member refid="classcv_1_1_mat_1a1ae9e51754ae9e3577c567c635d06a72" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>assignTo</name></member>
|
1908
|
+
<member refid="classcv_1_1_mat_1a02ab6928538a4122db4b776b882cbbd2" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>at</name></member>
|
1909
|
+
<member refid="classcv_1_1_mat_1a2083246e89fe69e1a81c4c793b1eee56" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>at</name></member>
|
1910
|
+
<member refid="classcv_1_1_mat_1ac8aa00cdb411fec2fd56b2b3e15f23b9" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>at</name></member>
|
1911
|
+
<member refid="classcv_1_1_mat_1a16ba832ec218e2957fa7164f339eae3e" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>at</name></member>
|
1912
|
+
<member refid="classcv_1_1_mat_1a8972932ab3070c42b7898cdbeaebc12fa1c147538fd896f4f9abce9eaea9727e3" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>AUTO_STEP</name></member>
|
1913
|
+
<member refid="classcv_1_1_mat_1a7c429283d024a1b3eb38fe156e7de766" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>begin</name></member>
|
1914
|
+
<member refid="classcv_1_1_mat_1ae001c111570be49b388fa51f824f091c" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>begin</name></member>
|
1915
|
+
<member refid="classcv_1_1_mat_1a25a881a7ec5963714af7de1e4a63e521" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>channels</name></member>
|
1916
|
+
<member refid="classcv_1_1_mat_1afb01ff6b2231b72f55618bfb66a5326b" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>clone</name></member>
|
1917
|
+
<member refid="classcv_1_1_mat_1ace2ab8cd964b5299c069c39f4f3318f4" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>col</name></member>
|
1918
|
+
<member refid="classcv_1_1_mat_1a1138b6f6e9fc1f0d99d8bc0f595b9a20" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>colRange</name></member>
|
1919
|
+
<member refid="classcv_1_1_mat_1afaa1adb197492153ae11bf690d4eaaea" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>colRange</name></member>
|
1920
|
+
<member refid="classcv_1_1_mat_1aa3e5a47585c9ef6a0842556739155e3e" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>cols</name></member>
|
1921
|
+
<member refid="classcv_1_1_mat_1a8972932ab3070c42b7898cdbeaebc12fa3a50403178ba15a9617f5ff341418cf9" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>CONTINUOUS_FLAG</name></member>
|
1922
|
+
<member refid="classcv_1_1_mat_1a2e8e4141e6e2a4b504a8300aa45deaa0" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>convertTo</name></member>
|
1923
|
+
<member refid="classcv_1_1_mat_1a93d41f0686c829fd293bfb09c5aa0d3f" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>copyTo</name></member>
|
1924
|
+
<member refid="classcv_1_1_mat_1a28a159311cb0bdcaccb0bab8a12eaa7f" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>copyTo</name></member>
|
1925
|
+
<member refid="classcv_1_1_mat_1aef6575da9c9d0286c4687d6ddbb00788" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>create</name></member>
|
1926
|
+
<member refid="classcv_1_1_mat_1a8e1e3ce54ef27bfb07b88b6db807b480" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>create</name></member>
|
1927
|
+
<member refid="classcv_1_1_mat_1af22eb949a15144a145e9283ed0cadccb" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>cross</name></member>
|
1928
|
+
<member refid="classcv_1_1_mat_1a4d33bed1c850265370d2af0ff02e1564" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>data</name></member>
|
1929
|
+
<member refid="classcv_1_1_mat_1a717e658d46d705f4c4863b67cade70d8" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>dataend</name></member>
|
1930
|
+
<member refid="classcv_1_1_mat_1a3c094be66d6a19b74c93d57a502a59d0" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>datastart</name></member>
|
1931
|
+
<member refid="classcv_1_1_mat_1aaad7b287d4ea97236f6c506d2c4823a4" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>depth</name></member>
|
1932
|
+
<member refid="classcv_1_1_mat_1a6a2cf5257b0e8436b9342df14a4797b7" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>diag</name></member>
|
1933
|
+
<member refid="classcv_1_1_mat_1a0f81856dbcb93eae6113947edb3ea068" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>diag</name></member>
|
1934
|
+
<member refid="classcv_1_1_mat_1ac2a05e801a408df5be90491639a52c89" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>dot</name></member>
|
1935
|
+
<member refid="classcv_1_1_mat_1af72a7cf6705c102f05b5760db5d3b6ed" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>elemSize</name></member>
|
1936
|
+
<member refid="classcv_1_1_mat_1a91e0bf81a49b68ca1d95fdf7dce58d30" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>elemSize1</name></member>
|
1937
|
+
<member refid="classcv_1_1_mat_1a17d0777aef52a7cfbdb8d04d189fa5c3" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>empty</name></member>
|
1938
|
+
<member refid="classcv_1_1_mat_1afbfd610b6809c56318ebd45c1182d120" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>end</name></member>
|
1939
|
+
<member refid="classcv_1_1_mat_1ad133d905716f017add2ec481ac725def" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>end</name></member>
|
1940
|
+
<member refid="classcv_1_1_mat_1a159f7eb0eef824c074f19d3062303fca" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>eye</name></member>
|
1941
|
+
<member refid="classcv_1_1_mat_1af3230f380f439f09c676dd4fa8da2e62" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>eye</name></member>
|
1942
|
+
<member refid="classcv_1_1_mat_1af9333f06c84f115fda4cdf3af18c2ad0" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>flags</name></member>
|
1943
|
+
<member refid="classcv_1_1_mat_1a92064ae3058eb780d10b1d0e16e10a87" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>inv</name></member>
|
1944
|
+
<member refid="classcv_1_1_mat_1aff83775c7fc1479de5f4a8c4e67fe361" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>isContinuous</name></member>
|
1945
|
+
<member refid="classcv_1_1_mat_1af188277bef9a3c31dc8054519ba76d77" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>locateROI</name></member>
|
1946
|
+
<member refid="classcv_1_1_mat_1a8972932ab3070c42b7898cdbeaebc12fa2082a2faa4b65dedcc5b84433c97f817" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>MAGIC_VAL</name></member>
|
1947
|
+
<member refid="classcv_1_1_mat_1af1d014cecd1510cdf580bf2ed7e5aafc" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1948
|
+
<member refid="classcv_1_1_mat_1a083d116f0db8e67991f60ac0f7fbf7a5" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1949
|
+
<member refid="classcv_1_1_mat_1a6bd47aeb10295ac550af449fe0c3e643" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1950
|
+
<member refid="classcv_1_1_mat_1a1cd663c089366877df2b666ac609bbde" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1951
|
+
<member refid="classcv_1_1_mat_1a1315aee0375536d374630d6e7c42af44" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1952
|
+
<member refid="classcv_1_1_mat_1a294eaf8a95d2f9c7be19ff594d06278e" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1953
|
+
<member refid="classcv_1_1_mat_1a65a7515778ed4045708af82c2f7eec63" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1954
|
+
<member refid="classcv_1_1_mat_1a4f2ba3afb7980dbdfe676bc8e04fdbc4" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1955
|
+
<member refid="classcv_1_1_mat_1a1ccf50d67abb0f05a14ad138e52fb80b" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1956
|
+
<member refid="classcv_1_1_mat_1aa7ec97373406215f2d4bc72cc1d27036" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1957
|
+
<member refid="classcv_1_1_mat_1ac54e1c5025e8afd7641fd2a37a3deef7" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1958
|
+
<member refid="classcv_1_1_mat_1a5bd19249b7951dd47b04304646404b5c" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1959
|
+
<member refid="classcv_1_1_mat_1a7d65237bb33769a0f785239ede9c0eac" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1960
|
+
<member refid="classcv_1_1_mat_1ac0d35e5faf631138a36895c8f8d63dba" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>Mat</name></member>
|
1961
|
+
<member refid="classcv_1_1_mat_1ab915211d568d9a3286a765e1a10378e6" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>mul</name></member>
|
1962
|
+
<member refid="classcv_1_1_mat_1a173122ee6a42a6a5964c5e3cf7993302" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>mul</name></member>
|
1963
|
+
<member refid="classcv_1_1_mat_1a269878746e8cdc1d2c5464822781eccb" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>mul</name></member>
|
1964
|
+
<member refid="classcv_1_1_mat_1a3c85ecda6d3590aa2f5c66245b68f25e" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>ones</name></member>
|
1965
|
+
<member refid="classcv_1_1_mat_1ac130fe38df8b4fae0b0b345150aee613" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>ones</name></member>
|
1966
|
+
<member refid="classcv_1_1_mat_1aa09a1c7966df3ce9bb5b1d936354d868" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator CvMat</name></member>
|
1967
|
+
<member refid="classcv_1_1_mat_1a58be4601818b7271611786bb554241c3" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator IplImage</name></member>
|
1968
|
+
<member refid="classcv_1_1_mat_1a5205e13801065d6a002360ca1e276d13" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator MatExpr_< Mat, Mat ></name></member>
|
1969
|
+
<member refid="classcv_1_1_mat_1a639213bc2cb22d5215cee2d50fd38e0a" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator()</name></member>
|
1970
|
+
<member refid="classcv_1_1_mat_1a07413f2e3e63a12185b8b218c24c7270" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator()</name></member>
|
1971
|
+
<member refid="classcv_1_1_mat_1aed1f81fe7efaacc2bd95149cdfa34302" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator=</name></member>
|
1972
|
+
<member refid="classcv_1_1_mat_1a4a087de5e4b6ce7e321f7cecf311d7dd" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator=</name></member>
|
1973
|
+
<member refid="classcv_1_1_mat_1aa5c947f7e449a4d856a4f3a87fcebd50" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>operator=</name></member>
|
1974
|
+
<member refid="classcv_1_1_mat_1a8d2d1cd8de25fe16d8b0348f6fb456a1" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>ptr</name></member>
|
1975
|
+
<member refid="classcv_1_1_mat_1ac5491133b0711178c1697f3fc16febac" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>ptr</name></member>
|
1976
|
+
<member refid="classcv_1_1_mat_1a5601d721e5f8e83c7a774e716c312782" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>ptr</name></member>
|
1977
|
+
<member refid="classcv_1_1_mat_1a0c003aad66785786abd582ad3b42bfc0" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>ptr</name></member>
|
1978
|
+
<member refid="classcv_1_1_mat_1a731b10faf33879e2d6a0ebd0fcce4ce4" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>refcount</name></member>
|
1979
|
+
<member refid="classcv_1_1_mat_1ae48d4913285518e2c21a3457017e716e" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>release</name></member>
|
1980
|
+
<member refid="classcv_1_1_mat_1adbca7d35259c060dbd9346a6ccff6bba" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>reshape</name></member>
|
1981
|
+
<member refid="classcv_1_1_mat_1acce30f9c4475038ee86ea8b24e00850a" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>row</name></member>
|
1982
|
+
<member refid="classcv_1_1_mat_1aa5c442a1c548e3c686dbc57be60c7fad" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>rowRange</name></member>
|
1983
|
+
<member refid="classcv_1_1_mat_1a41f404b47717a0216d4e2ec16390e406" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>rowRange</name></member>
|
1984
|
+
<member refid="classcv_1_1_mat_1abed816466c45234254d25bc59c31245e" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>rows</name></member>
|
1985
|
+
<member refid="classcv_1_1_mat_1a53bd9b635ccac48bb44ebcdeeb9dc676" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>setTo</name></member>
|
1986
|
+
<member refid="classcv_1_1_mat_1af864f7576072dc7594cd0eab9eacc5c0" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>size</name></member>
|
1987
|
+
<member refid="classcv_1_1_mat_1a189e3e4d28750a300bbf49103ce3ec6e" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>step</name></member>
|
1988
|
+
<member refid="classcv_1_1_mat_1adfa282a0c8b9e5ff259f14b12f2417af" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>step1</name></member>
|
1989
|
+
<member refid="classcv_1_1_mat_1ab291c4a4818f8f7a257b1cb670ae9307" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>t</name></member>
|
1990
|
+
<member refid="classcv_1_1_mat_1aa6477efc7399fbe742418250ccf99a4b" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>type</name></member>
|
1991
|
+
<member refid="classcv_1_1_mat_1aa85b198617b573c2e71f0bc064d82214" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>zeros</name></member>
|
1992
|
+
<member refid="classcv_1_1_mat_1a543a24c6033456fc68c99cfad41625d0" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>zeros</name></member>
|
1993
|
+
<member refid="classcv_1_1_mat_1a1b2ae166171f6a7306cf09ff67a2153f" prot="public" virt="non-virtual"><scope>cv::Mat</scope><name>~Mat</name></member>
|
1994
|
+
</listofallmembers>
|
1995
|
+
</compounddef>
|
1996
|
+
</doxygen>
|