嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
请选择图像识别方式
AspriseOCR
OfficeMODI
{
InitializeComponent();
}
/// <summary>
/// 图像识别
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnRecognise_Click(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(imgPath))
{
if (cbxRecogniseType.SelectedIndex == 0)
{
MessageBox.Show("请选择图像识别方式!");
}
else if (cbxRecogniseType.SelectedIndex == 1)
{
AspriseOCR ocr = new AspriseOCR();
tbxResult.Text = ocr.Recognize(imgPath);
}
else if (cbxRecogniseType.SelectedIndex == 2)
{
ModiOCR ocr = new ModiOCR();
tbxResult.Text = ocr.Recognize(imgPath);
}
}
else
{
MessageBox.Show("请选择图像!");
}
}
/// <summary>
/// 选择图像
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnSelectImageFile_Click(object sender, EventArgs e)
{
openFileDialog.Title = "选择录像文件";
openFileDialog.InitialDirectory = "C:\\Users\\Administrator\\Desktop";
openFileDialog.Filter = "All files(*.*)|*.*";
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
imgPath = openFileDialog.FileName;