I work on Win7 x64, with openCV and Visual Studio 2010, programming in c++. I want copying an image (call it image) to a rectangular area of another image (call it RR_image). This area, however, is rotated.
here is image:
and here is RR_image:
(as you see, I've already rotated first image)
I would copy first image in red rectangle.
How many and what ways are there to do this?
I know about ROI and: img1.copyTo(img2.rowRange(...), img2.colRange(...));
Thanks!