c# OpenCV 不同尺寸图片叠加
2021-01-03 06:27
标签:enc imshow image 小孩 ons new div show jpg 目标,在一张背景图片的指定位置指定区域叠加一张小孩的人像照。 1.在NuGet管理搜索OpenCV,选择下图所示,点安装 2.引用OpenCV 3.上代码 4.效果图 c# OpenCV 不同尺寸图片叠加 标签:enc imshow image 小孩 ons new div show jpg 原文地址:https://www.cnblogs.com/Percy/p/13212117.htmlusing OpenCvSharp;
Mat matBackground = new Mat(@"d:\bg.jpeg",ImreadModes.AnyColor);
Mat matBoy = new Mat(@"d:\人像\10岁.jpg");
Rect rect = new Rect(10, 20, matBoy.Width, matBoy.Height);
Mat matRectInBackground = new Mat(matBackground, rect);
matBoy.CopyTo(matRectInBackground);
Cv2.ImShow("Merge", matBackground);
Cv2.WaitKey();
Console.WriteLine("Merged");
文章标题:c# OpenCV 不同尺寸图片叠加
文章链接:http://soscw.com/index.php/essay/39752.html