Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获得从设备的接近传感器到活体的精确距离。
我唯一得到的是“0.0” - 用于近距离,“8.0”/“7.0”(因设备而异) - 用于远距离。
这就是我用来获取距离的方式:
@Override public final void onSensorChanged(SensorEvent event) { final float distanceX = event.values[0]; }
有没有办法获得精确的距离?
提前致谢!
位置传感器指南对接近传感器进行了以下说明:
大多数接近传感器返回绝对距离,以厘米为单位,但有些只返回近距和远距值。
所以精度取决于设备。