You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(memcpy): need ascontiguousarray before memcpy. So add init file to do so.
* add more data in README
* support python=3.13 also
* rename default branch to main.
* update HiMo link where I develop this package from this project.
* same api still to align previous fn etc.
linefit is a ground segmentation algorithm for 3D point clouds. This repo we setup a python binding for the original C++ code and push to pypi for easy installation through `pip install linefit`.
8
+
linefit is a ground segmentation algorithm for 3D point clouds.
9
+
This repo we setup a python binding for the original C++ code and push to pypi for easy installation through `pip install linefit`.
9
10
10
11
Author: C++ code from [Lorenz Wellhausen](https://github.com/lorenwel), python package from [Qingwen Zhang](https://kin-zhang.github.io/).
11
12
@@ -15,6 +16,7 @@ Available in: <a href="https://github.com/Kin-Zhang/linefit"><img src="https://i
15
16
16
17
<!---->
17
18
📜 Change Log:
19
+
- 2025-04-18: Add `__init__.py` to the package with `ascontiguousarray` to avoid unexpected point error reading, add package to the latest python (3.13) also. Rename the default branch to `main`.
18
20
- 2024-07-03: Speed up nanobind `np.array` <-> `std::vector<Eigen:: Vector3d>` conversion and also `NOMINSIZE` in make. Speed difference: 0.1s -> 0.01s. Based on [discussion here](https://github.com/wjakob/nanobind/discussions/426).
Copy file name to clipboardExpand all lines: assets/README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,14 @@ Assets
3
3
4
4
## Data
5
5
6
+
7
+
8
+
### PCD/npy Format
6
9
The data is generated by [DynamicMap Benchmark](https://github.com/KTH-RPL/DynamicMap_Benchmark).
7
10
8
-
Detail code could be find in [scripts/py/data](https://github.com/KTH-RPL/DynamicMap_Benchmark/blob/master/scripts/py/data).
9
-
Although the original is save to pcd. While, adding `np.save` to save the data as `.npy` file.
11
+
Detail code could be found in [scripts/py/data](https://github.com/KTH-RPL/DynamicMap_Benchmark/blob/master/scripts/py/data).
12
+
Although the original is saved to pcd. While, adding `np.save` to save the data as `.npy` file.
13
+
14
+
15
+
### H5 Format
16
+
The sequence data can be generated by [OpenSceneFlow](https://github.com/KTH-RPL/OpenSceneFlow). Check more detail on [here](https://github.com/KTH-RPL/OpenSceneFlow/blob/main/dataprocess/README.md#process).
0 commit comments