• 在C#中使用Emgu.CV实现条码检测功能
  • 发布于 1周前
  • 43 热度
    0 评论
  • Scys
  • 5 粉丝 40 篇博客
  •   
效果

项目

代码
using Emgu.CV;
using System;
using System.Drawing;
using System.Windows.Forms;

namespace Emgu.CV_条码检测
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        // 堆代码 duidaima.com
        private string fileFilter = "*.*|*.bmp;*.jpg;*.jpeg;*.tiff;*.tiff;*.png";
        Bitmap bmp;
        String imgPath = "";
        Graphics g = null;
        Pen p = new Pen(Brushes.Red);
        SolidBrush drawBush = new SolidBrush(Color.Red);
        Brush bush = new SolidBrush(Color.Green);
        Font drawFont = new Font("Arial", 8, FontStyle.Bold, GraphicsUnit.Millimeter);

        string prototxt_path = "sr.prototxt";
        string caffe_model_path = "sr.caffemodel";

        private void button2_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Filter = fileFilter;
            if (ofd.ShowDialog() != DialogResult.OK) return;
            imgPath = ofd.FileName;
            bmp = new Bitmap(imgPath);
            pictureBox1.Image = bmp;
            g = Graphics.FromImage(bmp);
            g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (pictureBox1.Image == null)
            {
                return;
            }

            BarcodeDetector barcodeDetector = new BarcodeDetector(prototxt_path, caffe_model_path);

            Mat src = new Mat(imgPath, CV.CvEnum.ImreadModes.Grayscale);

            Mat rects = new Mat();
            bool b = barcodeDetector.Detect(src, rects);

            Array data = rects.GetData();
            if (data == null) { return; }
            int num = data.GetLength(0);
            for (int i = 0; i < num; i++)
            {
                float x1 = (float)data.GetValue(i, 0, 0);
                float y1 = (float)data.GetValue(i, 0, 1);

                float x2 = (float)data.GetValue(i, 1, 0);
                float y2 = (float)data.GetValue(i, 1, 1);

                float x3 = (float)data.GetValue(i, 2, 0);
                float y3 = (float)data.GetValue(i, 2, 1);

                float x4 = (float)data.GetValue(i, 3, 0);
                float y4 = (float)data.GetValue(i, 3, 1);

                g.FillEllipse(bush, x1, y1, 10, 10);
                g.DrawString("1", drawFont, drawBush, x1, y1);

                g.FillEllipse(bush, x2, y2, 10, 10);
                g.DrawString("2", drawFont, drawBush, x2, y2);

                g.FillEllipse(bush, x3, y3, 10, 10);
                g.DrawString("3", drawFont, drawBush, x3, y3);

                g.FillEllipse(bush, x4, y4, 10, 10);
                g.DrawString("4", drawFont, drawBush, x4, y4);

                g.DrawRectangle(p, x2, y2, x4 - x2, y4 - y2);

            }

            pictureBox2.Image = bmp;

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            imgPath = "1.jpg";
            bmp = new Bitmap(imgPath);
            pictureBox1.Image = bmp;
            g = Graphics.FromImage(bmp);
            g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
        }
    }
}

用户评论