Robots and other complex machines are usually equipped with a wide variety of sensors. Often, when performing tasks such as driving autonomously or collecting data for offline processing, it is useful to synchronize the different sensors. For example, in my work with 3D Machine Learning, I had to collect a dataset consisting of LiDAR pointContinue reading “Synchronizing LiDAR and Camera Data for Offline Processing Using ROS”
Tag Archives: machine learning
3D Object Detection with Open3D-ML and PyTorch Backend
In previous articles, I described how I used Open3D-ML to do Semantic Segmentation on the SemanticKITTI dataset and on my own dataset. Now it is time to move to another important aspect of the Perception Stack for Autonomous Vehicles and Robots, which is Object Detection from Point Clouds. Make sure to install Open3D-ML with PyTorchContinue reading “3D Object Detection with Open3D-ML and PyTorch Backend”
Semantic Segmentation with Open3D-ML, PyTorch Backend, and a Custom Dataset
Note: Instructions to download, run, and troubleshoot the code introduced in this article are provided at the end. As part of my experimentation with Open3D-ML for Point Clouds, I wrote articles explaining how to install this library with Tensorflow and PyTorch support. To test the installation, I explained how to run a simple Python script to visualize a labeledContinue reading “Semantic Segmentation with Open3D-ML, PyTorch Backend, and a Custom Dataset”
Installing Open3D-ML for 3D Computer Vision with PyTorch
In a previous post, I introduced my reasons to test Open3D-ML and the steps to install it with TensorFlow as the backend. In this post, I go over the steps to install the same library with PyTorch as the backend. Many of the steps are similar but there are some important differences. I hope thisContinue reading “Installing Open3D-ML for 3D Computer Vision with PyTorch”
Testing Open3D-ML for 3D Object Detection and Segmentation
When starting out new research, my approach is usually to test different related things until enough experience allows me to begin connecting the dots. Before I could start building custom models for 3D object detection, I acquired a LiDAR and played around with some data. One next obvious step was to find out how the research worldContinue reading “Testing Open3D-ML for 3D Object Detection and Segmentation”
Normalizing (Feature Scaling) Point Clouds for Machine Learning
Continuing my work on Machine Learning with point clouds in the realm of autonomous robots, and coming from working with image data, I was faced with the following question: does 3D data need normalization like image data does? The answer is a clear YES (duh!). Normalization, or feature scaling, is an important preprocessing step for many machineContinue reading “Normalizing (Feature Scaling) Point Clouds for Machine Learning”
Simplifying Point Cloud Labeling with Contextual Images and Point Cloud Filtering
Annotating point clouds from multi-line 360° LiDAR is exceedingly difficult. Providing context in the form of camera frames and limiting the point cloud to the Field Of View (FOV) of the camera simplifies things. To achieve this, we first had to replace our old, and not so stable LiDAR mount, with a sturdier one capableContinue reading “Simplifying Point Cloud Labeling with Contextual Images and Point Cloud Filtering”
Demonstrating SEDRAD, The Self Driving Ads Robot at AppWorks.
On Saturday, May 14, 2022, we demonstrated SEDRAD at the AppWorks offices in Taipei, Taiwan. The goal was to get approval to use the robot during their upcoming Demo Day #24. The demonstration was a big success and SEDRAD is set to navigate autonomously while showing information about the participating startups in the event. AppWorksContinue reading “Demonstrating SEDRAD, The Self Driving Ads Robot at AppWorks.”
Testing 3D Annotation Tools
Before you can train a supervised Deep Learning model, you must first label your data. Today I am testing Intel OpenVINO’s CVAT and MATLAB’s Lidar Labeler annotation tools for 3D data. First impressions, CVAT makes it easier to navigate the point cloud, but a small bug makes it hard to place the initial cuboid, makingContinue reading “Testing 3D Annotation Tools”