Browse Source

[完善]主机新增北京展厅类型

beijing
邵佳豪 1 year ago
parent
commit
ceeb99f7d3
  1. 2
      src/app/pipe/cameraTypePipe.ts
  2. 5
      src/app/system-management/analysis-of-the-host/addhost/addhost.component.html
  3. 3
      src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html
  4. 1
      src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts
  5. 5
      src/app/system-management/analysis-of-the-host/edithost/edithost.component.html
  6. 1
      src/app/system-management/host-config/addcamera/addcamera.component.html
  7. 1
      src/app/system-management/host-config/editcamera/editcamera.component.html
  8. 5
      src/app/system-management/host-config/host-config.component.html
  9. 138
      src/app/system-management/host-config/host-config.component.ts
  10. 8
      src/app/system-management/image-label-anxin/image-label-anxin.component.ts

2
src/app/pipe/cameraTypePipe.ts

@ -11,7 +11,7 @@ import { Pipe, PipeTransform } from '@angular/core';
@Pipe({ name: 'cameraType' }) @Pipe({ name: 'cameraType' })
export class cameraType implements PipeTransform { export class cameraType implements PipeTransform {
transform(value: number): string { transform(value: number): string {
let arr = ['进出口', '加油区', '卸油区', '便利店'] let arr = ['进出口', '加油区', '卸油区', '便利店','办公区']
return arr[value] return arr[value]
} }
} }

5
src/app/system-management/analysis-of-the-host/addhost/addhost.component.html

@ -12,9 +12,10 @@
<nz-form-label [nzSpan]="5">类型</nz-form-label> <nz-form-label [nzSpan]="5">类型</nz-form-label>
<nz-form-control> <nz-form-control>
<nz-select formControlName="type" name="select-validate" nzPlaceHolder="设备类型"> <nz-select formControlName="type" name="select-validate" nzPlaceHolder="设备类型">
<!-- <nz-option [nzValue]="0" nzLabel="警旗1"></nz-option> <nz-option [nzValue]="0" nzLabel="警旗1"></nz-option>
<nz-option [nzValue]="1" nzLabel="警旗2"></nz-option> --> <nz-option [nzValue]="1" nzLabel="警旗2"></nz-option>
<nz-option [nzValue]="2" nzLabel="警旗3"></nz-option> <nz-option [nzValue]="2" nzLabel="警旗3"></nz-option>
<nz-option [nzValue]="3" nzLabel="北京展厅"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>

3
src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html

@ -49,7 +49,8 @@
<tr *ngFor="let data of basicTable.data"> <tr *ngFor="let data of basicTable.data">
<td>{{data.hostIPAddress}}</td> <td>{{data.hostIPAddress}}</td>
<td>!配置状态!</td> <td>!配置状态!</td>
<td>{{data.deviceProvider === 0 ? '警旗1' : data.deviceProvider === 1 ? '警旗2' :'警旗3'}}</td> <td>{{data.deviceProvider === 0 ? '警旗1' : data.deviceProvider === 1 ? '警旗2' : data.deviceProvider === 2
?'警旗3' :'北京展厅'}}</td>
<td class="operation"> <td class="operation">
<a (click)="edit(data)" style="margin-right: 12px;">编辑</a> <a (click)="edit(data)" style="margin-right: 12px;">编辑</a>
<a (click)="config(data)" style="margin-right: 12px;">配置</a> <a (click)="config(data)" style="margin-right: 12px;">配置</a>

1
src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts

@ -323,4 +323,5 @@ enum DeviceProvider {
'警旗1' = 0, '警旗1' = 0,
'警旗2' = 1, '警旗2' = 1,
'警旗3' = 2, '警旗3' = 2,
'北京展厅' = 3,
} }

5
src/app/system-management/analysis-of-the-host/edithost/edithost.component.html

@ -12,9 +12,10 @@
<nz-form-label [nzSpan]="5">类型</nz-form-label> <nz-form-label [nzSpan]="5">类型</nz-form-label>
<nz-form-control> <nz-form-control>
<nz-select formControlName="type" name="select-validate" [(ngModel)]="type" nzPlaceHolder="设备类型"> <nz-select formControlName="type" name="select-validate" [(ngModel)]="type" nzPlaceHolder="设备类型">
<!-- <nz-option [nzValue]="0" nzLabel="警旗1"></nz-option> <nz-option [nzValue]="0" nzLabel="警旗1"></nz-option>
<nz-option [nzValue]="1" nzLabel="警旗2"></nz-option> --> <nz-option [nzValue]="1" nzLabel="警旗2"></nz-option>
<nz-option [nzValue]="2" nzLabel="警旗3"></nz-option> <nz-option [nzValue]="2" nzLabel="警旗3"></nz-option>
<nz-option [nzValue]="3" nzLabel="北京展厅"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>

1
src/app/system-management/host-config/addcamera/addcamera.component.html

