实现图片下发识别。

This commit is contained in:
luocai
2024-08-16 19:05:50 +08:00
parent bdc7711bbb
commit 1277ef7495
5 changed files with 70 additions and 25 deletions

View File

@ -173,14 +173,24 @@ Item {
TextField {
id: imageEnrollName
implicitWidth: 100
text: "测试下发"
}
Text {
text: qsTr("循环")
}
Switch {
checked: App.imageUploadPersistenceMode
onToggled: {
App.imageUploadPersistenceMode = checked
}
}
Button {
text: "注册"
onClicked: App.uploadImage(imagePath.text, 0)
onClicked: App.uploadImage(imagePath.text,imageEnrollName.text, 0)
}
Button {
text: "识别"
onClicked: App.uploadImage(imagePath.text, 1)
onClicked: App.uploadImage(imagePath.text,imageEnrollName.text, 1)
}
}
}