基本信息
    
    
        
    
    
        
        
    
    
        
        
    
    
    
        源码名称:c# Ocr图片文字识别实例源码(百度Ocr)
源码大小:16.04M
文件格式:.rar
开发语言:C# 
更新时间:2017-12-28
               友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
            
            
            
            
        
        
        嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
                
                微信扫码支付:2 元
        ×
        
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
       源码介绍
    
    
                                
        
百度Ocr图片识别,图片转文字
原图为:
	
识别结果如下:
	
	
	
using BaiduOcrText.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace BaiduOcrText
{
    public partial class OcrText : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                var APP_ID = "****";
                var API_KEY = "*****";
                var SECRET_KEY = "*****";
                var imgPath = Server.MapPath("/Images/lasha.jpg");
                var client = new Baidu.Aip.Ocr.Ocr(API_KEY, SECRET_KEY);
                var image = File.ReadAllBytes(imgPath);
                // 通用文字识别
                // 过程中发生的网络失败等系统错误,将会抛出相关异常,请使用 try/catch 捕获。
                var result = client.GeneralBasic(image, null);
                OcrModel model = JsonConvert.DeserializeObject<OcrModel>(result.ToString());
                if (model.words_result.Count > 0) {
                    StringBuilder builder = new StringBuilder();
                    foreach (var item in model.words_result)
                    {
                        builder.Append(item.words);
                    }
                    Response.Write(builder.ToString());
                }
            }
            catch (Exception ex)
            {
                Response.Write("内部程序错误:"   ex.Message);
            }
            
        }
    }
}