|
|
|
@ -199,13 +199,13 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//绘制人,灭火器,隔离锥矩形
|
|
|
|
|
if ( |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.xxxROI && |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.xxxROI.length !== 0 |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.pecROI && |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.pecROI.length !== 0 |
|
|
|
|
) { |
|
|
|
|
this.xxxROIOblongPoints = |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.xxxROI; |
|
|
|
|
this.xxxROIDrawOblong( |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.xxxROI, |
|
|
|
|
this.pecROIOblongPoints = |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.pecROI; |
|
|
|
|
this.pecROIDrawOblong( |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.pecROI, |
|
|
|
|
context |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
@ -279,7 +279,7 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|
} else if (this.selectedBtn === '人') { |
|
|
|
|
if (this.xxxROIOblongPoints.length === 1) { |
|
|
|
|
if (this.pecROIOblongPoints.length === 1) { |
|
|
|
|
//限制数量
|
|
|
|
|
this.message.create('warning', '人,灭火器,隔离椎只允许绘制1个!'); |
|
|
|
|
return; |
|
|
|
@ -294,7 +294,7 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
var moveX = ev.pageX - canvas.offsetLeft; |
|
|
|
|
var moveY = ev.pageY - canvas.offsetTop; |
|
|
|
|
|
|
|
|
|
this.xxxROIDrawOblong(this.xxxROIOblongPoints, context); |
|
|
|
|
this.pecROIDrawOblong(this.pecROIOblongPoints, context); |
|
|
|
|
context.strokeStyle = 'black'; |
|
|
|
|
let element = this.getOblongInfo( |
|
|
|
|
this.downx, |
|
|
|
@ -343,7 +343,7 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
if ( |
|
|
|
|
this.markType === 2 && |
|
|
|
|
this.selectedBtn === '人' && |
|
|
|
|
this.xxxROIOblongPoints.length === 1 |
|
|
|
|
this.pecROIOblongPoints.length === 1 |
|
|
|
|
) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -358,8 +358,8 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
var upX = e.pageX - canvas.offsetLeft; |
|
|
|
|
var upY = e.pageY - canvas.offsetTop; |
|
|
|
|
let point = this.getOblongInfo(this.downx, this.downy, upX, upY); |
|
|
|
|
this.xxxROIOblongPoints.push(point); |
|
|
|
|
this.xxxROIDrawOblong(this.xxxROIOblongPoints, context); |
|
|
|
|
this.pecROIOblongPoints.push(point); |
|
|
|
|
this.pecROIDrawOblong(this.pecROIOblongPoints, context); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
@ -392,8 +392,8 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
//重绘人,灭火器,隔离椎
|
|
|
|
|
if (this.xxxROIOblongPoints && this.xxxROIOblongPoints.length != 0) { |
|
|
|
|
this.redrawRectangle(this.xxxROIOblongPoints, context, 'black'); |
|
|
|
|
if (this.pecROIOblongPoints && this.pecROIOblongPoints.length != 0) { |
|
|
|
|
this.redrawRectangle(this.pecROIOblongPoints, context, 'black'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
oblongList.forEach((element) => { |
|
|
|
@ -407,8 +407,8 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//人,灭火器,隔离椎矩形
|
|
|
|
|
xxxROIOblongPoints = []; //矩形的点的集合
|
|
|
|
|
xxxROIDrawOblong(oblongList, context) { |
|
|
|
|
pecROIOblongPoints = []; //矩形的点的集合
|
|
|
|
|
pecROIDrawOblong(oblongList, context) { |
|
|
|
|
context.clearRect(0, 0, this.canvasWidth, this.canvasHeight); |
|
|
|
|
this.copyCanvas ? context.putImageData(this.copyCanvas, 0, 0) : null; |
|
|
|
|
|
|
|
|
@ -531,8 +531,8 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
this.redrawRectangle(this.unloadingROIOblongPoints, context, 'orange'); |
|
|
|
|
} |
|
|
|
|
//重绘人,灭火器,隔离椎
|
|
|
|
|
if (this.xxxROIOblongPoints && this.xxxROIOblongPoints.length != 0) { |
|
|
|
|
this.redrawRectangle(this.xxxROIOblongPoints, context, 'black'); |
|
|
|
|
if (this.pecROIOblongPoints && this.pecROIOblongPoints.length != 0) { |
|
|
|
|
this.redrawRectangle(this.pecROIOblongPoints, context, 'black'); |
|
|
|
|
} |
|
|
|
|
//遍历数组画圆
|
|
|
|
|
var circle = { |
|
|
|
@ -630,8 +630,8 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
this.redrawRectangle(this.unloadingROIOblongPoints, context, 'orange'); |
|
|
|
|
} |
|
|
|
|
//重绘人,灭火器,隔离椎
|
|
|
|
|
if (this.xxxROIOblongPoints && this.xxxROIOblongPoints.length != 0) { |
|
|
|
|
this.redrawRectangle(this.xxxROIOblongPoints, context, 'black'); |
|
|
|
|
if (this.pecROIOblongPoints && this.pecROIOblongPoints.length != 0) { |
|
|
|
|
this.redrawRectangle(this.pecROIOblongPoints, context, 'black'); |
|
|
|
|
} |
|
|
|
|
//遍历数组画圆
|
|
|
|
|
var circle = { |
|
|
|
@ -861,7 +861,7 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
let canvas = document.getElementById('canvas') as any; |
|
|
|
|
let context = canvas.getContext('2d'); |
|
|
|
|
this.unloadingROIOblongPoints = []; //矩形的点的集合
|
|
|
|
|
this.xxxROIOblongPoints = []; //矩形的点的集合
|
|
|
|
|
this.pecROIOblongPoints = []; //矩形的点的集合
|
|
|
|
|
//停车区多边形
|
|
|
|
|
this.carStopROIPoints = []; //线段的点的集合
|
|
|
|
|
this.carStopROICircles = []; //可拖动圆圈的点的集合
|
|
|
|
@ -914,8 +914,8 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
this.unloadingROIOblongPoints = []; |
|
|
|
|
this.redrawAll(); |
|
|
|
|
} |
|
|
|
|
if (type === 'xxxROI') { |
|
|
|
|
this.xxxROIOblongPoints = []; |
|
|
|
|
if (type === 'pecROI') { |
|
|
|
|
this.pecROIOblongPoints = []; |
|
|
|
|
this.redrawAll(); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
@ -945,7 +945,7 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
this.redrawRectangle(this.unloadingROIOblongPoints, this.context, 'orange'); |
|
|
|
|
|
|
|
|
|
this.redrawRectangle(this.xxxROIOblongPoints, this.context, 'black'); |
|
|
|
|
this.redrawRectangle(this.pecROIOblongPoints, this.context, 'black'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//根据已有数据重绘多边形
|
|
|
|
@ -1002,7 +1002,7 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
cashierROI: [], |
|
|
|
|
unloadingROI: [], |
|
|
|
|
bulkoilROI: [], |
|
|
|
|
xxxROI: [], |
|
|
|
|
pecROI: [], |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
//进出口
|
|
|
|
@ -1040,8 +1040,8 @@ export class ImageLabelComponent implements OnInit {
|
|
|
|
|
this.intrusionROIPoints; |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.unloadingROI = |
|
|
|
|
this.unloadingROIOblongPoints; |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.xxxROI = |
|
|
|
|
this.xxxROIOblongPoints; |
|
|
|
|
this.camerasData.dimensionedPointsHuanghai.pecROI = |
|
|
|
|
this.pecROIOblongPoints; |
|
|
|
|
} |
|
|
|
|
//便利店
|
|
|
|
|
if (this.markType === 3) { |
|
|
|
|