| 120 | } |
| 121 | |
| 122 | void ResizeWithPad(const cv::Mat& frame, cv::Mat& dest, cv::Mat& cache, const common::Size& destSize) |
| 123 | { |
| 124 | ResizeFrame(frame, cache, destSize); |
| 125 | PadFrame(cache, dest,destSize.m_Height - cache.rows,destSize.m_Width - cache.cols); |
| 126 | } |
no test coverage detected