更新记录
1.0.8(2024-06-23)
更新OpenCV类库版本
1.0.7(2024-06-20)
更新OpenCV类库版本。
1.0.6(2024-06-18)
更新OpenCV类库版本。
查看更多平台兼容性
Vue2 | Vue3 |
---|---|
√ | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.6.8,Android:4.4,iOS:不支持,HarmonyNext:不确定 | × | × | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
概述
XF-opencvUTS实现对图片的比对识别基本操作。
插件接口
templateMatching
查找图片A在图片B中的位置坐标
uni-app项目中(nvue)调用示例:
import { templateMatching } from "@/uni_modules/XF-opencvUTS"
templateMatching({
sourcePath: "/storage/emulated/0/template.bmp",
smallPath: "/storage/emulated/0/11.png",
complete: (res) => {
console.log(res)
}
});
uni-app x项目(uvue)中调用示例:
import { templateMatching } from "@/uni_modules/XF-opencvUTS";
import { MatchingOptions } from "@/uni_modules/XF-opencvUTS/utssdk/interface.uts";
let options = {
sourcePath: "/storage/emulated/0/template.bmp",
smallPath: "/storage/emulated/0/11.png",
complete: (res : any) => {
console.log(res)
}
} as MatchingOptions;
templateMatching(options);
可用性
Android系统
可提供的1.0.0及更高版本
templateMatchingByBase64
查找图片A在图片B中的位置坐标(内测)
uni-app项目中(nvue)调用示例:
import { templateMatchingByBase64 } from "@/uni_modules/XF-opencvUTS"
templateMatchingByBase64({
sourceBase64: "",
smallBase64: "",
complete: (res) => {
console.log(res)
}
});
uni-app x项目(uvue)中调用示例:
import { templateMatchingByBase64 } from "@/uni_modules/XF-opencvUTS";
import { MatchingByBase64Options } from "@/uni_modules/XF-opencvUTS/utssdk/interface.uts";
let options = {
sourceBase64: "",
smallBase64: "",
complete: (res : any) => {
console.log(res)
}
} as MatchingByBase64Options;
templateMatchingByBase64(options);
可用性
Android系统
可提供的1.0.0及更高版本