电子围栏可视化,提高安全运维效率 原创

ThingJS数字孪生引擎
发布于 2021-8-19 13:40
浏览
0收藏

现代工业化的推进在极大加速现代化进程的同时也带来的相应的安全隐患,在传统的监控领域,一般都是基于Web前端技术来实现 2D 可视化监控,本文采用ThingJS来构造轻量化的 3D 可视化场景,该3D场景展示了一个现代化商场的数字孪生可视化场景,包括人员的实时位置、电子围栏的范围、现场的安全情况等等,帮助直观的了解当前人员的安全状况。
电子围栏又称周界防盗报警系统,监控防区工作状态,实景中的电子围栏系统用于农业、畜牧业,以及监狱、军事设施等安全敏感地区。ThingJS平台上,电子围栏指的是一个区域,使用PolygonRegion属性。创建物体对象或模型并开启移动功能,即可开始检测目标点是否进入电子围栏区域,判断true或false显示告警反应。
电子围栏可视化,提高安全运维效率-鸿蒙开发者社区
本篇文章通过对数字孪生可视化场景的搭建和模型的加载,人物实时定位代码的实现、电子围栏和轨迹图的实现进行阐述,了解如何通过使用ThingJS实现一个简单的3D电子围栏可视化。

// 添加电子围栏
 new THING.widget.Button('添加电子围栏', function() {
 // 构成多边形的点(取世界坐标系下的坐标)
 points = [
 [81, 0.5, 63],
 [81, 0.5, 52],
 [72, 0.5, 52],
 [72, 0.5, 63]
 ];
 if (polygonMarker) { return; }
 // 创建电子围栏(区域)
 polygonMarker = app.create({
 type: 'PolygonRegion',
 points: points, // 传入世界坐标系下点坐标
 style: {
 regionOpacity: .6,
 regionColor: '#3CF9DF', // 区域颜色
 lineColor: '#3CF9DF' // 线框颜色
 }
 });
 // 设置永远在最上层显示
 polygonMarker.style.alwaysOnTop = false;
 })
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.

电子围栏可视化,提高安全运维效率-鸿蒙开发者社区
当人物或物体对象出发警报时,有2种方式提醒注意,一是踏足的禁区围栏颜色发生改变;二是展示面板显示报警信息,可视化监控目标点的移动范围。
完整代码如下:

// 添加图片标注
 new THING.widget.Button('添加图片标注', function() {
 var coord = [83, 0.5, 61];
 if (marker1) { return; }
 // 创建目标点(marker)
 marker1 = app.create({
 type: "Marker",
 id: "marker1",
 url: "/guide/examples/images/navigation/user.png",
 position: coord,
 size: 1
 })
 })
 
 var point = [
 [81, 63],
 [81, 52],
 [72, 52],
 [72, 63]
 ];
 // 移动图片标注
 new THING.widget.Button('移动图片标注', function() {
 var markerEndPoint = [68, 0.5, 55];
 if (marker1 != null) {
 var moveState = marker1.getAttribute('moveState');
 if (moveState == 'complete') {
 marker1.off('update', null, '监控图片标注');
 return;
 }
 // 目标点移动
 marker1.moveTo({
 position: markerEndPoint, // 移动到终点位置
 time: 2 * 1000,
 orientToPath: true, // 沿路径方向
 complete: function(ev) {
 marker1.off('update', null, '监控图片标注');
 $('.warninfo1').css('display', 'none');
 $('.warninfo2').css('display', 'block');
 $('.warninfo3').css('display', 'none');
 marker1.setAttribute('moveState', 'complete');
 }
 })
 }
 if (points != null) {
 // 监控图片标注是否进入电子围栏区域
 if (marker1 != null) {
 marker1.on('update', function() {
 if (polygonMarker != null) {
 var intoPolygonMarker = isInPolygon([marker1.position[0], marker1.position[2]], point);
 if (intoPolygonMarker) {
 polygonMarker.regionColor = '#a94442';
 polygonMarker.lineColor = '#a94442'
 $('.warninfo1').css('display', 'block');
 $('.warninfo2').css('display', 'none');
 $('.warninfo3').css('display', 'none');
 } else {
 polygonMarker.regionColor = '#3CF9DF';
 polygonMarker.lineColor = '#3CF9DF'
 $('.warninfo1').css('display', 'none');
 $('.warninfo2').css('display', 'none');
 $('.warninfo3').css('display', 'block');
 }
 }
 }, '监控图片标注')
 }
 }
 })
 
 // 添加模型标注
 new THING.widget.Button('添加模型标注', function() {
 //创建目标点(Obj)
 people = app.query('#worker')[0];
 people.position = [83, 0.1, 56];
 people.visible = true;
 people.scale = [1.5, 1.5, 1.5];
 })
 
 // 移动模型标注
 new THING.widget.Button('移动模型标注', function() {
 var objEndPoint = [70, 0.1, 60];
 if (people != null) {
 var moveState = people.getAttribute('moveState');
 if (moveState == 'complete') {
 people.off('update', null, '监控图片标注');
 return;
 }
 // 播放模型动画
 people.playAnimation({
 name: '走',
 speed: 1,
 loopType: THING.LoopType.Repeat,
 });
 // 模型移动
 people.moveTo({
 position: objEndPoint, // 移动到终点位置
 orientToPath: true, // 沿路径方向
 time: 8 * 1000,
 complete: function(ev) {
 people.stopAnimation('走');
 people.off('update', null, '监控模型标注');
 $('.warninfo1').css('display', 'none');
 $('.warninfo2').css('display', 'block');
 $('.warninfo3').css('display', 'none');
  people.setAttribute('moveState', 'complete');
 }
 })
 }
 if (points != null) {
 // 监控模型标注是否进入电子围栏区域
 if (people != null) {
 people.on('update', function() {
 if (polygonMarker != null) {
 var intoPolygonMarker = isInPolygon([people.position[0], people.position[2]], point);
 if (intoPolygonMarker) {
 polygonMarker.regionColor = '#a94442';
 polygonMarker.lineColor = '#a94442'
 $('.warninfo1').css('display', 'block');
 $('.warninfo2').css('display', 'none');
 $('.warninfo3').css('display', 'none');
 } else {
 polygonMarker.regionColor = '#3CF9DF';
 polygonMarker.lineColor = '#3CF9DF'
 $('.warninfo1').css('display', 'none');
 $('.warninfo2').css('display', 'none');
 $('.warninfo3').css('display', 'block');
 }
 }
 }, '监控模型标注')
 }
 }
 })
 
 // 重置
 new THING.widget.Button('重置', function() {
 if (polygonMarker) {
 polygonMarker.destroy();
 polygonMarker = null;
 }
 if (marker1) {
 marker1.destroy();
 marker1 = null;
 }
 if (people) {
 people.visible = false;
 people.setAttribute('moveState', null);
 }
 $('.warninfo1').css('display', 'none');
 $('.warninfo1').css('display', 'none');
 $('.warninfo1').css('display', 'block');
 })
 
 createTip(); // 创建提示面板
});
 
