Commit c0359ed5 authored by marina.kolpakova's avatar marina.kolpakova

fix test: enough size for detection matrix

parent 72b499df
......@@ -104,7 +104,7 @@ PERF_TEST_P(SoftCascade, detect, Values<pair_string>(make_pair("cv/cascadeandhog
cv::gpu::SoftCascade cascade;
ASSERT_TRUE(cascade.load(perf::TestBase::getDataPath(GetParam().first)));
cv::gpu::GpuMat rois, objectBoxes(1, 1000, CV_8UC4);
cv::gpu::GpuMat rois, objectBoxes(1, 16384, CV_8UC1);
cascade.detectMultiScale(colored, rois, objectBoxes);
TEST_CYCLE()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment