防疫測溫一體(tǐ)機配置說明(míng)
2、注冊成功後,點擊跳(tiào)轉,使用注冊的賬号進行(xíng)登錄
3、健康碼配置
1、點擊防疫管理(lǐ)-檢查站(zhàn)點配置,将健康碼所需配置參數(shù)填寫完全
4、設備配置
1、點擊測溫防疫一體(tǐ)機,
2、增加設備,填寫設備序列号(設備界面上(shàng)有(yǒu)),點擊保存
3、使用浏覽器(qì)登錄設備管理(lǐ)後台,地址為(wèi):http://設備IP地址:8090
4、在參數(shù)配置中選擇回調模式:
掃碼回調地址:http://health.huidar.com/akm/qrcode
事件回調地址:http://health.huidar.com/akm/idcard
接口超時(shí)時(shí)間(jiān):10秒(miǎo)
打開(kāi):快速通(tōng)行(xíng)、測溫、掃碼、人(rén)證核驗、照片上(shàng)傳
關閉:核酸、疫苗、行(xíng)程碼、刷身份證模式、陌生(shēng)人(rén)識别
5、調整識别阈值
修改腳本內(nèi)容,執行(xíng)阈值調整腳本
import requests
# todo 将ip改為(wèi)人(rén)臉機IP,然後運行(xíng)程序
ip = "192.168.1.149"
headers = {
"Content-Type": "application/x-www-form-urlencoded"
}
resposne = requests.post(url=f"http://{ip}:8090/device/setIdentifyModel", headers=headers,json={
"pass":"12345678",
"config":{
"recCardFaceValue": "5"
}
})
print(resposne.json())