Entrance and Departure Detection Base on BLE Beacon RSSI - Filtering and Shaving

本文介绍了一种利用蓝牙低功耗(BLE)信标进行准确的区域进入与离开检测的方法。该方法通过低通滤波去除RSSI信号中的高频噪声,并设定阈值来识别设备是否处于目标区域内,最后通过时间窗口削峰填谷进一步提高检测精度。

The code related to this blog can be found here.
The original blog can be found here.

Backgrounds

When iBeacon is put forward by Apple in 2014 for the first time, it was designed to detect the time that a device enters and leaves a region. According to the documentation, RSSI (Received Signal Strength Indication) is used in the monitoring and ranging. However, no more details are provided for the detection mechanism. Since RSSI is influenced by many factors and suffers from strong fluctuation, simply reporting entrance and departure when receiving/not receiving RSSI value is not reliable.

In this blog, we basically discuss how to detect the entrance and departure of a device for a specific region indicated by a BLE beacon accurately. Note that the methods provided here is platform independent since the methods are based on raw RSSI data from the system level. Hence both iOS and Android system can utilize the methods. Also note that the methods here are aimed for offline analysis but not real-time detection. However, I believe that the basic ideas can be applied for real-time detection with minor modification.

Actually, BLE Beacon has been used in indoor localization in recent years (A review can be found here). Although localization sounds to be a more advanced technology, entrance detection is also of great importance in real world applications. The store want to know how much time the customer stayed around different types of goods. The food delivery company want to know when the rider arrives and leaves the restaurant. Moreover, localizations often calls for a very condensed beacon hardware deployment, while entrance detection can be accomplished with a single beacon hardware. Topics on beacon based localization will be discussed in the future blogs.

Real World Examples

Now we consider some real world examples where three beacons are placed at three shops, let’s say, Shop 1, Shop 2 and Shop 3, where Shop 1 and Shop 2 are quite close. A man with a device is walking from left to right and stay at each shop for a while, we need to decide when the man has come into each region. Also note that some appropriate APPs must be installed beforehand to recognize the beacons.

Simple Case Shop 3

As we can see in the above figure, to tell the entrance and departure time of Shop 3 will be a relatively simple task. The blue line in the upper subplot is the RSSI value of Shop 3 Beacon during the whole process. The red curve in the lower subplot is the 1/0 index that indicated by the man himself whether he think himself as “in” or “not in” the Shop 3. The first observation is that even when the man was in Shop 1 and Shop 2, his cellphone can sense a weak beacon signal because Shop 3 is only tens of meters away from other two shops, but blocked by the walls. However, we can see a clear peak in the RSSI corresponding to the real entrance and departure. We can try to detect the peak and find the entrance time and departure time.

Tough Case Shop 1

In comparison, the detection of Shop 1 will be a tough case since Shop 1 and 2 are quite close. Actually, even at the end of this blog, we might be unable to provide a very accurate method to distinguish the man’s stay in Ship 1 and 2 if the two beacons are very close (say, within 10m). However, in many practical problems, we do not need to differentiate this case at this level. (This problem might be solved by utilizing the signal from Beacon 1,2 and 3 at the same time, but this will become a localization problem). In this blog, the challenge we want to solve is to remove the influence of fast-fading and give consistent conclusions. The noise introduced by fast-fading might not be evident in the above case, but will be a problem in some practical cases if the man wandering between three shops.

Extreme Case Wandering

In this case, the man walks from Shop 1 to Shop 3 and then back to Shop 2 and stay at each Shop for a while. There are peaks and zeros due to fast fading noise. Before we decide the entrance and departure time based on the RSSI value, we need first smooth the data. In this step, a low pass filter will be used.

Low Pass Filters

In order to remove the high frequency noise from the RSSI data, we need to use a low pass filter process the data. When designing a low pass filter, we need to decide two parameters: cutoff frequency and the order. The cutoff frequency decides at which frequency you want to keep the lower frequency and throw away the higher frequency. The order decides how much attenuation you want for the higher frequency signal. Thanks to the variety of python libraries, we do not need to design the filter from scratch. SciPy provides some useful python filter functions here. A simple but useful introduction on how to build a digital filter in python can be found here.

RSSI Filtering

As we can see from the above figure, filtering the data can let us focus on the main trend of the data instead of being distracted by the noise.

In-Region Recognition

After getting a smooth RSSI data, we can conduct the in-region recognition by simply setting a threshold. The value of the threhold depends on the size of the region we want to monitor with the beacon. A higher threshold value will lead to a small but more accurate region. A lower threshold will lead to a larger but inaccurate region. By setting the threshold at -90dB, we can come the in-region recognition result as the following figure.

In Region Recognition

Window Shaving

After getting the initial in-region recognition results as the above figure, sometimes it’s still weired due to some small peaks or narrow gaps. We can use shave these peaks and gaps by introducing the following rules:
- A peak (recognized ones) will treated as zeros if it lasts less than a threshold value.
- A gap (recognized zeros) will be treated as ones if it lasts less than a threhold value.

The underlying mechanism is that if we lost the signal from a man for a very short time, we think he is still there. If we detect the signal but it soon disapper, we think he never comes. By do this, we can ignore the disturbance if a man passing by the region for a very short time. The above in-region results can be further process if we set the threshold at 20 seconds.

Window Shaving

From this figure we can learn very clearly when the device entered and left the region. Actually, the data before shaving can also provide many information such as the operation condition of the beacon hardware. This raw data can be used by the risk management section.

