#region 图像缩放与插值
static void Main(string[] args)
{
Mat src = new Mat("lenna.png", ImreadModes.AnyColor | ImreadModes.AnyDepth);
//函数原型:public Mat Resize(Size dsize, double fx = 0, double fy = 0, InterpolationFlags interpolation = InterpolationFlags.Linear);
//dsize:缩放之后的图像大小
//fx:宽度缩放比例
//fy:高度缩放比例
//interpolation:插值方式
//注意:缩放图像时,如果dsize中width或者height有一个为0,则使用fx与fy为缩放比例,否则使用dsize为最终缩放图像大小
//Mat Zoomout = src.Resize(new Size(src.Width/2, src.Height / 2),0,0,InterpolationFlags.Linear);//缩小
Mat Zoomout = src.Resize(new Size(0, 0), 0.5, 0.5, InterpolationFlags.Linear);//缩小 与上一行效果相同
//Mat Zoomin = src.Resize(new Size(src.Width*1.2, src.Height*1.2), 0, 0, InterpolationFlags.Linear);//放大
Mat Zoomin = src.Resize(new Size(0, 0), 1.2, 1.2, InterpolationFlags.Linear);//放大 与上一行效果相同
Cv2.ImShow("src image", src);
Cv2.ImShow("Zoomout", Zoomout);
Cv2.ImShow("Zoomin", Zoomin);
Cv2.WaitKey();
}
#endregion
最终效果如下: