Urban_PointCloud_Processing icon indicating copy to clipboard operation
Urban_PointCloud_Processing copied to clipboard

Repository for automatic classification and labeling of Urban PointClouds using data fusion and region growing techniques.

Results 8 Urban_PointCloud_Processing issues
Sort by recently updated
recently updated
newest added

https://github.com/Amsterdam-AI-Team/Urban_PointCloud_Processing/blob/6f94faece4a0d81669b22f492be761e3eb34332b/src/upcp/fusion/pole_fuser.py#L207-L208 This should be: ``` clusters = self._find_point_cluster( points, c_prime, ground_z + seed_height, max_r=max_r) ``` where `ground_z` should probably be a summary / average around the target object.

bug

There is a bug in the AHNFuser for ground that sometimes causes large parts of ground to be unlabelled. If you notice this happening, for now it can be prevented...

bug

HI, teacher, I am a beginner of python and segmentation. I was wondering how did you define a road using elevation, like region growing? Here is the function I was...

![1685357337064](https://github.com/Amsterdam-AI-Team/Urban_PointCloud_Processing/assets/88390612/e1086854-a127-41ab-a271-48e13b40ac9c)

This is due to the fact that a subset of points is queried for AHN interpolation, while the interpolator expects the full set for caching purposes. A temporary fix is...

bug

- Store all geodata as .gpkg instead of .csv. - Modify all code to work with this data directly. - Will save a whole bunch of conversions between csv, arrays,...

enhancement

Interpolating the full AHN ground estimate tiles to fill missing data would potentially solve some issues. Considerations: - This is always an approximation. - This will fail for bridges. -...

enhancement

Bridges are a special class in AHN data, and as such are not seen as ground. This causes them to not be labelled in the point cloud. We should find...

enhancement