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

Function cvCrossProduct

deps/opencv/modules/core/src/matrix.cpp:2969–2975  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2967
2968
2969CV_IMPL void cvCrossProduct( const CvArr* srcAarr, const CvArr* srcBarr, CvArr* dstarr )
2970{
2971 cv::Mat srcA = cv::cvarrToMat(srcAarr), dst = cv::cvarrToMat(dstarr);
2972
2973 CV_Assert( srcA.size() == dst.size() && srcA.type() == dst.type() );
2974 srcA.cross(cv::cvarrToMat(srcBarr)).copyTo(dst);
2975}
2976
2977
2978CV_IMPL void

Callers

nothing calls this directly

Calls 5

cvarrToMatFunction · 0.85
sizeMethod · 0.45
typeMethod · 0.45
copyToMethod · 0.45
crossMethod · 0.45

Tested by

no test coverage detected