插件
对象检测
@nativescript/mlkit-object-detection
一个与 @nativescript/mlkit-core 一起使用的插件,用于启用对象检测并为对象检测事件数据提供 ObjectResult 类型。
内容
- 安装
- 使用 @nativescript/mlkit-object-detection
- ObjectResult
- API
- [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 版