3D ML

3D Point-Cloud Deep Learning

Applied LiDAR classification and benchmarking across deep-learning and classical models.

3D machine learning illustration

LiDAR classification is a strong example of where model architecture, preprocessing, and benchmarking all matter. In my recent work, I have benchmarked 3D point-cloud workflows using PointNet++, PointConv, and random forest baselines to understand tradeoffs between representation power, computational cost, and production practicality.

The framework summary from my current company work shows that PointConv is implemented as a TensorFlow-based semantic-segmentation architecture with hierarchical downsampling, learned density-aware kernels, and custom TensorFlow operations for sampling, neighborhood grouping, and interpolation. That kind of system is valuable for fine-grained point labeling when the workflow must preserve local geometric context.

At the same time, benchmarking matters. Deep models should be evaluated against strong classical baselines, feature-engineered workflows, and operational constraints such as preprocessing cost, inference time, and deployment complexity. My work in this area has focused not only on training models, but also on normalization, tiling, feature preparation, and robust evaluation across realistic LiDAR datasets.

This project page presents the public-facing view of that work: applied 3D ML grounded in practical benchmarking, scalable preprocessing, and real-world point-cloud classification needs.