[C#]使用OpenCvSharp实现二维码图像增强超分辨率

【官方框架地址】

github.com/shimat/opencvsharp

【算法介绍】

借助于opencv自带sr.prototxt和sr.caffemodel实现对二维码图像增强

【效果展示】

【实现部分代码】

复制代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using FIRC;
using OpenCvSharp;

namespace FIRC
{
    public partial class Form1 : Form
    {
        Mat src = new Mat();
        QRManager qm = new QRManager();

        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog openFileDialog = new OpenFileDialog();
            openFileDialog.Filter = "图文件(*.*)|*.jpg;*.png;*.jpeg;*.bmp";
            openFileDialog.RestoreDirectory = true;
            openFileDialog.Multiselect = false;
            if (openFileDialog.ShowDialog() == DialogResult.OK)
            {
              
                src = Cv2.ImRead(openFileDialog.FileName);
                pictureBox1.Image = OpenCvSharp.Extensions.BitmapConverter.ToBitmap(src);


            }


        }

        private void button2_Click(object sender, EventArgs e)
        {
            if(pictureBox1.Image==null)
            {
                return;
            }
            var resultMat = qm.Inference(src);
            pictureBox2.Image= OpenCvSharp.Extensions.BitmapConverter.ToBitmap(resultMat); //Mat转Bitmap
        }

        private void Form1_Load(object sender, EventArgs e)
        {
           
        }
    }
}

【源码下载】

https://download.csdn.net/download/FL1623863129/88705091

【测试环境】

vs2019 netframework4.7.2和opencvsharp4.8.0

相关推荐
Jun626几秒前
QT(9)-Qjson移植
开发语言·qt
施棠海1 分钟前
自定义并可深度定制的数字滚动选择器完整源代码与相关注意事项
java·开发语言
z落落6 分钟前
C# 索引器 this[]
开发语言·c#
csdn_aspnet10 分钟前
C# List 移除某个属性值中最大的值
开发语言·c#·list
xindon1214 分钟前
go语言项目部署的makefile
开发语言·后端·golang
老毛肚15 分钟前
记一次逆向
开发语言·python
凯瑟琳.奥古斯特18 分钟前
力扣1002题C++解法详解
开发语言·c++·算法·leetcode·职场和发展
钟灵92124 分钟前
C++【模板初阶】
开发语言·c++·笔记·c#
码不停蹄的玄黓25 分钟前
旁路缓存(Cache-Aside,CA)
java·开发语言