• 大小: 0.75M
    文件类型: .7z
    金币: 2
    下载: 8 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: OCR  OC  识别  

资源简介

OCR 字符识别,内含破解版识别接口 可用于OCR 以及条码识别

资源截图

代码片段和文件信息

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 System.Runtime.InteropServices;

namespace ToText
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        #region DllImport
        [DllImport(“AspriseOCR.dll“ EntryPoint = “OCR“ CallingConvention = CallingConvention.Cdecl)]
        public static extern IntPtr OCR(string file int type);

        [DllImport(“AspriseOCR.dll“ EntryPoint = “OCRpart“ CallingConvention = CallingConvention.Cdecl)]
        static extern IntPtr OCRpart(string file int type int startX int startY int width int height);


评论

共有 条评论