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

Function cvRepeat

deps/opencv/modules/core/src/copy.cpp:622–629  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

620}
621
622CV_IMPL void
623cvRepeat( const CvArr* srcarr, CvArr* dstarr )
624{
625 cv::Mat src = cv::cvarrToMat(srcarr), dst = cv::cvarrToMat(dstarr);
626 CV_Assert( src.type() == dst.type() &&
627 dst.rows % src.rows == 0 && dst.cols % src.cols == 0 );
628 cv::repeat(src, dst.rows/src.rows, dst.cols/src.cols, dst);
629}
630
631/* End of file. */

Callers

nothing calls this directly

Calls 3

cvarrToMatFunction · 0.85
repeatFunction · 0.85
typeMethod · 0.45

Tested by

no test coverage detected