Browse Source

[修改]改动peoplenet里面model_engine_file字段

非煤矿业企业安全风险监测预警系统
邵佳豪 2 years ago
parent
commit
a786075968
  1. 4
      src/app/system-management/host-config/host-config.component.ts
  2. 12
      src/app/system-management/image-label2/image-label2.component.ts

4
src/app/system-management/host-config/host-config.component.ts

@ -838,7 +838,7 @@ peoplenet:
roi-bottom-offset: 0
detected-min-w: 20
detected-min-h: 200
model_engine_file: '/opt/nvidia/deepstream/deepstream-6.0/sources/project/models/peoplenet/weights/resnet34_peoplenet_int8.etlt_b16_gpu0_int8.engine'
model_engine_file: '/opt/nvidia/deepstream/deepstream-6.0/sources/project/models/peoplenet/weights/yolov4_cspdarknet_tiny_fp16.etlt_b16_gpu0_fp16.engine'
threshold: 0.3
# 2:车辆检测
@ -985,7 +985,7 @@ peoplenet:
roi-bottom-offset: 0
detected-min-w: 20
detected-min-h: 200
model_engine_file: '/opt/nvidia/deepstream/deepstream-6.0/sources/project/models/peoplenet/weights/resnet34_peoplenet_int8.etlt_b16_gpu0_int8.engine'
model_engine_file: '/opt/nvidia/deepstream/deepstream-6.0/sources/project/models/peoplenet/weights/yolov4_cspdarknet_tiny_fp16.etlt_b16_gpu0_fp32.engine'
threshold: 0.3
# 2:车辆检测

12
src/app/system-management/image-label2/image-label2.component.ts

@ -76,7 +76,9 @@ export class ImageLabel2Component implements OnInit {
ngAfterContentInit(): void {
this.getImgMarkData()
.then((res: any) => {
console.log(111, res);
this.imgItem = window.URL.createObjectURL(res);
console.log(222, this.imgItem);
window.setTimeout(() => {
this.initBackgroundImg();
}, 0);
@ -356,7 +358,6 @@ export class ImageLabel2Component implements OnInit {
var upX = e.pageX - canvas.offsetLeft;
var upY = e.pageY - canvas.offsetTop;
if (this.isDrawArrow && !this.arrowDirection && !this.isAllMonitoring) {
console.log('八嘎');
//绘制 箭头
if (this.arrowPoints.length === 2) {
//限制数量
@ -386,10 +387,6 @@ export class ImageLabel2Component implements OnInit {
context,
'black'
);
}
if (
this.isDrawArrow &&
@ -424,8 +421,6 @@ export class ImageLabel2Component implements OnInit {
context,
'black'
);
}
if (
this.isDrawArrow &&
@ -453,7 +448,6 @@ export class ImageLabel2Component implements OnInit {
];
this.drawLine(arr, context);
this.redrawPolygon(
this.pointsOfmonitor,
this.allpointsOfmonitor,
@ -461,8 +455,6 @@ export class ImageLabel2Component implements OnInit {
context,
'black'
);
}
if (
this.isDrawArrow &&

Loading…
Cancel
Save