I develop a simple stabilizer and I'm having difficulty with the shift of the image. Example - I have two images (A and B) are shifted relative to each other by a few pixels. I calculate the offset using phase correlations. The next step I need to move the second image by the image's offset. An example is presented on the image. How do I solve this problem?
There is link to preview image:
Opencv reads and elaborates images as numeric structures, in this case matrices (or 2 dimensional vector if you like).
cv::Rect and cv::Mat::copyTo
cv::Mat img=cv::imread("image.jpg");
cv::Mat imgTranslated(img.size(),img.type(),cv::Scalar::all(0));
img(cv::Rect(50,30,img.cols-50,img.rows-30)).copyTo(imgTranslated(cv::Rect(0,0,img.cols-50,img.rows-30)));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With