我正在尝试用另一张图片更改图像的一部分 我找不到合并功能 所以我只是发生了我可以改变我想要改变的部分的rgb值与其他图像RGB值是否可能
感谢您的建议
答案 0 :(得分:3)
如果通过更改表示替换,则可以使用图像ROI(感兴趣区域)功能直接替换矩形区域您的原始图像与另一个图像的矩形区域非常有效。
假设您的原始图像存储在A
中,并且您想要使用图像B
中的像素更改其中的一部分(矩形区域)。
更新:以下是C
中的代码/**** C ****/
// Acquire Image A and B (here as an example, I'm reading from disk)
IplImage* A = cvLoadImage("image_A.jpg");
IplImage* B = cvLoadImage("image_B.jpg");
// Set the region-of-interest (ROI) for the two images
// such that only the ROI of A and B will be handled
cvSetImageROI(A,cvRect(200,200,128,128));
cvSetImageROI(B,cvRect(0,0,128,128));
// Copy the ROI in B to the ROI in A
cvCopy(B,A);
// Reset the ROI (now the entire image will be handled)
cvResetImageROI(A);
cvResetImageROI(B);
// Display A
cvNamedWindow("Modified A");
cvShowImage("Modified A",A);
cvWaitKey();
// Release the images
cvReleaseImage(&A);
cvReleaseImage(&B);
使用OpenCV 2.0:
// C++ //
// Images A and B have already been loaded .....
// Region in image A starting from (100,100) of width 200 and height 200
Rect RegionA(100,100,200,200);
// Region in image B starting from (50,50) of width 200 and height 200
Rect RegionB(50,50,200,200);
// No copying, just a reference to the ROI of the image
Mat A_ROI(A,RegionA);
Mar B_ROI(B,RegionB);
// Copy all the pixels in RegionB in B to RegionA to A
B.copyTo(A);
答案 1 :(得分:0)
您可以尝试这样的事情:
CvScalar s = cvGet2D(original_cvimage, x, y); // get the (x,y) pixel value
cvSet2D(new_cvimage, x, y, s); // set the (x,y) pixel value