fixed cv::mixChannels perf test

This commit is contained in:
Ilya Lavrenov 2014-01-09 14:26:44 +04:00
parent b45bb60c8b
commit 9899cf7519

View File

@ -137,10 +137,13 @@ OCL_PERF_TEST_P(MixChannelsFixture, MixChannels,
checkDeviceMaxMemoryAllocSize(srcSize, type); checkDeviceMaxMemoryAllocSize(srcSize, type);
UMat templ(srcSize, type); std::vector<UMat> src(n), dst(n);
std::vector<UMat> src(n, templ), dst(n, templ);
for (int i = 0; i < n; ++i) for (int i = 0; i < n; ++i)
{
src[i] = UMat(srcSize, type);
dst[i] = UMat(srcSize, type);
declare.in(src[i], WARMUP_RNG).out(dst[i]); declare.in(src[i], WARMUP_RNG).out(dst[i]);
}
int fromTo[] = { 1,2, 2,0, 0,3, 3,1 }; int fromTo[] = { 1,2, 2,0, 0,3, 3,1 };