- Library: OpenCV 4.1
- Language: C++
- Plateform: Mac
- Created a pipiline for
segmentation
andclustering
of the real timePCD
data. - Real time
PCD
data is streamed to the pipeline. - Data is downsampled using
Voxel-Grid
. - Implemented
Ransac Algorithm
for segmentation of road from obstacles. - Implemented
Euclidean Clustering Algorithm
usingKD-Tree
for clusteration of the obstacles.
This is how the results looks like:
- Implemented
Keypoint Detection
,Description Extraction
andKeypoints Matching
algorithms. - First
keypoints
are located in the images. - Using these keypoints their
descriptors
are extracted. - Same keypoints are
matched
using theirdescriptors
in different images.
Following is a detailed analysis of algorithms used for keypoints detection, descriptor extraction and keypoints matching.