This commit is contained in:
Dmitry Budnikov 2020-10-19 13:46:23 +03:00
parent 5ac0712cf1
commit dcfa23d5d2
2 changed files with 3 additions and 1 deletions

View File

@ -51,6 +51,7 @@ public:
View(Ptrs&& ptrs, Strides&& strs, Callback &&cb = [](){});
View(const View&) = delete;
View(View&&) = default;
View& operator = (const View&) = delete;
~View();
Ptrs ptr;

View File

@ -618,7 +618,8 @@ TEST_P(SumTest, AccuracyTest)
#undef countNonZero
TEST_P(CountNonZeroTest, AccuracyTest)
{
int out_cnz_gapi, out_cnz_ocv;
int out_cnz_gapi = -1;
int out_cnz_ocv = -2;
// G-API code //////////////////////////////////////////////////////////////
cv::GMat in;