switched to Input/Output Array in Histogram Processing

This commit is contained in:
Vladislav Vinogradov
2013-04-30 10:59:13 +04:00
parent 9eea9835ab
commit fc8476544c
4 changed files with 389 additions and 367 deletions

View File

@@ -167,10 +167,9 @@ PERF_TEST_P(Sz, EqualizeHist,
{
const cv::gpu::GpuMat d_src(src);
cv::gpu::GpuMat dst;
cv::gpu::GpuMat d_hist;
cv::gpu::GpuMat d_buf;
TEST_CYCLE() cv::gpu::equalizeHist(d_src, dst, d_hist, d_buf);
TEST_CYCLE() cv::gpu::equalizeHist(d_src, dst, d_buf);
GPU_SANITY_CHECK(dst);
}