Anding two images open cv using C api?

asked Mar 25 '14

disha gravatar image

updated Mar 25 '14

berak gravatar image

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

Preview: (hide)

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 (Mar 25 '14)edit