не помогло
ошибка в каждой строке, использующей emgu
Code
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Emgu.CV;
using Emgu.Util;
using Emgu.CV.CvEnum;
using Emgu.CV.UI;
using Emgu.CV.Structure;
namespace test
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Image<Bgr, byte> im = new Image<Bgr, byte>(400, 400, new Bgr(255, 0, 0));
MCvFont font = new MCvFont(FONT.CV_FONT_HERSHEY_COMPLEX, 1.0, 1.0);
Bgr color = new Bgr(100, 100, 200);
im.Draw("helo world",ref font, new System.Drawing.Point(10, 15), color);
imageBox1.Image = im;
}
}
}