I have two Mat a,b;
Eventually in the code there is some a = b;
Is there any way to check whenever a
and b
within code points to the same data?
(Without drawing stuff on one image and showing the other)
1 | initial version |
I have two Mat a,b;
Eventually in the code there is some a = b;
Is there any way to check whenever a
and b
within code points to the same data?
(Without drawing stuff on one image and showing the other)
2 | No.2 Revision |
I have two
Mat a,b;a,b;
Eventually in the code there is some it could happen
a = b;b;
Is there any way to check whenever a
and b
within code points to the same data? data pointer (within code)?
3 | retagged |
I have two
Mat a,b;
Eventually in the code it could happen
a = b;
Is there any way to check whenever a
and b
points to the same data pointer (within code)?
(Without drawing stuff on one image and showing the other)
4 | retagged |
I have two
Mat a,b;
Eventually in the code it could happen
a = b;
Is there any way to check whenever a
and b
points to the same data pointer (within code)?
(Without drawing stuff on one image and showing the other)