Hi,
I am building a project where i need to superimpose certain objects on a x-ray luggage image. I came across pyxvis library but I am wondering if there any method like this in opencv?
The method I need to use is “Superimposition”
Thank you!
Hi,
I am building a project where i need to superimpose certain objects on a x-ray luggage image. I came across pyxvis library but I am wondering if there any method like this in opencv?
The method I need to use is “Superimposition”
Thank you!
just do the math yourself. it’s easy with numpy, and even with plain opencv it’s easy enough.
you just need some multiplication and addition, over arrays or slices of arrays.
here are many wrong ways to do it, and one or two right ways to do it: