Anding two images open cv using C api?
How to and two binary images in open cv and store the points of the final image obtained in a file?
Asked: Mar 25 '14
Seen: 156 times
Last updated: Mar 25 '14
do you really have to use the outdated c-api ? it's so easy in c++:
Mat a,b;
Mat res = a & b;