Cordova Vuforia 插件(第一个版本暂时只支持Android) English Doc.
cordova plugin add cordova-vuforia
CordovaVuforia.initVuforia(options, success, error)
options
初始化参数,包含vuforiaLicenseoptions.vuforiaLicense
vuforia证书success
初始化成功回调error
初始化失败回调
调用initVuforia方法需要在准备开始使用vuforia之前
CordovaVuforia.startVuforia(options, success, error)
options
开启参数,包含camera,typeoptions.camera
摄像头类型 0-后置摄像头 1-前置摄像头options.type
Vuforia识别模式 0-本地图像识别 1-用户自定义图像识别success
开启成功回调error
开启失败回调
在调用startVuforia成功之后,需要将前端网页的背景颜色设置为透明,并保证没有多余的元素,否则会遮挡住vuforia画面。这是因为WebView层在原生层的上层,如果WebView有背景色,就会挡住下面的层。这么做也是为了方便前端可以在上层添加一些操作按钮等。
参照以下设置
body.vuforia-show {
background-color: transparent !important;
}
CordovaVuforia.stopVuforia(success, error)
success
关闭成功回调error
关闭失败回调
CordovaVuforia.setRecognitionType(options, success, error)
options
识别类型参数,包含typeoptions.type
Vuforia识别模式 0-本地图像识别 1-用户自定义图像识别success
设置成功回调error
设置失败回调
CordovaVuforia.setImageTargetModel(options, success, error)
options
本地识别参数,包含imageName,matrix,map,filepathoptions.imageName
识别的图片名字options.matrix
识别的矩阵包含 posX,posY,posZ,scaleX,scaleY,scaleZ,rotateoptions.matrix.posX
x轴偏移量options.matrix.posY
y轴偏移量options.matrix.posZ
z轴偏移量options.matrix.scaleX
x轴缩放比options.matrix.scaleY
y轴缩放比options.matrix.scaleZ
z轴缩放比options.matrix.rotate
旋转角度(逆时针)options.map
贴图文件地址,即模型文件地址,存放于/models/
中options.filepath
识别配置文件地址,存放于/targets/
中,如StonesAndChips.xml
success
设置成功回调error
设置失败回调
CordovaVuforia.getUserDefinedTarget(success, error)
success
创建成功回调error
创建失败回调
CordovaVuforia.setUserDefinedTargetModel(options, success, error)
options
本地识别参数,包含matrix,mapoptions.matrix
识别的矩阵包含 posX,posY,posZ,scaleX,scaleY,scaleZ,rotateoptions.matrix.posX
x轴偏移量options.matrix.posY
y轴偏移量options.matrix.posZ
z轴偏移量options.matrix.scaleX
x轴缩放比options.matrix.scaleY
y轴缩放比options.matrix.scaleZ
z轴缩放比options.matrix.rotate
旋转角度(逆时针)options.map
贴图文件地址,即模型文件地址,存放于/models/
中success
设置成功回调error
设置失败回调
CordovaVuforia.removeUserDefinedTarget(success, error)
success
清除成功回调error
清除失败回调
document.addEventListener('CordovaVuforia.onTargetFound', function(data) {})
data
识别之后的回调,包含status,imageNamedata.status
识别状态 1-识别到目标 0-当前识别目标丢失data.imageName
识别到目标的名字(仅在status为1时存在)
- support iOS
Ionic 3 Demo https://github.com/ztl19930409/ionic-for-cordova-vuforia