@ -40,6 +40,7 @@
<nz-option [nzValue]="1" nzLabel="加油区"></nz-option> <nz-option [nzValue]="1" nzLabel="加油区"></nz-option>
<nz-option [nzValue]="2" nzLabel="卸油区"></nz-option> <nz-option [nzValue]="2" nzLabel="卸油区"></nz-option>
<nz-option [nzValue]="3" nzLabel="便利店"></nz-option> <nz-option [nzValue]="3" nzLabel="便利店"></nz-option>
<nz-option [nzValue]="4" nzLabel="办公区"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>

1
src/app/system-management/host-config/editcamera/editcamera.component.html

@ -40,6 +40,7 @@
<nz-option [nzValue]="1" nzLabel="加油区"></nz-option> <nz-option [nzValue]="1" nzLabel="加油区"></nz-option>
<nz-option [nzValue]="2" nzLabel="卸油区"></nz-option> <nz-option [nzValue]="2" nzLabel="卸油区"></nz-option>
<nz-option [nzValue]="3" nzLabel="便利店"></nz-option> <nz-option [nzValue]="3" nzLabel="便利店"></nz-option>
<nz-option [nzValue]="4" nzLabel="办公区"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>

5
src/app/system-management/host-config/host-config.component.html

@ -35,7 +35,7 @@
<span *ngIf="hostType === '警旗2'"> <span *ngIf="hostType === '警旗2'">
{{item.dimensionedPointsHuanghai ? '已标注' : '未标注'}} {{item.dimensionedPointsHuanghai ? '已标注' : '未标注'}}
</span> </span>
<span *ngIf="hostType === '警旗3'"> <span *ngIf="hostType === '警旗3' || hostType === '北京展厅'">
{{item.dimensionedPointsAnxin ? '已标注' : '未标注'}} {{item.dimensionedPointsAnxin ? '已标注' : '未标注'}}
</span> </span>
</td> </td>
@ -67,6 +67,9 @@
<div class="footer" *ngIf="hostType === '警旗3'"> <div class="footer" *ngIf="hostType === '警旗3'">
<button nz-button nzType="primary" (click)="configToAx()">下发安信data.yaml配置</button> <button nz-button nzType="primary" (click)="configToAx()">下发安信data.yaml配置</button>
</div> </div>
<div class="footer" *ngIf="hostType === '北京展厅'">
<button nz-button nzType="primary" (click)="configToAx()">下发北京展厅data.yaml配置</button>
</div>
</div> </div>
</div> </div>
<div class="rightbox"> <div class="rightbox">

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

