简体   繁体   English

我们如何在iOS 11中使用CoreML框架进行手写检测

[英]How can we make use of CoreML framework for handwriting detection in iOS 11

如何使用CoreML将手写图像转换为文本?

One way to achieve this is to use the Vision framework to detect text in your image, which gives you a list of rectangles. 实现此目的的一种方法是使用Vision框架检测图像中的文本,从而为您提供矩形列表。 Then use a neural network that's trained to recognize text on each of these rectangles. 然后使用经过训练的神经网络识别每个矩形上的文本。 You can use Vision to drive Core ML but you still need to provide it with a suitable neural network yourself. 您可以使用Vision来驱动Core ML,但您仍需要自己提供合适的神经网络。 You can find pretrained networks for this on the web, but you'll need to convert them to Core ML using the tools supplied by Apple. 您可以在网上找到预训练网络,但您需要使用Apple提供的工具将它们转换为Core ML。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 有没有办法在源代码级别为iOS11 +提供CoreML模型 - Is there a way to make CoreML model available for iOS11+ at source level 我如何在ABBYY iOS SDK中配置手写识别 - how can i configue handwriting recognition in ABBYY ios sdk iOS:如何实现手写识别? - iOS : How to implement handwriting recognition? iOS 11 Xcode 9:CoreML链接器命令失败,退出代码为1(使用-v查看调用) - iOS 11 Xcode 9: CoreML linker command failed with exit code 1 (use -v to see invocation) 我们如何在cocoapod框架中使用DJIWidget - How can we use DJIWidget in a cocoapod framework 如何在Swift 4和IOS 11中更改语音识别语言? - How can we change speech recognition language in swift 4 and IOS 11? 我们可以在 c++ 代码中使用像 coremotion 一样的 iOS 框架吗 - Can we use iOS framework like coremotion in c++ code iOS 11 使用视觉框架 VNDetectRectanglesRequest 不精确地进行对象检测? - iOS 11 using vision framework VNDetectRectanglesRequest to do object detection not precisely? 我们可以/如何使用iOS语音引擎? - Can we / how do we use the iOS speech engine? 如何将CoreMl模型包含在可可pod框架中? - How to include CoreMl model into the cocoa pod framework?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM