Emgu.CV C# WinFrom 鼠标画图
在窗口中添加picturebox1,在picturebox1中画图
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;
using Emgu.CV.Util;
namespace EmguCV
{
public partial class Form1 : Form
{
bool mousedown = false;
int pre_x = 0, pre_y = 0;
int x = 0, y = 0;
Image<Bgr, byte> a;
public Form1()
{