// Generate output image
cv::Mat foreground(image.size(),CV_8UC3,
cv::Scalar(255,255,255)); // all white image
image.copyTo(foreground,result); // bg pixels not copied
上面的代码是使用 openCV 用 C++ 编写的,现在我需要使用 opencv 将其更改为 python。我找不到 cv::Mat 的替代品。请帮我..