Browse Source

[完善]保存配置文件

develop
邵佳豪 3 years ago
parent
commit
a552ec7a81
  1. 11
      src/app/system-management/host-config/host-config.component.html
  2. 43
      src/app/system-management/host-config/host-config.component.ts
  3. 5
      src/styles.scss

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

@ -25,10 +25,17 @@
<td>{{ item.password }}</td>
<td>{{ item.uri }}</td>
<td>{{ item.type | cameraType}}</td>
<td>标注情况</td>
<td>
<ng-container *ngIf="item.type == 1; else elseTemplate">
不需要标注
</ng-container>
<ng-template #elseTemplate>
{{item.dimensionedPoints ? '已标注' : '未标注'}}
</ng-template>
</td>
<td>
<span class="blue" style="margin-right: 12px;" (click)="editCamera(item)">编辑</span>
<span class="blue" style="margin-right: 12px;" (click)="label(item)">标注</span>
<span class="blue" style="margin-right: 12px;" [ngClass]="{'forbid': item.type == 1}" (click)="label(item)">标注</span>
<span class="red" (click)="deleteCamera(item)">删除</span>
</td>
</tr>

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

@ -14,7 +14,8 @@ interface Camera {
user: string;
password: string;
uri: string;
type: number
type: number;
dimensionedPoints: string
}
@Component({
@ -42,6 +43,9 @@ export class HostConfigComponent implements OnInit {
//摄像头
getCamera() {
this.http.get('/api/Cameras').subscribe((data: any) => {
data.items.forEach(element => {
element.dimensionedPointsObj = JSON.parse(element.dimensionedPoints)
});
this.listOfData = data.items
console.log('摄像头列表', data.items)
})
@ -134,7 +138,7 @@ export class HostConfigComponent implements OnInit {
}
label(item) {
this.router.navigate(['/system/host/camera/imageLabel'],{queryParams: {id : item.id}})
this.router.navigate(['/system/host/camera/imageLabel'], { queryParams: { id: item.id } })
}
connect() {
@ -190,6 +194,13 @@ inference_buffer_second: 10`
type: ${item.type}
`
if (item.type == 0) {
let str = ''
item.dimensionedPointsObj.polygon.forEach(element => {
str += element.x + ','
str += element.y + ','
});
str = str.substring(0, str.lastIndexOf(','))
console.log('进出口多边形', str)
config1 += `
## Per stream configuration
[roi-filtering-stream-${index}]
@ -197,18 +208,21 @@ inference_buffer_second: 10`
#enable or disable following feature
enable=1
#ROI to filter select objects, and remove from meta data
roi-RF=${index}
roi-RF=${str}
#remove objects in the ROI
inverse-roi=0
class-id=-1
`
}
if (item.type == 2 || item.type == 3) {
if ((item.type == 2 || item.type == 3) && item.dimensionedPointsObj) {
let arrowArr = item.dimensionedPointsObj.arrow
let str = arrowArr[0].startX + ',' + arrowArr[0].startY + ',' + arrowArr[0].endX + ',' + arrowArr[0].endY + ',' + arrowArr[1].startX + ',' + arrowArr[1].startY + ',' + arrowArr[1].endX + ',' + arrowArr[1].endY
console.log('十字箭头', str)
config1 += `
[line-crossing-stream-${index}]
enable=1
#Label;direction;lc
line-crossing-Entry=${index}
line-crossing-Entry=${str}
# line-crossing-Exit=789;672;1084;900;851;773;1203;732
class-id=0
#extended when 0- only counts crossing on the configured Line
@ -226,6 +240,17 @@ mode=strict
this.message.create('warning', '有且只能有一个卸油区!');
return
} else {
let xieyouguan = ''
let jingdian = ''
xieyouqu[0].dimensionedPointsObj.rectangle.forEach(element => {
if (element.oilUnloadingArea) {
xieyouguan = element.x + ',' + element.y + ',' + element.width + ',' + element.height
} else {
jingdian = element.x + ',' + element.y + ',' + element.width + ',' + element.height
}
});
console.log('泄油管区域', xieyouguan)
console.log('静电接地', jingdian)
config2 = `# The all in one config file.
# RTSP sources
# type
@ -316,9 +341,9 @@ connet:
apply_on: 2
roi:
- 'oil_tube-3':
- ${xieyouqu[0].xxx}
- [${xieyouguan}]
- 'grounder-3':
- ${xieyouqu[0].xxx}
- [${jingdian}]
interval: 1
batch_size: 2
@ -333,11 +358,11 @@ rule_threshold:
threshold_connecting: 0.667 #rolling mean confidence
threshold_identity: 0.1 #only to filter out people net error
`
}
}
sessionStorage.setItem('config1', config1)
sessionStorage.setItem('config2', config2)
sessionStorage.setItem('config3', config3)
sessionStorage.setItem('config4', config4)
console.log('config4', config4)
// console.log('config4', config4)
}
}

5
src/styles.scss

@ -126,4 +126,9 @@ app-root {
display: flex;
align-items: center;
justify-content: center;
}
.forbid{
color: gray;
pointer-events:none
}
Loading…
Cancel
Save