mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 11:10:21 +08:00
KW fixes
This commit is contained in:
parent
5ac0712cf1
commit
dcfa23d5d2
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user