8.7 版本发布—WinterCG 兼容性第 1 部分
了解更多

在 GitHub 上查看

@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 版

下一页
核心