Summary

In summary, if we want to do the in-region recognition from the BLE beacon RSSI data, we can following the four steps:
- Step 1: Filter the RSSI signal with a low pass filter
- Step 2: Conduct the initial in-region by setting a threshold value.
- Step 3: Shave the result acoording to the time.

Based on the above three steps, we can conduction the detection for the above extreme case as follows:

Extreme Case Detection

代码转载自:https://pan.quark.cn/s/8ce4326d996e 对于在 CentOS 7 系统中修改网卡配置文件后无法使设置生效的情况,经过实践验证,可以通过使用 nmcli 命令来进行调整。完成修改之后,需要重新启动虚拟机以使更改生效,这样操作流程即告完成。如果设置仍然无法生效,则表明虚拟机在启动过程中所获取的 IP 地址配置并非针对 eth0,此时可以对其它网卡的配置文件进行修改或将其移除。在 CentOS 7 系统中,网络配置的管理机制与早期版本存在差异,主要体现为采用了 Network Manager 服务来负责网络接口的管理。在某些情形下,尽管修改了 `/etc/sysconfig/network-scripts` 目录下的 `ifcfg-eth0` 文件,但网络配置却未能即时生效。此类问题的发生通常源于 CentOS 7 采用了不同于以往的配置读取方法。接下来将具体阐述如何借助 nmcli 命令来处理这一挑战。 以 root 用户身份登录系统并打开终端界面。nmcli 是 Network Manager 提供的命令行界面工具,它支持在命令行环境下执行网络连接的建立、编辑、查询及管理任务。针对修改 eth0 网卡配置的需求,可以遵循以下步骤进行操作: 1. 导航至 `/etc/sysconfig/network-scripts` 目录: ``` cd /etc/sysconfig/network-scripts ``` 2. 检查该目录内是否存在 `ifcfg-eth0.bak` 文件,该备份文件可能是先前调整配置时遗留下来的,若存在可能造成冲突。若发现该文件,可以选择将其删除: ``` [root@localhost netw...
代码转载自:https://pan.quark.cn/s/46fd08fb879c 网管教程 从入门到精通软件篇 ★一。★详尽的xp修复控制台指令及其应用!!! 放入xp(2000)的光盘,安装时选择R,执行修复! Windows XP(涵盖 Windows 2000)的控制台指令是在系统遭遇某些意外状况时的一种极具效用的诊断、检测以及恢复系统功能的工具。笔者确实一直期望能够将这方面的指令进行归纳,此次由老范辛苦整理了这份极具价值的秘籍。 Bootcfg bootcfg 命令用于启动配置与故障恢复(对大多数计算机而言,即 boot.ini 文件)。 带有特定参数的 bootcfg 命令仅在运用故障恢复控制台时方可使用。能够在命令行界面下运用带有不同参数的 bootcfg 命令。 用法: bootcfg /default 设定默认引导选项。 bootcfg /add 向引导清单中增添 Windows 安装。 bootcfg /rebuild 重复整个 Windows 安装流程并让用户选择需添加的项目。 注意:运用 bootcfg /rebuild 之前,应先借助 bootcfg /copy 命令备份 boot.ini 文件。 bootcfg /scan 探查用于 Windows 安装的全部磁盘并展示结果。 注意:这些结果被静态存储,并用于当前会话。若在当前会话期间磁盘配置发生变动,为获取更新的探查结果,必须先重启计算机,然后再次探查磁盘。 bootcfg /list 列示引导清单中已有的项目。 bootcfg /disableredirect 在启动引导程序中禁用重定向。 bootcfg /redirect [ PortBaudRrate] |[ useBio...
代码下载链接: https://pan.quark.cn/s/fc524f791b68 AA制程,即Active Alignment,被理解为主动对准,是一种用于确定零部件装配中相对位置的方法。在摄像头封装阶段,涉及图像传感器、镜座、马达、镜头、线路板等多个部件的重复组装,而传统的封装设备如CSP及COB等,均是依据设备设定的参数进行零部件的移动装配,因而零部件的叠加误差会逐渐增大,最终在摄像头上表现为拍照最清晰的位置可能偏离画面中心、四边清晰度不均等现象。伴随智能手机和其他高端电子产品的普及,摄像头模组的性能正日益受到重视。高分辨率、卓越的低光表现以及稳定视频输出是现代用户所期望的。在摄像头模组的制造环节,各部件的精准定位对成像质量具有决定性作用。因此,一种名为“AA制程”(Active Alignment)的前沿技术被开发出来,成为摄像头精密对准的核心技术。 AA制程,即Active Alignment,是一种在摄像头封装过程中应用的主动对准方法。该方法在多个组件装配阶段发挥作用,涵盖图像传感器、镜座、马达、镜头和线路板等部件。传统的封装方式,例如CSP(Chip Scale Package)和COB(Chip On Board),依赖于设备预设的参数进行组装,但随着组件数量的增加,误差也会累积,最终影响摄像头的表现。例如在成像质量上可能出现中心位置偏移、四角清晰度不一致等问题。 AA制程技术的核心在于实时监测与主动调整。在组装过程中,它借助先进的检测设备持续监控半成品的状态,并根据实时信息对组装部件进行精确修正,从而显著降低装配误差。通过这种技术,能够确保摄像头模组中各组件的相对位置准确无误,从而使得最终的成像效果更加稳定,特别是在中心区域和四角的清晰度上...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值