|
|
@@ -1,8 +1,8 @@
|
|
|
-# LakiBeam SDK - Linux C/Python Hybrid programming radar data interface
|
|
|
+# LakiBeam SDK - Linux C/Python Hybrid data interface for Richbeam Laki-Series lidars.
|
|
|
|
|
|
## Project profile
|
|
|
|
|
|
-LakiBeam SDK is a Linux-based cross-language (C/Python) radar data receiving and processing library designed for real-time radar data acquisition and processing.
|
|
|
+LakiBeam SDK is a Linux-based cross-language (C/Python) lidar data receiving and processing library designed for real-time lidar data acquisition and processing.
|
|
|
|
|
|
## Characteristics
|
|
|
|
|
|
@@ -24,21 +24,14 @@ LakiBeam SDK is a Linux-based cross-language (C/Python) radar data receiving and
|
|
|
|
|
|
## Dependency library
|
|
|
|
|
|
-- ctypes
|
|
|
- numpy
|
|
|
-- matplotlib
|
|
|
|
|
|
### Installing
|
|
|
|
|
|
-You can install ctypes、numpy and matplotlib using `pip`:
|
|
|
+You can install numpy using `pip`:
|
|
|
|
|
|
```sh
|
|
|
-$ pip install ctypes numpy matplotlib
|
|
|
-```
|
|
|
-
|
|
|
-Or for Python 3:
|
|
|
-```sh
|
|
|
-$ sudo pip3 install ctypes numpy matplotlib
|
|
|
+$ pip install numpy
|
|
|
```
|
|
|
|
|
|
## Compile and build
|
|
|
@@ -48,9 +41,9 @@ $ sudo pip3 install ctypes numpy matplotlib
|
|
|
The project provides makefiles to simplify the compilation and build process:
|
|
|
|
|
|
# Common command
|
|
|
-make # 编译C库
|
|
|
-make clean # 清理编译产生的文件
|
|
|
-python3 rblidar.py # 编译Python接口测试
|
|
|
+make # Compile .so Library.
|
|
|
+make clean # Clean build files.
|
|
|
+python3 rblidar.py # Test rblidar.py
|
|
|
|
|
|
## Troubleshooting
|
|
|
· Ensure all dependencies are installed
|