Object detection and tracking using lidar point cloud data

5 Ansichten (letzte 30 Tage)
Pavan Kumar B N
Pavan Kumar B N am 31 Mai 2021
Beantwortet: Manish am 26 Nov. 2024 um 6:40
Hello All,
I am working on object detection and tracking using veloyne lidar point cloud data (PCAP) without using Deep learning. I am a beginner, please guide me how to start with.
Thanks in advance

Antworten (1)

Manish
Manish am 26 Nov. 2024 um 6:40
Hi Pavan,
I understand that you want to detect and track the lidar point clouds without using deep learning, you can follow these steps:
  1. Preprocess Your Point Cloud: Begin by preprocessing your point cloud data according to your specific use case. You can use functions such as pcorganize or pcfitplane to organize the data or fit planes, respectively.
  2. Segment the Point Cloud: Utilize the pcsegdist function to segment the point cloud into clusters. This function groups the points based on Euclidean distance.
  3. Extract Desired Clusters: Once the segmentation is complete, extract the clusters that are relevant to your application from the output of pcsegdist.
  4. Object Detection: Pass the extracted clusters to the ‘objectDetection’ constructor.
  5. Track Objects: Use the trackerJPDA (Joint Probabilistic Data Association) to track the detected objects.
Here is the example which follows the above workflow:
Refer to the Links below for better understanding:
Hope this helps!

Kategorien

Mehr zu Labeling, Segmentation, and Detection finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by