/**
 * 创建提示面板
 */
 function createTip() {
 var html =
 `<div class="fencing" style="width:200px;position: absolute;top: 50px;left: 50%;transform: translateX(-50%);z-index: 999;">
 <div class="alert alert-danger warninfo1" role="alert" style="padding: 15px;margin-bottom: 20px;color: #a94442;background-color: #f2dede;border-color: #ebccd1;border-radius: 4px;display:none;">目标已进入围栏</div>
 <div class="alert alert-info warninfo2" role="alert" style="padding: 15px;margin-bottom: 20px;color: #31708f;background-color: #d9edf7;border-color: #bce8f1;border-radius: 4px;display:none;">到达目的地</div>
 <div class="alert alert-warning warninfo3" role="alert" style="padding: 15px;margin-bottom: 20px;color: #8a6d3b;background-color: #fcf8e3;border-color: #faebcc;border-radius: 4px;">目标未进入围栏</div>
 
 <div onclick="fenClose()" style="cursor: pointer;position: absolute;top: -7px;right: -8px;width: 16px;height: 16px;border-radius: 50%;background-color: #777777;border: 3px solid #ffffff;">
 <div style="position: absolute;width: 10px;height: 2px;background-color: #fff;transform: rotate(45deg);top: 7px;left: 3px;"></div>
 <div style="position: absolute;width: 10px;height: 2px;background-color: #fff;transform: rotate(-45deg);top: 7px;left: 3px;"></div>
 </div>
 </div>`;
 $('#div2d').append($(html));
}
 
/**
 * 关闭提示面板
 */
function fenClose() {
 $(".fencing").hide();
}
/**
 * 检测目标点是否进入电子围栏区域
 * @param {Array} checkPoint - 校验坐标
 * @param {Array} polygonPoints - 形成电子围栏的坐标
 * @returns {Boolean} true 或 false
 * @description 此方法仅判断处于同一个平面的目标点是否在区域内(只判断坐标x和z值),
 * 不考虑两者当前离地高度(坐标的y值)
 */
function isInPolygon(checkPoint, polygonPoints) {
 var counter = 0;
 var i;
 var xinters;
 var p1, p2;
 var pointCount = polygonPoints.length;
 p1 = polygonPoints[0];
 for (i = 1; i <= pointCount; i++) {
 p2 = polygonPoints[i % pointCount];
 if (checkPoint[0] > Math.min(p1[0], p2[0]) && checkPoint[0] <= Math.max(p1[0], p2[0])) {
 if (checkPoint[1] <= Math.max(p1[1], p2[1])) {
 if (p1[0] != p2[0]) {
 xinters = (checkPoint[0] - p1[0]) * (p2[1] - p1[1]) / (p2[0] - p1[0]) + p1[1];
 if (p1[1] == p2[1] || checkPoint[1] <= xinters) {
 counter++;
 }
 }
 }
 }
 p1 = p2;
 }
 if (counter % 2 == 0) {
 return false;
 } else {
 return true;
 }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.

©著作权归作者所有,如需转载,请注明出处,否则将追究法律责任
收藏
回复
举报
回复
    相关推荐