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

在 GitHub 上查看

@nativescript/mlkit-object-detection

一个与 @nativescript/mlkit-core 一起使用的插件,用于启用对象检测并为对象检测事件数据提供 ObjectResult 类型。

内容

安装

通过运行以下命令安装 @nativescript/mlkit-object-detection

CLI
npm install @nativescript/mlkit-object-detection

使用 @nativescript/mlkit-object-detection

例如,请阅读 使用 @nativescript/mlkit-core对象检测

API

ObjectResult

对象检测事件数据的类型。

TypeScript
interface ObjectResult {
  trackingId?: number
  bounds: Bounds
  labels: ObjectLabeling[]
}

ObjectLabeling

TypeScript
interface ObjectLabeling {
  text?: string
  confidence?: number
  index?: number
}

边界

TypeScript
interface Bounds {
  origin: Origin
  size: Size
}

原点

TypeScript
export interface Origin {
  x: number
  y: number
}

大小

TypeScript
interface Size {
  width: number
  height: number
}

许可证

Apache 许可证 2.0 版