Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gamera_videos_no_ui
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liusq
gamera_videos_no_ui
Commits
e5fe3f20
Commit
e5fe3f20
authored
Aug 22, 2024
by
“liusq”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改http超时时间或车牌配置盒子信息
parent
cf45df20
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
532 additions
and
73 deletions
+532
-73
AlgorithmTaskManage.cpp
+26
-15
AlgorithmTaskManage.h
+3
-10
CameraHandle.cpp
+7
-12
CameraHandle.h
+1
-1
HttpService.cpp
+6
-3
Httpclient.cpp
+1
-1
LicensePlateRecognition.cpp
+8
-7
LicensePlateRecognition.h
+3
-1
MqttSubscriber.cpp
+8
-7
VidesData.h
+26
-4
cameravideo
+0
-0
gamera_videos.pro
+3
-0
mainwindow.cpp
+38
-12
moc_predefs.h
+402
-0
No files found.
AlgorithmTaskManage.cpp
View file @
e5fe3f20
...
...
@@ -49,10 +49,11 @@ void AlgorithmTaskManage::initHumanDetectionManage(const QString &modelPaths,
humanDetections
.
emplace_back
(
human
);
}
}
void
AlgorithmTaskManage
::
initLicensePlateManage
(
const
QString
&
modelPaths
,
float
carConfidence
,
bool
is_high
){
void
AlgorithmTaskManage
::
initLicensePlateManage
(
const
QString
&
modelPaths
,
bool
is_high
,
int
maxNum
,
bool
useHalf
,
float
boxThreshold
,
float
nmsThreshold
,
float
recThreshold
){
for
(
int
i
=
0
;
i
<
licensePlateLen
;
++
i
)
{
LicensePlateRecognition
*
licensePlateRecognition
=
new
LicensePlateRecognition
(
modelPaths
,
carConfidence
,
is_high
);
LicensePlateRecognition
*
licensePlateRecognition
=
new
LicensePlateRecognition
(
modelPaths
,
is_high
,
maxNum
,
useHalf
,
boxThreshold
,
nmsThreshold
,
recThreshold
);
licensePlateRecognitions
.
emplace_back
(
licensePlateRecognition
);
}
...
...
@@ -95,28 +96,38 @@ AlgorithmTaskManage::~AlgorithmTaskManage(){
}
}
void
AlgorithmTaskManage
::
releaseResources
(
int
newHumanDetectionLen
,
int
newLicensePlateLen
,
int
newFaceLen
,
const
QString
&
odelPaths
,
float
humanCarShapeConfidence
,
int
uniformColor
,
float
licensePlateCarConfidence
,
std
::
map
<
QString
,
QString
>&
faceMaps
,
int
numberFaces
,
float
faceConfidence
,
__uint8_t
algorithmPermissions
,
bool
is_high
)
{
void
AlgorithmTaskManage
::
releaseResources
(
const
vides_data
::
DetectionParams
&
params
)
{
Common
&
instance
=
Common
::
getInstance
();
isShuttingDown
.
store
(
true
,
std
::
memory_order_release
);
ScopeSemaphoreExit
guard
([
this
]()
{
isShuttingDown
.
store
(
false
,
std
::
memory_order_release
);
});
__uint8_t
algorithmPermissions
=
params
.
algorithmPermissions
;
qInfo
()
<<
"修改参数:releaseResources "
<<
algorithmPermissions
;
int
newHumanDetectionLen
=
params
.
newHumanDetectionLen
;
int
newLicensePlateLen
=
params
.
newLicensePlateLen
;
int
newFaceLen
=
params
.
newFaceLen
;
QString
modelPath
=
params
.
modelPaths
;
float
humanCarShapeConfidence
=
params
.
humanCarShapeConfidence
;
int
uniformColor
=
params
.
uniformColor
;
std
::
map
<
QString
,
QString
>
faceMaps
=
params
.
faceMaps
;
int
numberFaces
=
params
.
numberFaces
;
float
faceConfidence
=
params
.
faceConfidence
;
bool
high
=
params
.
isHigh
;
int
maxNum
=
params
.
maxNum
;
bool
useHalf
=
params
.
useHalf
;
float
boxThreshold
=
params
.
boxConfThreshold
;
float
nmsThreshold
=
params
.
nmsThreshold
;
float
recThreshold
=
params
.
recConfidenceThreshold
;
// 穿工服算法参数更新
if
((
algorithmPermissions
&
0x01
<<
2
)
!=
0
)
{
resetSemaphoreAndClearObjects
(
instance
,
semaphore
,
humanDetections
,
humanDetectionLen
);
initialize
(
newHumanDetectionLen
,
newLicensePlateLen
,
newFaceLen
,
false
,
0x00
);
initHumanDetectionManage
(
odelPaths
,
humanCarShapeConfidence
,
uniformColor
);
initHumanDetectionManage
(
modelPath
,
humanCarShapeConfidence
,
uniformColor
);
}
// 人脸算法参数更新
...
...
@@ -130,7 +141,7 @@ void AlgorithmTaskManage::releaseResources(
if
((
algorithmPermissions
&
0x01
)
!=
0
)
{
resetSemaphoreAndClearObjects
(
instance
,
plateSemaphore
,
licensePlateRecognitions
,
licensePlateLen
);
initialize
(
newHumanDetectionLen
,
newLicensePlateLen
,
newFaceLen
,
false
,
0x01
);
initLicensePlateManage
(
odelPaths
,
licensePlateCarConfidence
,
is_high
);
initLicensePlateManage
(
modelPath
,
high
,
maxNum
,
useHalf
,
boxThreshold
,
nmsThreshold
,
recThreshold
);
}
}
...
...
AlgorithmTaskManage.h
View file @
e5fe3f20
...
...
@@ -28,8 +28,8 @@ public:
void
initHumanDetectionManage
(
const
QString
&
modelPaths
,
float
carShapeConfidence
,
int
&
uniformColor
);
void
initLicensePlateManage
(
const
QString
&
modelPaths
,
float
carConfidence
,
bool
is_high
);
void
initLicensePlateManage
(
const
QString
&
modelPaths
,
bool
is_high
,
int
maxNum
,
bool
useHalf
,
float
boxThreshold
,
float
nmsThreshold
,
float
recThreshold
);
void
modifyImageFeature
(
std
::
map
<
QString
,
QString
>&
maps
,
int
numberFaces
,
float
confidence
,
bool
isNull
);
void
initFaceReconitionHandle
(
std
::
map
<
QString
,
QString
>&
maps
,
int
numberFaces
,
float
confidence
);
...
...
@@ -37,14 +37,7 @@ public:
void
*
schedulingAlgorithm
(
int
scheType
);
void
releaseResources
(
int
newHumanDetectionLen
,
int
newLicensePlateLen
,
int
newFaceLen
,
const
QString
&
odelPaths
,
float
humanCarShapeConfidence
,
int
uniformColor
,
float
licensePlateCarConfidence
,
std
::
map
<
QString
,
QString
>&
faceMaps
,
int
numberFaces
,
float
faceConfidence
,
__uint8_t
algorithmPermissions
,
bool
is_high
);
void
releaseResources
(
const
vides_data
::
DetectionParams
&
params
);
...
...
CameraHandle.cpp
View file @
e5fe3f20
...
...
@@ -252,7 +252,7 @@ void CameraHandle::cameraParameterUpdate(vides_data::responseConfig &cloudConfig
forMat
=
true
;
}
if
(
forMat
){
deviceReboot
(
true
);
deviceReboot
(
);
}
if
(
devConfig
.
camera
.
updateAt
!=
cloudConfig
.
camera
.
updateAt
){
if
(
devConfig
.
camera
.
username
!=
cloudConfig
.
camera
.
username
||
...
...
@@ -364,10 +364,9 @@ void CameraHandle::sdkDownloadFileByTime(XSDK_HANDLE hDevice,int id,
return
;
}
}
int
CameraHandle
::
callbackFunction
(
XSDK_HANDLE
hObject
,
QString
&
szString
)
{
if
(
!
semaphore
.
tryAcquire
())
{
qInfo
()
<<
sSn
<<
"sdkDevSnapSyn:正在执行线程"
;
return
-
1
;
...
...
@@ -438,9 +437,10 @@ void CameraHandle::sdkDevSnapSyn(XSDK_HANDLE hDevice, int nChannel){
QString
ip
=
QString
::
fromUtf8
(
loginParam
->
sDevId
);
bool
is_ping
=
vides_data
::
pingAddress
(
ip
);
if
(
!
is_ping
){
deviceReboot
(
false
);
deviceReboot
();
}
else
{
deviceReboot
(
true
);
QString
ip
=
QString
::
fromUtf8
(
loginParam
->
sDevId
);
MainWindow
::
sp_this
->
clearOfflineCameraHandle
(
ip
,
loginParam
->
nDevPort
);
}
// 执行离线处理逻辑
// TODO: 可以在此处更新设备状态、发送告警通知等
...
...
@@ -853,7 +853,6 @@ void CameraHandle::updateImage(const cv::Mat & frame,qint64 currentTime){
}
}
void
CameraHandle
::
findIp
(
QString
&
ip
){
ip
=
QString
::
fromStdString
(
loginParam
->
sDevId
);
...
...
@@ -947,7 +946,7 @@ void CameraHandle::sdkWifi(QString &pwd,QString &ssid){
qInfo
()
<<
"修改wifi失败"
;
}
deviceReboot
(
false
);
deviceReboot
();
}
void
CameraHandle
::
sdkDevSystemTimeZoneSyn
(
QString
&
time
){
...
...
@@ -1073,7 +1072,7 @@ void CameraHandle::sdkDevSpvMn(const char *spvMn){
qInfo
()
<<
"sdkDevSpvMn 28181->修改失败"
<<
res
;
}
}
int
CameraHandle
::
deviceReboot
(
bool
isCloseHandle
){
int
CameraHandle
::
deviceReboot
(){
int
nRet
=
0
;
XSDK_CFG
::
OPMachine
cfg
;
cfg
.
Action
.
SetValue
(
"Reboot"
);
...
...
@@ -1084,10 +1083,6 @@ int CameraHandle::deviceReboot(bool isCloseHandle){
qInfo
()
<<
sSn
<<
"重启相机失败"
<<
nRet
;
return
0
;
}
if
(
isCloseHandle
){
return
0
;
}
QString
ip
=
QString
::
fromUtf8
(
loginParam
->
sDevId
);
MainWindow
::
sp_this
->
clearOfflineCameraHandle
(
ip
,
loginParam
->
nDevPort
);
return
nRet
;
...
...
CameraHandle.h
View file @
e5fe3f20
...
...
@@ -100,7 +100,7 @@ public:
void
updateSdkDevSpvMn
(
vides_data
::
responseGb28181
*
gb28181
);
//重启设备
int
deviceReboot
(
bool
isCloseHandle
);
int
deviceReboot
();
//设备关机
int
deviceShutdown
();
//获取固件版本
...
...
HttpService.cpp
View file @
e5fe3f20
...
...
@@ -518,13 +518,18 @@ vides_data::response *HttpService::httpDeviceConfig(const QString &serialNumber,
// 解析 licensePlateConfig
QJsonObject
licensePlateConfigObj
=
dataObj
[
"licensePlateConfig"
].
toObject
();
config
.
licensePlateConfig
.
isOn
=
licensePlateConfigObj
[
"isOn"
].
toBool
();
config
.
licensePlateConfig
.
carConfidence
=
licensePlateConfigObj
[
"carConfidence
"
].
toVariant
().
toFloat
();
config
.
licensePlateConfig
.
recConfidenceThreshold
=
licensePlateConfigObj
[
"recConfidenceThreshold
"
].
toVariant
().
toFloat
();
config
.
licensePlateConfig
.
carConfidenceMax
=
licensePlateConfigObj
[
"carConfidenceMax"
].
toVariant
().
toFloat
();
config
.
licensePlateConfig
.
carConfidenceMin
=
licensePlateConfigObj
[
"carConfidenceMin"
].
toVariant
().
toFloat
();
config
.
licensePlateConfig
.
licensePlateLen
=
licensePlateConfigObj
[
"licensePlateLen"
].
toInt
();
config
.
licensePlateConfig
.
updateAt
=
licensePlateConfigObj
[
"updateAt"
].
toVariant
().
toULongLong
();
config
.
licensePlateConfig
.
maxNum
=
licensePlateConfigObj
[
"maxNum"
].
toInt
();
config
.
licensePlateConfig
.
useHalf
=
licensePlateConfigObj
[
"useHalf"
].
toBool
();
config
.
licensePlateConfig
.
boxConfThreshold
=
licensePlateConfigObj
[
"boxConfThreshold"
].
toVariant
().
toFloat
();
config
.
licensePlateConfig
.
nmsThreshold
=
licensePlateConfigObj
[
"nmsThreshold"
].
toVariant
().
toFloat
();
config
.
licensePlateConfig
.
isHigh
=
licensePlateConfigObj
[
"isHigh"
].
toBool
();
// 解析 uniformConfig
QJsonObject
uniformConfigObj
=
dataObj
[
"uniformConfig"
].
toObject
();
...
...
@@ -547,10 +552,8 @@ vides_data::response *HttpService::httpDeviceConfig(const QString &serialNumber,
//解析mqttConfig
QJsonObject
mqttConfigObj
=
dataObj
[
"mqttConfig"
].
toObject
();
config
.
mqttConfig
.
address
=
mqttConfigObj
[
"address"
].
toString
();
config
.
mqttConfig
.
clientId
=
mqttConfigObj
[
"clientId"
].
toString
();
config
.
mqttConfig
.
qos
=
mqttConfigObj
[
"qos"
].
toInt
();
config
.
mqttConfig
.
timeout
=
mqttConfigObj
[
"timeout"
].
toVariant
().
toULongLong
();
config
.
mqttConfig
.
topic
=
mqttConfigObj
[
"topic"
].
toString
();
config
.
mqttConfig
.
username
=
mqttConfigObj
[
"username"
].
toString
();
config
.
mqttConfig
.
password
=
mqttConfigObj
[
"password"
].
toString
();
...
...
Httpclient.cpp
View file @
e5fe3f20
...
...
@@ -7,7 +7,7 @@ HttpClient::HttpClient(QObject *parent)
{
m_networkAccessManager
=
new
QNetworkAccessManager
(
this
);
m_timer
=
new
QTimer
(
this
);
m_timer
->
setInterval
(
6
000
);
m_timer
->
setInterval
(
10
000
);
m_timer
->
setSingleShot
(
true
);
connect
(
m_timer
,
SIGNAL
(
timeout
()),
&
m_eventLoop
,
SLOT
(
quit
()));
}
...
...
LicensePlateRecognition.cpp
View file @
e5fe3f20
...
...
@@ -4,22 +4,23 @@
LicensePlateRecognition
::
LicensePlateRecognition
(
const
QString
&
modelPaths
,
float
carConfidence
,
bool
is_high
)
{
LicensePlateRecognition
::
LicensePlateRecognition
(
const
QString
&
modelPaths
,
bool
is_high
,
int
maxNum
,
bool
useHalf
,
float
boxThreshold
,
float
nmsThreshold
,
float
recThreshold
)
{
HLPR_ContextConfiguration
configuration
=
{
0
};
QByteArray
&&
by_mpath
=
modelPaths
.
toUtf8
();
char
*
m_path
=
by_mpath
.
data
();
configuration
.
models_path
=
m_path
;
configuration
.
max_num
=
5
;
configuration
.
max_num
=
maxNum
;
if
(
is_high
){
configuration
.
det_level
=
DETECT_LEVEL_HIGH
;
}
else
{
configuration
.
det_level
=
DETECT_LEVEL_LOW
;
}
configuration
.
use_half
=
false
;
configuration
.
nms_threshold
=
0.5
f
;
configuration
.
rec_confidence_threshold
=
carConfidence
;
configuration
.
box_conf_threshold
=
0.30
f
;
configuration
.
use_half
=
useHalf
;
configuration
.
nms_threshold
=
nmsThreshold
;
configuration
.
rec_confidence_threshold
=
recThreshold
;
configuration
.
box_conf_threshold
=
boxThreshold
;
configuration
.
threads
=
1
;
ctx
=
HLPR_CreateContext
(
&
configuration
);
}
...
...
LicensePlateRecognition.h
View file @
e5fe3f20
...
...
@@ -29,7 +29,9 @@ public:
void
replaceWith1And0
(
QString
&
code
);
LicensePlateRecognition
(
const
QString
&
modelPaths
,
float
carConfidence
,
bool
is_high
);
LicensePlateRecognition
(
const
QString
&
modelPaths
,
bool
is_high
,
int
maxNum
,
bool
useHalf
,
float
boxThreshold
,
float
nmsThreshold
,
float
recThreshold
);
LicensePlateRecognition
();
...
...
MqttSubscriber.cpp
View file @
e5fe3f20
...
...
@@ -118,13 +118,14 @@ int MqttSubscriber::messageArrived(char* topicName, int topicLen, MQTTAsync_mess
CameraHandle
*
cameraHandle
=
MainWindow
::
sp_this
->
findHandle
(
response
.
sn
);
if
(
cameraHandle
==
nullptr
){
qInfo
()
<<
"不存在该相机"
;
return
1
;
}
if
(
response
.
msg_type
==
2
){
res
=
cameraHandle
->
deviceShutdown
();
}
if
(
response
.
msg_type
==
3
){
res
=
cameraHandle
->
deviceReboot
(
false
);
res
=-
1
;
}
else
{
if
(
response
.
msg_type
==
2
){
res
=
cameraHandle
->
deviceShutdown
();
}
if
(
response
.
msg_type
==
3
){
res
=
cameraHandle
->
deviceReboot
();
}
}
vides_data
::
requestMqttData
request
;
qInfo
()
<<
"res"
<<
res
;
...
...
VidesData.h
View file @
e5fe3f20
...
...
@@ -258,15 +258,19 @@ struct FaceConfig {
struct
LicensePlateConfig
{
bool
isOn
;
float
carConfidence
;
float
carConfidenceMax
;
float
carConfidenceMin
;
int
licensePlateLen
;
quint64
updateAt
;
bool
is_high
;
quint64
updateAt
;
int
maxNum
;
///< 识别最大数量
bool
useHalf
;
///< 是否使用半精度推理模式
float
boxConfThreshold
;
///< 检测框阈值
float
nmsThreshold
;
///< 非极大值抑制阈值
float
recConfidenceThreshold
;
///< 识别置信度阈值
bool
isHigh
;
};
struct
UniformConfig
{
bool
isOn
;
int
uniformColor
;
...
...
@@ -307,6 +311,24 @@ struct requestMqttData{
int
code
;
QString
uniq
;
};
struct
DetectionParams
{
int
newHumanDetectionLen
;
int
newLicensePlateLen
;
int
newFaceLen
;
QString
modelPaths
;
float
humanCarShapeConfidence
;
int
uniformColor
;
std
::
map
<
QString
,
QString
>
faceMaps
;
int
numberFaces
;
float
faceConfidence
;
__uint8_t
algorithmPermissions
;
bool
isHigh
;
int
maxNum
;
///< 识别最大数量
bool
useHalf
;
///< 是否使用半精度推理模式
float
boxConfThreshold
;
///< 检测框阈值
float
nmsThreshold
;
///< 非极大值抑制阈值
float
recConfidenceThreshold
;
///< 识别置信度阈值
};
inline
bool
isVirtualMachine
()
{
...
...
cameravideo
0 → 100755
View file @
e5fe3f20
File added
gamera_videos.pro
View file @
e5fe3f20
...
...
@@ -25,6 +25,9 @@ INCLUDEPATH+=/usr/local/include/human
INCLUDEPATH
+=/
usr
/
local
/
include
/
CImg
INCLUDEPATH
+=/
usr
/
local
/
include
/
mqtt
# 禁用所有警告
QMAKE_CXXFLAGS
+=
-
w
#unix:contains(QMAKE_HOST.arch, x86_64) {
# QMAKE_LIBDIR += /home/mark/Public/x86_opencv/lib
#}
...
...
mainwindow.cpp
View file @
e5fe3f20
...
...
@@ -70,13 +70,20 @@ MainWindow::MainWindow()
float
carShapeConfidence
=
config
.
uniformConfig
.
carShapeConfidence
;
float
carConfidence
=
config
.
licensePlateConfig
.
carConfidence
;
bool
is_high
=
config
.
licensePlateConfig
.
is_high
;
bool
is_high
=
config
.
licensePlateConfig
.
isHigh
;
int
maxNum
=
config
.
licensePlateConfig
.
maxNum
;
bool
useHalf
=
config
.
licensePlateConfig
.
useHalf
;
float
boxThreshold
=
config
.
licensePlateConfig
.
boxConfThreshold
;
float
nmsThreshold
=
config
.
licensePlateConfig
.
nmsThreshold
;
float
recThreshold
=
config
.
licensePlateConfig
.
recConfidenceThreshold
;
AlgorithmTaskManage
&
algorithmTaskManage
=
AlgorithmTaskManage
::
getInstance
();
algorithmTaskManage
.
initialize
(
humanDetectionLen
,
licensePlateLen
,
faceLen
,
true
,
0x00
);
algorithmTaskManage
.
initHumanDetectionManage
(
modelPaths
,
carShapeConfidence
,
uniformColor
);
algorithmTaskManage
.
initLicensePlateManage
(
modelPaths
,
carConfidence
,
is_high
);
algorithmTaskManage
.
initLicensePlateManage
(
modelPaths
,
is_high
,
maxNum
,
useHalf
,
boxThreshold
,
nmsThreshold
,
recThreshold
);
MediaFaceImage
*
mediaFaceImage
=
MediaFaceImage
::
getInstance
();
QString
configPath
=
qSetting
->
value
(
"devices/sz_config_path"
).
toString
();
...
...
@@ -122,7 +129,9 @@ MainWindow::MainWindow()
qDebug
()
<<
"Server started, listening on port 12345"
;
}
config
.
mqttConfig
.
clientId
=
serialNumber
;
QString
topic
=
QStringLiteral
(
"/thingshub/%1/device/reply"
).
arg
(
serialNumber
);
config
.
mqttConfig
.
topic
=
topic
;
this
->
mqttConfig
=
config
.
mqttConfig
;
MqttSubscriber
*
subscriber
=
MqttSubscriber
::
getInstance
(
mqttConfig
);
subscriber
->
start
();
...
...
@@ -155,14 +164,29 @@ void MainWindow::divParameterUpdate(vides_data::responseConfig &cloudConfig ){
if
(
!
faceAlgorithm
&&
!
licensePlateAlgorithm
&&
!
uniformAlgorithm
&&
!
timeChange
){
return
;
}
bool
is_high
=
cloudConfig
.
licensePlateConfig
.
is_high
;
__uint8_t
alg
=
this
->
intToUint8t
(
faceAlgorithm
,
licensePlateAlgorithm
,
uniformAlgorithm
)
;
algorithmTaskManage
.
releaseResources
(
cloudConfig
.
uniformConfig
.
humanDetectionLen
,
cloudConfig
.
licensePlateConfig
.
licensePlateLen
,
cloudConfig
.
faceConfig
.
faceLen
,
modelPaths
,
cloudConfig
.
uniformConfig
.
carShapeConfidence
,
cloudConfig
.
uniformConfig
.
uniformColor
,
cloudConfig
.
licensePlateConfig
.
carConfidence
,
localImageMap
,
cloudConfig
.
faceConfig
.
faceNumbers
,
cloudConfig
.
faceConfig
.
confidence
,
alg
,
is_high
);
vides_data
::
DetectionParams
params
;
params
.
newHumanDetectionLen
=
cloudConfig
.
uniformConfig
.
humanDetectionLen
;
params
.
newLicensePlateLen
=
cloudConfig
.
licensePlateConfig
.
licensePlateLen
;
params
.
newFaceLen
=
cloudConfig
.
faceConfig
.
faceLen
;
params
.
modelPaths
=
modelPaths
;
params
.
humanCarShapeConfidence
=
cloudConfig
.
uniformConfig
.
carShapeConfidence
;
params
.
uniformColor
=
cloudConfig
.
uniformConfig
.
uniformColor
;
params
.
faceMaps
=
localImageMap
;
params
.
numberFaces
=
cloudConfig
.
faceConfig
.
faceNumbers
;
params
.
faceConfidence
=
cloudConfig
.
faceConfig
.
confidence
;
params
.
algorithmPermissions
=
alg
;
params
.
isHigh
=
cloudConfig
.
licensePlateConfig
.
isHigh
;
params
.
maxNum
=
cloudConfig
.
licensePlateConfig
.
maxNum
;
params
.
useHalf
=
cloudConfig
.
licensePlateConfig
.
useHalf
;
params
.
boxConfThreshold
=
cloudConfig
.
licensePlateConfig
.
boxConfThreshold
;
params
.
nmsThreshold
=
cloudConfig
.
licensePlateConfig
.
nmsThreshold
;
params
.
recConfidenceThreshold
=
cloudConfig
.
licensePlateConfig
.
recConfidenceThreshold
;
algorithmTaskManage
.
releaseResources
(
params
);
if
(
config
.
timerSettings
.
updateAt
!=
cloudConfig
.
timerSettings
.
updateAt
){
if
(
config
.
timerSettings
.
deleteLogFileTimer
!=
cloudConfig
.
timerSettings
.
deleteLogFileTimer
){
deleteLogFileTimer
->
stop
();
...
...
@@ -514,7 +538,7 @@ void MainWindow::startCamera(const QString &httpurl){
else
{
CameraHandle
*
indexHandle
=
findHandle
(
device
.
sSn
);
if
(
indexHandle
!=
nullptr
&&
device
.
is_reboot
){
indexHandle
->
deviceReboot
(
false
);
indexHandle
->
deviceReboot
();
}
else
{
auto
it
=
this
->
faceDetectionParkingPushs
.
find
(
key
);
if
(
it
!=
this
->
faceDetectionParkingPushs
.
end
())
{
...
...
@@ -963,6 +987,8 @@ void MainWindow::initCameras(vides_data::cameraParameters ¶meter,vides_data:
initDevConfigSyn
(
cameraHandle
,
devConfig
);
cameraHandle
->
sdkDevSetAlarmListener
(
sdk_handle
,
0
);
int
synTime
=
devConfig
.
camera
.
devSnapSynTimer
;
uint64
face_frequency
=
devConfig
.
faceConfig
.
faceFrequency
;
...
...
moc_predefs.h
0 → 100644
View file @
e5fe3f20
#define __SSP_STRONG__ 3
#define __DBL_MIN_EXP__ (-1021)
#define __FLT32X_MAX_EXP__ 1024
#define __cpp_attributes 200809
#define __UINT_LEAST16_MAX__ 0xffff
#define __ARM_SIZEOF_WCHAR_T 4
#define __ATOMIC_ACQUIRE 2
#define __FLT128_MAX_10_EXP__ 4932
#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F
#define __GCC_IEC_559_COMPLEX 2
#define __UINT_LEAST8_TYPE__ unsigned char
#define __INTMAX_C(c) c ## L
#define __CHAR_BIT__ 8
#define __UINT8_MAX__ 0xff
#define __WINT_MAX__ 0xffffffffU
#define __FLT32_MIN_EXP__ (-125)
#define __cpp_static_assert 200410
#define __ORDER_LITTLE_ENDIAN__ 1234
#define __SIZE_MAX__ 0xffffffffffffffffUL
#define __WCHAR_MAX__ 0xffffffffU
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L)
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
#define __GCC_ATOMIC_CHAR_LOCK_FREE 2
#define __GCC_IEC_559 2
#define __FLT32X_DECIMAL_DIG__ 17
#define __FLT_EVAL_METHOD__ 0
#define __unix__ 1
#define __cpp_binary_literals 201304
#define __FLT64_DECIMAL_DIG__ 17
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2
#define __cpp_variadic_templates 200704
#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL
#define __SIG_ATOMIC_TYPE__ int
#define __DBL_MIN_10_EXP__ (-307)
#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16
#define __FINITE_MATH_ONLY__ 0
#define __ARM_FEATURE_UNALIGNED 1
#define __GNUC_PATCHLEVEL__ 0
#define __FLT32_HAS_DENORM__ 1
#define __UINT_FAST8_MAX__ 0xff
#define __has_include(STR) __has_include__(STR)
#define __DEC64_MAX_EXP__ 385
#define __INT8_C(c) c
#define __INT_LEAST8_WIDTH__ 8
#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL
#define __SHRT_MAX__ 0x7fff
#define __LDBL_MAX__ 1.18973149535723176508575932662800702e+4932L
#define __ARM_FEATURE_IDIV 1
#define __FLT64X_MAX_10_EXP__ 4932
#define __ARM_FP 14
#define __UINT_LEAST8_MAX__ 0xff
#define __GCC_ATOMIC_BOOL_LOCK_FREE 2
#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128
#define __UINTMAX_TYPE__ long unsigned int
#define __linux 1
#define __DEC32_EPSILON__ 1E-6DF
#define __FLT_EVAL_METHOD_TS_18661_3__ 0
#define __OPTIMIZE__ 1
#define __CHAR_UNSIGNED__ 1
#define __UINT32_MAX__ 0xffffffffU
#define __GXX_EXPERIMENTAL_CXX0X__ 1
#define __AARCH64_CMODEL_SMALL__ 1
#define __LDBL_MAX_EXP__ 16384
#define __FLT128_MIN_EXP__ (-16381)
#define __WINT_MIN__ 0U
#define __linux__ 1
#define __FLT128_MIN_10_EXP__ (-4931)
#define __INT_LEAST16_WIDTH__ 16
#define __SCHAR_MAX__ 0x7f
#define __FLT128_MANT_DIG__ 113
#define __WCHAR_MIN__ 0U
#define __INT64_C(c) c ## L
#define __DBL_DIG__ 15
#define __GCC_ATOMIC_POINTER_LOCK_FREE 2
#define __FLT64X_MANT_DIG__ 113
#define _FORTIFY_SOURCE 2
#define __SIZEOF_INT__ 4
#define __SIZEOF_POINTER__ 8
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2
#define __USER_LABEL_PREFIX__
#define __FLT64X_EPSILON__ 1.92592994438723585305597794258492732e-34F64x
#define __STDC_HOSTED__ 1
#define __LDBL_HAS_INFINITY__ 1
#define __ARM_ALIGN_MAX_STACK_PWR 16
#define __FLT32_DIG__ 6
#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F
#define __GXX_WEAK__ 1
#define __SHRT_WIDTH__ 16
#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L
#define __DEC32_MAX__ 9.999999E96DF
#define __cpp_threadsafe_static_init 200806
#define __ARM_SIZEOF_MINIMAL_ENUM 4
#define __FLT64X_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F64x
#define __FLT32X_HAS_INFINITY__ 1
#define __INT32_MAX__ 0x7fffffff
#define __INT_WIDTH__ 32
#define __SIZEOF_LONG__ 8
#define __STDC_IEC_559__ 1
#define __STDC_ISO_10646__ 201706L
#define __UINT16_C(c) c
#define __PTRDIFF_WIDTH__ 64
#define __DECIMAL_DIG__ 36
#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64
#define __gnu_linux__ 1
#define __INTMAX_WIDTH__ 64
#define __FLT64_MIN_EXP__ (-1021)
#define __has_include_next(STR) __has_include_next__(STR)
#define __FLT64X_MIN_10_EXP__ (-4931)
#define __LDBL_HAS_QUIET_NAN__ 1
#define __FLT16_MIN_EXP__ (-13)
#define __FLT64_MANT_DIG__ 53
#define __GNUC__ 7
#define __GXX_RTTI 1
#define __pie__ 2
#define __cpp_delegating_constructors 200604
#define __FLT_HAS_DENORM__ 1
#define __SIZEOF_LONG_DOUBLE__ 16
#define __BIGGEST_ALIGNMENT__ 16
#define __STDC_UTF_16__ 1
#define __FLT64_MAX_10_EXP__ 308
#define __FLT16_MAX_10_EXP__ 4
#define __FLT32_HAS_INFINITY__ 1
#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L)
#define __cpp_raw_strings 200710
#define __INT_FAST32_MAX__ 0x7fffffffffffffffL
#define __DBL_HAS_INFINITY__ 1
#define __INT64_MAX__ 0x7fffffffffffffffL
#define __DEC32_MIN_EXP__ (-94)
#define __INTPTR_WIDTH__ 64
#define __FLT32X_HAS_DENORM__ 1
#define __INT_FAST16_TYPE__ long int
#define __LDBL_HAS_DENORM__ 1
#define __cplusplus 201103L
#define __cpp_ref_qualifiers 200710
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
#define __INT_LEAST32_MAX__ 0x7fffffff
#define __DEC32_MIN__ 1E-95DF
#define __DEPRECATED 1
#define __cpp_rvalue_references 200610
#define __DBL_MAX_EXP__ 1024
#define __WCHAR_WIDTH__ 32
#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32
#define __DEC128_EPSILON__ 1E-33DL
#define __FLT16_DECIMAL_DIG__ 5
#define __PTRDIFF_MAX__ 0x7fffffffffffffffL
#define __STDC_NO_THREADS__ 1
#define __FLT32_HAS_QUIET_NAN__ 1
#define __GNUG__ 7
#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL
#define __SIZEOF_SIZE_T__ 8
#define __cpp_rvalue_reference 200610
#define __ARM_ALIGN_MAX_PWR 28
#define __cpp_nsdmi 200809
#define __FLT64X_MIN_EXP__ (-16381)
#define __SIZEOF_WINT_T__ 4
#define __LONG_LONG_WIDTH__ 64
#define __cpp_initializer_lists 200806
#define __FLT32_MAX_EXP__ 128
#define __cpp_hex_float 201603
#define __GCC_HAVE_DWARF2_CFI_ASM 1
#define __ARM_FP16_FORMAT_IEEE 1
#define __GXX_ABI_VERSION 1011
#define __FLT128_HAS_INFINITY__ 1
#define __FLT_MIN_EXP__ (-125)
#define __FLT16_MANT_DIG__ 11
#define __cpp_lambdas 200907
#define __FLT64X_HAS_QUIET_NAN__ 1
#define __INT_FAST64_TYPE__ long int
#define __FP_FAST_FMAF 1
#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64
#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L)
#define __PIE__ 2
#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16
#define __LP64__ 1
#define __FLT_EVAL_METHOD_C99__ 0
#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x
#define __aarch64__ 1
#define __FLT64_MIN_10_EXP__ (-307)
#define __ARM_FP16_ARGS 1
#define __FLT16_MIN_10_EXP__ (-4)
#define __FLT64X_DECIMAL_DIG__ 36
#define __DEC128_MIN__ 1E-6143DL
#define __REGISTER_PREFIX__
#define __UINT16_MAX__ 0xffff
#define __DBL_HAS_DENORM__ 1
#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32
#define __UINT8_TYPE__ unsigned char
#define __FLT_MANT_DIG__ 24
#define __LDBL_DECIMAL_DIG__ 36
#define __VERSION__ "7.5.0"
#define __UINT64_C(c) c ## UL
#define __cpp_unicode_characters 200704
#define _STDC_PREDEF_H 1
#define __ARM_FEATURE_FMA 1
#define __GCC_ATOMIC_INT_LOCK_FREE 2
#define __FLT128_MAX_EXP__ 16384
#define __FLT32_MANT_DIG__ 24
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
#define __FLT32X_MIN_EXP__ (-1021)
#define __FLT16_DIG__ 3
#define __STDC_IEC_559_COMPLEX__ 1
#define __FLT128_HAS_DENORM__ 1
#define __FLT128_DIG__ 33
#define __SCHAR_WIDTH__ 8
#define __INT32_C(c) c
#define __DEC64_EPSILON__ 1E-15DD
#define __ORDER_PDP_ENDIAN__ 3412
#define __DEC128_MIN_EXP__ (-6142)
#define __FLT32_MAX_10_EXP__ 38
#define __ARM_64BIT_STATE 1
#define __INT_FAST32_TYPE__ long int
#define __UINT_LEAST16_TYPE__ short unsigned int
#define __FLT64X_HAS_INFINITY__ 1
#define unix 1
#define __INT16_MAX__ 0x7fff
#define __cpp_rtti 199711
#define __SIZE_TYPE__ long unsigned int
#define __UINT64_MAX__ 0xffffffffffffffffUL
#define __FLT64X_DIG__ 33
#define __INT8_TYPE__ signed char
#define __ELF__ 1
#define __FLT_RADIX__ 2
#define __INT_LEAST16_TYPE__ short int
#define __ARM_ARCH_PROFILE 65
#define __LDBL_EPSILON__ 1.92592994438723585305597794258492732e-34L
#define __UINTMAX_C(c) c ## UL
#define __GLIBCXX_BITSIZE_INT_N_0 128
#define __ARM_PCS_AAPCS64 1
#define __SIG_ATOMIC_MAX__ 0x7fffffff
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2
#define __SIZEOF_PTRDIFF_T__ 8
#define __FLT32X_MANT_DIG__ 53
#define __AARCH64EL__ 1
#define __FLT16_MAX_EXP__ 16
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
#define __INT_FAST16_MAX__ 0x7fffffffffffffffL
#define __FLT64_DIG__ 15
#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL
#define __UINT_LEAST64_TYPE__ long unsigned int
#define __FLT_HAS_QUIET_NAN__ 1
#define __FLT_MAX_10_EXP__ 38
#define __LONG_MAX__ 0x7fffffffffffffffL
#define __FLT64X_HAS_DENORM__ 1
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
#define __FLT_HAS_INFINITY__ 1
#define __unix 1
#define __cpp_unicode_literals 200710
#define __UINT_FAST16_TYPE__ long unsigned int
#define __DEC64_MAX__ 9.999999999999999E384DD
#define __INT_FAST32_WIDTH__ 64
#define __CHAR16_TYPE__ short unsigned int
#define __PRAGMA_REDEFINE_EXTNAME 1
#define __SIZE_WIDTH__ 64
#define __INT_LEAST16_MAX__ 0x7fff
#define __DEC64_MANT_DIG__ 16
#define __UINT_LEAST32_MAX__ 0xffffffffU
#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32
#define __GCC_ATOMIC_LONG_LOCK_FREE 2
#define __SIG_ATOMIC_WIDTH__ 32
#define __INT_LEAST64_TYPE__ long int
#define __ARM_FEATURE_CLZ 1
#define __INT16_TYPE__ short int
#define __INT_LEAST8_TYPE__ signed char
#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16
#define __DEC32_MAX_EXP__ 97
#define __INT_FAST8_MAX__ 0x7f
#define __ARM_ARCH 8
#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128
#define __INTPTR_MAX__ 0x7fffffffffffffffL
#define linux 1
#define __cpp_range_based_for 200907
#define __FLT64_HAS_QUIET_NAN__ 1
#define __FLT32_MIN_10_EXP__ (-37)
#define __EXCEPTIONS 1
#define __LDBL_MANT_DIG__ 113
#define __DBL_HAS_QUIET_NAN__ 1
#define __FLT64_HAS_INFINITY__ 1
#define __FLT64X_MAX__ 1.18973149535723176508575932662800702e+4932F64x
#define __FLT16_HAS_INFINITY__ 1
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
#define __INTPTR_TYPE__ long int
#define __UINT16_TYPE__ short unsigned int
#define __WCHAR_TYPE__ unsigned int
#define __SIZEOF_FLOAT__ 4
#define __pic__ 2
#define __UINTPTR_MAX__ 0xffffffffffffffffUL
#define __ARM_ARCH_8A 1
#define __INT_FAST64_WIDTH__ 64
#define __DEC64_MIN_EXP__ (-382)
#define __cpp_decltype 200707
#define __FLT32_DECIMAL_DIG__ 9
#define __INT_FAST64_MAX__ 0x7fffffffffffffffL
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
#define __FLT_DIG__ 6
#define __FLT64X_MAX_EXP__ 16384
#define __UINT_FAST64_TYPE__ long unsigned int
#define __INT_MAX__ 0x7fffffff
#define __FLT16_HAS_QUIET_NAN__ 1
#define __INT64_TYPE__ long int
#define __FLT_MAX_EXP__ 128
#define __ORDER_BIG_ENDIAN__ 4321
#define __DBL_MANT_DIG__ 53
#define __cpp_inheriting_constructors 201511
#define __INT_LEAST64_MAX__ 0x7fffffffffffffffL
#define __DEC64_MIN__ 1E-383DD
#define __WINT_TYPE__ unsigned int
#define __UINT_LEAST32_TYPE__ unsigned int
#define __SIZEOF_SHORT__ 2
#define __LDBL_MIN_EXP__ (-16381)
#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64
#define __WINT_WIDTH__ 32
#define __INT_LEAST8_MAX__ 0x7f
#define __FLT32X_MAX_10_EXP__ 308
#define __SIZEOF_INT128__ 16
#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16
#define __WCHAR_UNSIGNED__ 1
#define __LDBL_MAX_10_EXP__ 4932
#define __ATOMIC_RELAXED 0
#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L)
#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128
#define _LP64 1
#define __UINT8_C(c) c
#define __FLT64_MAX_EXP__ 1024
#define __INT_LEAST32_TYPE__ int
#define __SIZEOF_WCHAR_T__ 4
#define __ARM_NEON 1
#define __FLT128_HAS_QUIET_NAN__ 1
#define __INT_FAST8_TYPE__ signed char
#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x
#define __GNUC_STDC_INLINE__ 1
#define __FLT64_HAS_DENORM__ 1
#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32
#define __FLT16_HAS_DENORM__ 1
#define __DBL_DECIMAL_DIG__ 17
#define __STDC_UTF_32__ 1
#define __INT_FAST8_WIDTH__ 8
#define __DEC_EVAL_METHOD__ 2
#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x
#define __cpp_runtime_arrays 198712
#define __UINT64_TYPE__ long unsigned int
#define __UINT32_C(c) c ## U
#define __INTMAX_MAX__ 0x7fffffffffffffffL
#define __cpp_alias_templates 200704
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F
#define __INT8_MAX__ 0x7f
#define __LONG_WIDTH__ 64
#define __PIC__ 2
#define __UINT_FAST32_TYPE__ long unsigned int
#define __CHAR32_TYPE__ unsigned int
#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F
#define __FP_FAST_FMA 1
#define __cpp_constexpr 200704
#define __ARM_FEATURE_NUMERIC_MAXMIN 1
#define __INT32_TYPE__ int
#define __SIZEOF_DOUBLE__ 8
#define __cpp_exceptions 199711
#define __FLT_MIN_10_EXP__ (-37)
#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64
#define __INT_LEAST32_WIDTH__ 32
#define __INTMAX_TYPE__ long int
#define __DEC128_MAX_EXP__ 6145
#define __FLT32X_HAS_QUIET_NAN__ 1
#define __ATOMIC_CONSUME 1
#define __GNUC_MINOR__ 5
#define __GLIBCXX_TYPE_INT_N_0 __int128
#define __INT_FAST16_WIDTH__ 64
#define __UINTMAX_MAX__ 0xffffffffffffffffUL
#define __DEC32_MANT_DIG__ 7
#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x
#define __DBL_MAX_10_EXP__ 308
#define __LDBL_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966L
#define __INT16_C(c) c
#define __ARM_ARCH_ISA_A64 1
#define __STDC__ 1
#define __FLT32X_DIG__ 15
#define __PTRDIFF_TYPE__ long int
#define __ATOMIC_SEQ_CST 5
#define __UINT32_TYPE__ unsigned int
#define __FLT32X_MIN_10_EXP__ (-307)
#define __UINTPTR_TYPE__ long unsigned int
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
#define __DEC128_MANT_DIG__ 34
#define __LDBL_MIN_10_EXP__ (-4931)
#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128
#define __SIZEOF_LONG_LONG__ 8
#define __cpp_user_defined_literals 200809
#define __FLT128_DECIMAL_DIG__ 36
#define __GCC_ATOMIC_LLONG_LOCK_FREE 2
#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x
#define __LDBL_DIG__ 33
#define __FLT_DECIMAL_DIG__ 9
#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL
#define __GCC_ATOMIC_SHORT_LOCK_FREE 2
#define __INT_LEAST64_WIDTH__ 64
#define __UINT_FAST8_TYPE__ unsigned char
#define _GNU_SOURCE 1
#define __ATOMIC_ACQ_REL 4
#define __ATOMIC_RELEASE 3
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment