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
259e41da
Commit
259e41da
authored
Apr 07, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted "typedef _InputArray InputArray", fixed warning from doxygen
parent
052593c7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
17 deletions
+24
-17
core.hpp
modules/core/include/opencv2/core.hpp
+4
-0
mat.hpp
modules/core/include/opencv2/core/mat.hpp
+5
-6
mat.inl.hpp
modules/core/include/opencv2/core/mat.inl.hpp
+7
-3
matrix.cpp
modules/core/src/matrix.cpp
+1
-1
connectedcomponents.cpp
modules/imgproc/src/connectedcomponents.cpp
+7
-7
No files found.
modules/core/include/opencv2/core.hpp
View file @
259e41da
...
...
@@ -2958,6 +2958,9 @@ public:
/** @brief Loads algorithm from the file
@param filename Name of the file to read.
@param objname The optional name of the node to read (if empty, the first top-level node will be used)
This is static template method of Algorithm. It's usage is following (in the case of SVM):
@code
Ptr<SVM> svm = Algorithm::load<SVM>("my_svm_model.xml");
...
...
@@ -2977,6 +2980,7 @@ public:
/** @brief Loads algorithm from a String
@param strModel The string variable containing the model you want to load.
@param objname The optional name of the node to read (if empty, the first top-level node will be used)
This is static template method of Algorithm. It's usage is following (in the case of SVM):
@code
...
...
modules/core/include/opencv2/core/mat.hpp
View file @
259e41da
...
...
@@ -70,7 +70,7 @@ class CV_EXPORTS _OutputArray;
It is defined as:
@code
class InputArray; // = _InputArray
typedef const _InputArray& InputArray;
@endcode
where _InputArray is a class that can be constructed from `Mat`, `Mat_<T>`, `Matx<T, m, n>`,
`std::vector<T>`, `std::vector<std::vector<T> >` or `std::vector<Mat>`. It can also be constructed
...
...
@@ -186,6 +186,7 @@ public:
_InputArray
(
const
std
::
vector
<
UMat
>&
umv
);
Mat
getMat
(
int
idx
=-
1
)
const
;
Mat
getMat_
(
int
idx
=-
1
)
const
;
UMat
getUMat
(
int
idx
=-
1
)
const
;
void
getMatVector
(
std
::
vector
<
Mat
>&
mv
)
const
;
void
getUMatVector
(
std
::
vector
<
UMat
>&
umv
)
const
;
...
...
@@ -361,15 +362,13 @@ public:
template
<
typename
_Tp
,
int
m
,
int
n
>
_InputOutputArray
(
const
Matx
<
_Tp
,
m
,
n
>&
matx
);
_InputOutputArray
(
const
UMat
&
m
);
_InputOutputArray
(
const
std
::
vector
<
UMat
>&
vec
);
explicit
_InputOutputArray
(
const
_OutputArray
&
o
);
};
typedef
_InputArray
InputArray
;
typedef
const
_InputArray
&
InputArray
;
typedef
InputArray
InputArrayOfArrays
;
typedef
_OutputArray
OutputArray
;
typedef
const
_OutputArray
&
OutputArray
;
typedef
OutputArray
OutputArrayOfArrays
;
typedef
_InputOutputArray
InputOutputArray
;
typedef
const
_InputOutputArray
&
InputOutputArray
;
typedef
InputOutputArray
InputOutputArrayOfArrays
;
CV_EXPORTS
InputOutputArray
noArray
();
...
...
modules/core/include/opencv2/core/mat.inl.hpp
View file @
259e41da
...
...
@@ -114,6 +114,13 @@ inline _InputArray::_InputArray(const cuda::HostMem& cuda_mem)
inline
_InputArray
::~
_InputArray
()
{}
inline
Mat
_InputArray
::
getMat
(
int
i
)
const
{
if
(
kind
()
==
MAT
&&
i
<
0
)
return
*
(
const
Mat
*
)
obj
;
return
getMat_
(
i
);
}
inline
bool
_InputArray
::
isMat
()
const
{
return
kind
()
==
_InputArray
::
MAT
;
}
inline
bool
_InputArray
::
isUMat
()
const
{
return
kind
()
==
_InputArray
::
UMAT
;
}
inline
bool
_InputArray
::
isMatVector
()
const
{
return
kind
()
==
_InputArray
::
STD_VECTOR_MAT
;
}
...
...
@@ -294,9 +301,6 @@ inline _InputOutputArray::_InputOutputArray(const ogl::Buffer& buf)
inline
_InputOutputArray
::
_InputOutputArray
(
const
cuda
::
HostMem
&
cuda_mem
)
{
init
(
FIXED_TYPE
+
FIXED_SIZE
+
CUDA_HOST_MEM
+
ACCESS_RW
,
&
cuda_mem
);
}
inline
_InputOutputArray
::
_InputOutputArray
(
const
_OutputArray
&
o
)
{
init
(
o
.
getFlags
(),
o
.
getObj
(),
o
.
getSz
());
}
//////////////////////////////////////////// Mat //////////////////////////////////////////
inline
...
...
modules/core/src/matrix.cpp
View file @
259e41da
...
...
@@ -1113,7 +1113,7 @@ void scalarToRawData(const Scalar& s, void* _buf, int type, int unroll_to)
Input/Output Array
\*************************************************************************************************/
Mat
_InputArray
::
getMat
(
int
i
)
const
Mat
_InputArray
::
getMat
_
(
int
i
)
const
{
int
k
=
kind
();
int
accessFlags
=
flags
&
ACCESS_MASK
;
...
...
modules/imgproc/src/connectedcomponents.cpp
View file @
259e41da
...
...
@@ -65,20 +65,20 @@ namespace cv{
};
struct
CCStatsOp
{
OutputArray
_mstatsv
;
const
_OutputArray
*
_mstatsv
;
cv
::
Mat
statsv
;
OutputArray
_mcentroidsv
;
const
_OutputArray
*
_mcentroidsv
;
cv
::
Mat
centroidsv
;
std
::
vector
<
Point2ui64
>
integrals
;
CCStatsOp
(
OutputArray
_statsv
,
OutputArray
_centroidsv
)
:
_mstatsv
(
_statsv
),
_mcentroidsv
(
_centroidsv
){
CCStatsOp
(
OutputArray
_statsv
,
OutputArray
_centroidsv
)
:
_mstatsv
(
&
_statsv
),
_mcentroidsv
(
&
_centroidsv
){
}
inline
void
init
(
int
nlabels
){
_mstatsv
.
create
(
cv
::
Size
(
CC_STAT_MAX
,
nlabels
),
cv
::
DataType
<
int
>::
type
);
statsv
=
_mstatsv
.
getMat
();
_mcentroidsv
.
create
(
cv
::
Size
(
2
,
nlabels
),
cv
::
DataType
<
double
>::
type
);
centroidsv
=
_mcentroidsv
.
getMat
();
_mstatsv
->
create
(
cv
::
Size
(
CC_STAT_MAX
,
nlabels
),
cv
::
DataType
<
int
>::
type
);
statsv
=
_mstatsv
->
getMat
();
_mcentroidsv
->
create
(
cv
::
Size
(
2
,
nlabels
),
cv
::
DataType
<
double
>::
type
);
centroidsv
=
_mcentroidsv
->
getMat
();
for
(
int
l
=
0
;
l
<
(
int
)
nlabels
;
++
l
){
int
*
row
=
(
int
*
)
&
statsv
.
at
<
int
>
(
l
,
0
);
...
...
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