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

Function cvPow

deps/opencv/modules/core/src/mathfuncs.cpp:2300–2305  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2298}
2299
2300CV_IMPL void cvPow( const CvArr* srcarr, CvArr* dstarr, double power )
2301{
2302 cv::Mat src = cv::cvarrToMat(srcarr), dst = cv::cvarrToMat(dstarr);
2303 CV_Assert( src.type() == dst.type() && src.size == dst.size );
2304 cv::pow( src, power, dst );
2305}
2306
2307CV_IMPL int cvCheckArr( const CvArr* arr, int flags,
2308 double minVal, double maxVal )

Callers 2

cvArcLengthFunction · 0.85
icvHoughCirclesGradientFunction · 0.85

Calls 3

cvarrToMatFunction · 0.85
powFunction · 0.85
typeMethod · 0.45

Tested by

no test coverage detected