基本信息
源码名称:C#OCR图像识别技术 AspriseOCR和OfficeMODI
源码大小:25.57M
文件格式:.rar
开发语言:C#
更新时间:2019-05-18
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 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;