OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatExpr
(Results
1 - 6
of
6
) sorted by null
/external/opencv3/modules/core/src/
matop.cpp
60
bool elementWise(const
MatExpr
& /*expr*/) const { return true; }
61
void assign(const
MatExpr
& expr, Mat& m, int type=-1) const;
63
static void makeExpr(
MatExpr
& res, const Mat& m);
74
bool elementWise(const
MatExpr
& /*expr*/) const { return true; }
75
void assign(const
MatExpr
& expr, Mat& m, int type=-1) const;
77
void add(const
MatExpr
& e1, const Scalar& s,
MatExpr
& res) const;
78
void subtract(const Scalar& s, const
MatExpr
& expr,
MatExpr
& res) const;
79
void multiply(const
MatExpr
& e1, double s, MatExpr& res) const
[
all
...]
matrix.cpp
1139
return (Mat)*((const
MatExpr
*)obj);
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/
mat.hpp
173
_InputArray(const
MatExpr
& expr);
[
all
...]
mat.inl.hpp
107
inline _InputArray::_InputArray(const
MatExpr
& expr)
[
all
...]
base.hpp
607
class CV_EXPORTS
MatExpr
;
/external/opencv3/modules/core/test/
test_operations.cpp
352
MatExpr
mt_tr = mt.t();
353
MatExpr
mi_tr = mi.t();
[
all
...]
Completed in 124 milliseconds