#include #include #include using namespace std; using namespace cv; int main() { Mat mormota = imread("resources/mormota_kekhatter.jpg"); Mat bg = imread("resources/Deik.jpg"); cvtColor(mormota,mormota,COLOR_BGR2HSV); Mat mask; inRange(mormota,Scalar(100,0,0),Scalar(130,255,255), mask); mask = 255 - mask; cvtColor(mormota,mormota,COLOR_HSV2BGR); Rect r(0, (bg.rows-1) - mormota.rows,mormota.cols,mormota.rows); mormota.copyTo(bg(r),mask); imshow("bg",bg); waitKey(); return 0; }