MCPcopy Create free account
hub / github.com/creatale/node-dv / isAddEx

Function isAddEx

deps/opencv/modules/core/src/matop.cpp:213–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211
212static inline bool isIdentity(const MatExpr& e) { return e.op == &g_MatOp_Identity; }
213static inline bool isAddEx(const MatExpr& e) { return e.op == &g_MatOp_AddEx; }
214static inline bool isScaled(const MatExpr& e) { return isAddEx(e) && (!e.b.data || e.beta == 0) && e.s == Scalar(); }
215static inline bool isBin(const MatExpr& e, char c) { return e.op == &g_MatOp_Bin && e.flags == c; }
216static inline bool isCmp(const MatExpr& e) { return e.op == &g_MatOp_Cmp; }

Callers 3

isScaledFunction · 0.85
addMethod · 0.85
subtractMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected