gpt4 book ai didi

c# - 使用 Xamarin 进行光学字符识别

转载 作者:行者123 更新时间:2023-12-05 06:13:28 27 4
gpt4 key购买 nike

我想在我的 Xamarin Forms 应用程序中使用 OCR 从身份证中读取信息,但我找到的唯一示例是 this而且它已经过时了(或者我只是不知道如何使用它)。

我还看到了 Google Vision AI,我可以在我的 Xamarin.Android(或 iOS)中使用它并将信息传递到我的共享项目,但我无法想象我会怎么做。

有没有人可以帮我解决这个问题?

最佳答案

检查此链接。 https://devblogs.microsoft.com/xamarin/performing-ocr-for-ios-android-and-windows-with-microsoft-cognitive-services/

使用 Microsoft 认知服务和 Xamarin 跟踪发票的示例应用程序 - https://github.com/pierceboggan/smarter-apps

代码示例-

using Microsoft.ProjectOxford.Vision;
using Microsoft.ProjectOxford.Vision.Contract;
...
OcrResults text;
var client = new VisionServiceClient("{YOUR-API-KEY-HERE}");
using (var photoStream = photo.GetStream())
{
text = await client.RecognizeTextAsync(photoStream);
}

enter image description here

关于c# - 使用 Xamarin 进行光学字符识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63316488/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com