| 620 | } |
| 621 | |
| 622 | CV_IMPL void |
| 623 | cvRepeat( 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. */ |
nothing calls this directly
no test coverage detected