插件
文本识别
@nativescript/mlkit-text-recognition
一个与 @nativescript/mlkit-core 一起使用的插件,用于在你的应用程序中启用文本识别,并为文本识别事件数据提供 TextResult 类型。
内容
安装
cli
npm install @nativescript/mlkit-text-recognition
使用 @nativescript/mlkit-text-recognition
例如,请阅读 使用 @nativescript/mlkit-core 和 文本识别。
API
TextResult
文本识别事件数据类型。
ts
interface TextResult {
text?: string
bounds: Bounds
lines: TextLine[]
points: Point[]
}
Point
ts
interface Point {
x: number
y: number
}
Bounds
ts
interface Bounds {
origin: Origin
size: Size
}
Origin
ts
interface Origin {
x: number
y: number
}
Size
ts
interface Size {
width: number
height: number
}
TextLine
ts
interface TextLine {
text?: string
bounds: Bounds
elements: TextElement[]
points?: Point[]
}
TextElement
ts
interface TextElement {
text?: string
bounds: Bounds
}
许可证
Apache 许可证 2.0 版