您可以使用Core 类的addWeighted()方法在 OpenCV 中混合两个图像。
此方法接受两个 Mat 对象(代表源矩阵和目标矩阵)和两个表示图像 alpha、gamma 所需权重的双精度值,并计算它们的加权和。
import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.highgui.HighGui; import org.opencv.imgcodecs.Imgcodecs; public class AddingTwoImages { public static void main( String[] args ) { //Loading the OpenCV core library System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); //Reading the input images Mat src1 = Imgcodecs.imread("D://images//a1.jpg"); Mat src2 = Imgcodecs.imread("D://images//a2.jpg"); //Creating an empty matrix to store the result Mat dst = new Mat(); //Adding two images Core.addWeighted(src1, 0.4, src2, 0.8, 0, dst); HighGui.imshow("Adding two images", dst); HighGui.waitKey(0); } }<strong> </strong>
以上是如何使用OpenCV Java混合两个图像?的详细内容。更多信息请关注PHP中文网其他相关文章!