gieseke / bufferkdtree

A Python library for large-scale nearest neigbhor computations via k-d trees and GPUs.
GNU General Public License v2.0
63 stars 19 forks source link

Using the KDTree OpenCL Code directly #2

Open soulslicer opened 8 years ago

soulslicer commented 8 years ago

Good day, I would like to use your KDTree OpenCL code in a c++ program. Can I get some direction on where to look at and begin?

gieseke commented 8 years ago

Hi,

the implementation is based on C and OpenCL. You can find the source code in the bufferkdtree/src directory. At the moment, the package is based on Python (along with the installation process). In principle, it should be fairly easy to include the code in a C++ program, but unfortunately, that's not yet supported out-of-the-box...

Let me know if you have further questions!

Best Fabian