@ -307,7 +307,7 @@ export class HostConfigComponent implements OnInit {
modal.afterClose.subscribe((result) => { modal.afterClose.subscribe((result) => {
this.ngOnInit(); this.ngOnInit();
}); });
} else if (this.hostType == '警旗3') { } else if (this.hostType == '警旗3' || this.hostType == '北京展厅') {
const element = document.documentElement; const element = document.documentElement;
if (element.requestFullscreen) { if (element.requestFullscreen) {
//进入全屏 //进入全屏
@ -1516,8 +1516,12 @@ rule_threshold:
let data = this.configJsonToAx(); let data = this.configJsonToAx();
console.log(data); console.log(data);
// return; // return;
let title =
this.hostType === '北京展厅'
? '下发北京展厅配置'
: '下发安信config.json配置';
const modal = this.modal.create({ const modal = this.modal.create({
nzTitle: '下发安信config.json配置', nzTitle: title,
nzContent: AnxinConfigComponent, nzContent: AnxinConfigComponent,
nzViewContainerRef: this.viewContainerRef, nzViewContainerRef: this.viewContainerRef,
nzWidth: 1000, nzWidth: 1000,
@ -1565,39 +1569,86 @@ rule_threshold:
} }
configJsonToAx() { configJsonToAx() {
let data = { let data;
server: null, if (this.hostType === '北京展厅') {
obs: null, data = {
userInfo: { server: null,
user: '', obs: null,
password: '', userInfo: {
}, user: '',
ip: this.hostData.hostIPAddress, password: '',
imgScale: 1.5, },
cpuRtsp: false, ip: this.hostData.hostIPAddress,
pipline: '', imgScale: 1.5,
workerTag: ['worker'], cpuRtsp: false,
caps: [], pipline: '',
params: { workerTag: ['worker'],
smoke_sleep_m: 5, caps: [],
smoke_continue_s: 3, params: {
call_sleep_m: 5, smoke_sleep_m: 1,
call_continue_s: 3, smoke_continue_s: 1,
pay_sleep_m: 5, call_sleep_m: 1,
pay_continue_s: 3, call_continue_s: 1,
oilin_sleep_m: 5, pay_sleep_m: 5,
oilin_continue_s: 1, pay_continue_s: 3,
stop_step_s: 60, oilin_sleep_m: 5,
stop_continue_m: 30, oilin_continue_s: 1,
sameCarThreshold: 5, stop_step_s: 60,
smog_sleep_m: 5, stop_continue_m: 30,
smog_continue_s: 3, sameCarThreshold: 5,
fire_sleep_m: 5, smog_sleep_m: 5,
fire_continue_s: 3, smog_continue_s: 3,
lossScore: 40, //没检测到物体的惩罚分数 fire_sleep_m: 5,
}, fire_continue_s: 3,
}; geli_continue_s: 1,
console.log(this.hostData); miehuo_continue_s: 1,
gather_dis_min: 0.15,
gather_err_num: 3,
gather_continue_s: 0.5,
gather_sleep: 1,
helmeted_continue_s: 3,
workerIn_continue_s: 3,
workerOut_continue_s: 5,
workerSleep_continue_s: 3,
lossScore: 40, //没检测到物体的惩罚分数
},
};
} else {
data = {
server: null,
obs: null,
userInfo: {
user: '',
password: '',
},
ip: this.hostData.hostIPAddress,
imgScale: 1.5,
cpuRtsp: false,
pipline: '',
workerTag: ['worker'],
caps: [],
params: {
smoke_sleep_m: 5,
smoke_continue_s: 3,
call_sleep_m: 5,
call_continue_s: 3,
pay_sleep_m: 5,
pay_continue_s: 3,
oilin_sleep_m: 5,
oilin_continue_s: 1,
stop_step_s: 60,
stop_continue_m: 30,
sameCarThreshold: 5,
smog_sleep_m: 5,
smog_continue_s: 3,
fire_sleep_m: 5,
fire_continue_s: 3,
lossScore: 40, //没检测到物体的惩罚分数
},
};
}
// console.log(this.hostData);
//如果保存过安信的配置文件 //如果保存过安信的配置文件
if ( if (
this.hostData.configFiles && this.hostData.configFiles &&
@ -1626,9 +1677,14 @@ rule_threshold:
} else { } else {
let server; let server;
let obs; let obs;
console.log('location.origin', location.origin);
if (location.origin.indexOf('121') !== -1) { if (location.origin.indexOf('121') !== -1) {
if (location.origin.indexOf('8225') !== -1) {
obs = 'http://121.36.37.70:8226';
} else {
obs = 'http://121.36.37.70:8906';
}
server = 'http://121.36.37.70:8208'; server = 'http://121.36.37.70:8208';
obs = 'http://121.36.37.70:8906';
} else { } else {
server = 'http://10.156.134.53:8208'; server = 'http://10.156.134.53:8208';
obs = 'https://znaq.sinochemoilmarketing.com'; obs = 'https://znaq.sinochemoilmarketing.com';
@ -1641,13 +1697,15 @@ rule_threshold:
if (item.isEnabled) { if (item.isEnabled) {
let type = null; let type = null;
item.type === 0 item.type === 0
? (type = 2) ? (type = 2)//进出口
: item.type === 1 : item.type === 1
? (type = 1) ? (type = 1)//加油区
: item.type === 2 : item.type === 2
? (type = 0) ? (type = 0)//卸油区
: item.type === 3 : item.type === 3
? (type = 4) ? (type = 4)//收银区
: item.type === 4
? (type = 5)//办公区
: null; : null;
let areas = []; let areas = [];

8
src/app/system-management/image-label-anxin/image-label-anxin.component.ts

@ -1,5 +1,6 @@
import { HttpClient, HttpErrorResponse } from '@angular/common/http'; import { HttpClient, HttpErrorResponse } from '@angular/common/http';
import { Component, Input, OnInit } from '@angular/core'; import { Component, Input, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { NzMessageService } from 'ng-zorro-antd/message'; import { NzMessageService } from 'ng-zorro-antd/message';
import { NzModalService } from 'ng-zorro-antd/modal'; import { NzModalService } from 'ng-zorro-antd/modal';
@ -12,7 +13,8 @@ export class ImageLabelAnxinComponent implements OnInit {
constructor( constructor(
private http: HttpClient, private http: HttpClient,
private message: NzMessageService, private message: NzMessageService,
private modal: NzModalService private modal: NzModalService,
private route: ActivatedRoute
) {} ) {}
@Input() cameraId: any; //传递id @Input() cameraId: any; //传递id
@ -297,7 +299,7 @@ export class ImageLabelAnxinComponent implements OnInit {
IsDragging: false, //是否可拖拽 IsDragging: false, //是否可拖拽
IsInOut: false, //是否在绘制区域内 IsInOut: false, //是否在绘制区域内
Color: 'purple', Color: 'purple',
} },
}; };
//绘制多边形的方法 //绘制多边形的方法
@ -507,6 +509,8 @@ export class ImageLabelAnxinComponent implements OnInit {
console.log(this.camerasData.dimensionedPointsAnxin); console.log(this.camerasData.dimensionedPointsAnxin);
console.log('标点数据', this.PolygonData); console.log('标点数据', this.PolygonData);
// console.log(999, this.route.snapshot.queryParams.type);
// return;
for (const key in this.PolygonData) { for (const key in this.PolygonData) {
const element = this.PolygonData[key]; const element = this.PolygonData[key];
if (element.Points.length !== 0 && element.Points.length <= 2) { if (element.Points.length !== 0 && element.Points.length <= 2) {

Loading…
Cancel
Save