Bootstrap

Opencv贴图的两种方式

白底不贴,遍历像素时,若为白色,则忽略,否则将像素值复制到背景上
因为目标图片中可能含有白色点,并且对抠出的图片要求挺高的不然就会出现第二幅图的效果,所以这种方式局限性较大。

void Drawtoback(Mat image, Mat background, int y, int x)
{
    for (int i = 0; i < image.rows; i++)
    {
        for (int j = 0; j < image.cols; j++)
        {
            int a = image.at<Vec3b>(i, j)[2];
            int b = 
;