0

我计划在我的项目中使用 OCR,并搜索了更多的 OCR 方法,但我没有找到任何正确的方法。最后我听说了 MODI 并尝试了。但它抛出以下错误:

由于以下错误,检索具有 CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B} 的组件的 COM 类工厂失败:80040154

我正在使用Microsoft Office 2013visual studio 2012

我使用的代码如下:

 private void button1_Click(object sender, EventArgs e)
    {
        CheckFileType(@"E:\\");
    }

    public void CheckFileType(string directoryPath) 
    { 
        IEnumerator files = Directory.GetFiles(directoryPath).GetEnumerator(); 
        while (files.MoveNext()) 
        { 
        //get file extension 
        string fileExtension = Path.GetExtension(Convert.ToString(files.Current));

        //get file name without extenstion 
        string fileName=Convert.ToString(files.Current).Replace(fileExtension,string.Empty);

        //Check for JPG File Format 
        if (fileExtension == ".jpg" || fileExtension == ".JPG") // or // ImageFormat.Jpeg.ToString()
        { 
        try 
        { 
        //OCR Operations ... 
        MODI.Document md = new MODI.Document(); 
        md.Create(Convert.ToString(files.Current)); 
        md.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, true, true); 
        MODI.Image image = (MODI.Image)md.Images[0];
        //create text file with the same Image file name 
        FileStream createFile = new FileStream(fileName + ".txt",FileMode.CreateNew);

        //save the image text in the text file 
        StreamWriter writeFile = new StreamWriter(createFile); 
        writeFile.Write(image.Layout.Text); 
        writeFile.Close(); 
        } 
        catch (Exception) 
        { 
        MessageBox.Show("This Image hasn't a text or has a problem", 
        "OCR Notifications", 
        MessageBoxButtons.OK, MessageBoxIcon.Information); 
        } 
        } 
        } 
    } 

任何人都可以帮助我吗?这个问题是基于 Microsoft Office 版本还是我需要进行任何更改?那是更好的 OCR dll 吗?谢谢 ..

4

2 回答 2

0

我相信要使用 MODI,图像必须是 .tiff 格式或 Microsoft 专有的 .modi 格式。根据您的代码,您似乎正在尝试转换 jpg。

检查此链接以获取 VB.NET 中将 TIFF 转换为 JPEG 的示例,反之亦然。

http://code.msdn.microsoft.com/windowsdesktop/VBTiffImageConverter-f8fdfd7f

于 2013-09-11T01:13:39.703 回答
0

我已经解决了这个问题,在下面设置 Go to Project Property -> Built tab -> change platform target to x86

于 2016-06-18T05:53:02.597 回答