1.2.1 • Published 4 years ago

visionseed v1.2.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

js-sdk for VisionSeed - a camera module with AI ability

License


腾讯优图VisionSeed,是一个融AI算法+运算能力+摄像头为一体的硬件模组,致力于向硬件开发者提供世界领先的AI能力,通过VisionSeed可轻松使用优图人脸检测、识别、配准、姿态、属性等能力。

此SDK需配合V1.2.3及以上版本固件使用,请通过官网的VisionSeed配置工具升级固件。

install

npm i visionseed --save

example

const {YtVisionSeed} = require('visionseed')

var vs = new YtVisionSeed()
vs.registerOnResult( (msg) => {
  console.log(msg)
})

const main = async function () {
  try {
    await vs.open('/dev/ttyACM0')
    console.log('Face in the lib:', await vs.listFaceId())

    // don't call close() if you want to receive registerOnResult callback
    // vs.close()
  } catch (e) {
    console.log(e)
  }
}
main()

more

Homepage: https://visionseed.youtu.qq.com

技术交流QQ群: 684338220(超多大佬)

1.2.1

4 years ago

1.2.0

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago