Function addWeighted in OpenCV [closed]
Hello everyone,
I need blend two images im my mosaic, but i need use the function addWeighted of the OpenCV. But, this function require that my images had same size. My images have different sizes.
Can I implement this equation N(x, y)= αI(x, y)+(1- α)C(x, y) for don't use this function in my code ? Already that my images has different sizes.
Thanks!
what you could do is to apply it in specific ROI's of the two images...
I need apply this equation for two images with different sizes.
If A is greater than B than there are some point A(x,y) that doesn't exist in B. If you don't like ROI you could scale A to fit B or viceversa.