Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

3D template matching by opencv

I have a 3D matrix (very large, let call it L) and a 3D small one (very small, let call it S) and want to use OpenCV to find the closest pattern in L.

Does OpenCV do it for me? If yes, how I should use it? Thanks.

like image 979
Nicole Avatar asked Aug 01 '12 19:08

Nicole


1 Answers

What you need is the Point Cloud Library, which is an open source library to work with 3D data. I can tell you from my experience, that learning to use this library is very similar to learning OpenCV because many developers work for Willow Garage, the main sponsor of OpenCV.

If you go to the PCL tutorials you will find three useful sections to solve your problem:

1) finding features in your 3D point cloud, that you can later use for matching

2) 3D object recognition based on correspondence grouping

3) Point cloud registration using methods like iterative closest point, and feature matching

like image 109
Jaime Ivan Cervantes Avatar answered Sep 24 '22 01:09

Jaime Ivan Cervantes