我有一个要添加到另一个图像的透明背景的 PNG 图像。
我的问题是,当我加载IplImage
背景时,背景不再透明 - 它变成白色。
如何在 javacv 中使用具有透明背景的图像?
IplImage src = cvLoadImage("2.png");
IplImage tmp = cvLoadImage("1.png");
cvSetImageROI(src, cvRect(41,28,tmp.width(),tmp.height())); // not the same size
cvShowImage("1", src); //before
cvCopy(src, tmp);
cvShowImage("2", src); //after
cvWaitKey(0);
cvResetImageROI(src);
尝试添加 alpha channl 但没有用:
Graphics g=src.getBufferedImage().getGraphics();
Graphics2D g2d = (Graphics2D)g;
g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER,
10 * 0.1f));
BufferedImage a = new BufferedImage(tmp.width(), tmp.height(), BufferedImage.TYPE_INT_ARGB);
src = IplImage.createFrom(a);