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?
How to and two binary images in open cv and store the points of the final image obtained in a file?
Asked: 2014-03-25 03:09:25 -0600
Seen: 153 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;