Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
28d28a26
Commit
28d28a26
authored
Aug 08, 2016
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7024 from paroj:semanticidx
parents
b316aa37
15dabc11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
16 deletions
+28
-16
mat.hpp
modules/core/include/opencv2/core/mat.hpp
+28
-16
No files found.
modules/core/include/opencv2/core/mat.hpp
View file @
28d28a26
...
...
@@ -1645,10 +1645,16 @@ public:
/** @overload */
const
uchar
*
ptr
(
int
i0
=
0
)
const
;
/** @overload */
uchar
*
ptr
(
int
i0
,
int
i1
);
/** @overload */
const
uchar
*
ptr
(
int
i0
,
int
i1
)
const
;
/** @overload
@param row Index along the dimension 0
@param col Index along the dimension 1
*/
uchar
*
ptr
(
int
row
,
int
col
);
/** @overload
@param row Index along the dimension 0
@param col Index along the dimension 1
*/
const
uchar
*
ptr
(
int
row
,
int
col
)
const
;
/** @overload */
uchar
*
ptr
(
int
i0
,
int
i1
,
int
i2
);
...
...
@@ -1668,10 +1674,16 @@ public:
template
<
typename
_Tp
>
_Tp
*
ptr
(
int
i0
=
0
);
/** @overload */
template
<
typename
_Tp
>
const
_Tp
*
ptr
(
int
i0
=
0
)
const
;
/** @overload */
template
<
typename
_Tp
>
_Tp
*
ptr
(
int
i0
,
int
i1
);
/** @overload */
template
<
typename
_Tp
>
const
_Tp
*
ptr
(
int
i0
,
int
i1
)
const
;
/** @overload
@param row Index along the dimension 0
@param col Index along the dimension 1
*/
template
<
typename
_Tp
>
_Tp
*
ptr
(
int
row
,
int
col
);
/** @overload
@param row Index along the dimension 0
@param col Index along the dimension 1
*/
template
<
typename
_Tp
>
const
_Tp
*
ptr
(
int
row
,
int
col
)
const
;
/** @overload */
template
<
typename
_Tp
>
_Tp
*
ptr
(
int
i0
,
int
i1
,
int
i2
);
/** @overload */
...
...
@@ -1721,15 +1733,15 @@ public:
*/
template
<
typename
_Tp
>
const
_Tp
&
at
(
int
i0
=
0
)
const
;
/** @overload
@param
i0
Index along the dimension 0
@param
i1
Index along the dimension 1
@param
row
Index along the dimension 0
@param
col
Index along the dimension 1
*/
template
<
typename
_Tp
>
_Tp
&
at
(
int
i0
,
int
i1
);
template
<
typename
_Tp
>
_Tp
&
at
(
int
row
,
int
col
);
/** @overload
@param
i0
Index along the dimension 0
@param
i1
Index along the dimension 1
@param
row
Index along the dimension 0
@param
col
Index along the dimension 1
*/
template
<
typename
_Tp
>
const
_Tp
&
at
(
int
i0
,
int
i1
)
const
;
template
<
typename
_Tp
>
const
_Tp
&
at
(
int
row
,
int
col
)
const
;
/** @overload
@param i0 Index along the dimension 0
...
...
@@ -2094,9 +2106,9 @@ public:
//! returns read-only reference to the specified element (1D case)
const
_Tp
&
operator
()(
int
idx0
)
const
;
//! returns reference to the specified element (2D case)
_Tp
&
operator
()(
int
idx0
,
int
idx1
);
_Tp
&
operator
()(
int
row
,
int
col
);
//! returns read-only reference to the specified element (2D case)
const
_Tp
&
operator
()(
int
idx0
,
int
idx1
)
const
;
const
_Tp
&
operator
()(
int
row
,
int
col
)
const
;
//! returns reference to the specified element (3D case)
_Tp
&
operator
()(
int
idx0
,
int
idx1
,
int
idx2
);
//! returns read-only reference to the specified element (3D case)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment