Is there a way to create images in pyopencv? I am trying to convert
my old stuff to the new ways. One function I need to use,
matchTemplate, requires a destination image of a particular size, but
the "createImage" function that I have traditionally used to create
this destination does not seem to be in pyopencv.
Thanks,
Mike
You can use one of many Mat's constructors to create a Mat. It's C++ style
for creating an image.
Cheers,
Minh-Tri