Anding two images open cv using C api?

asked 2014-03-25 03:09:25 -0600

disha gravatar image

updated 2014-03-25 04:40:44 -0600

berak gravatar image

How to and two binary images in open cv and store the points of the final image obtained in a file?

edit retag flag offensive close merge delete

Comments

1

do you really have to use the outdated c-api ? it's so easy in c++:

Mat a,b;

Mat res = a & b;

berak gravatar imageberak ( 2014-03-25 05:23:46 -0600 )edit