You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When working with the GASD global descriptor, a nearest neighbor search has to be performed in the descriptor space. However, using the current version of pcl::search::KdTree leads to compilation errors since KdTree has not been specialized for the GASD signatures.
Possible Solution
Add the GASD features to the point types which are used to specify KdTree during pre-compiling.
The text was updated successfully, but these errors were encountered:
Quick fix: include "impl" file for KdTree in your code.
But actually this is a bug. pcl::search::KdTree is instantiated for all point types listed in PCL_POINT_TYPES macro list. This list does not include GASD descriptors, although it should. You are welcome to send a patch adding them to the list. (Also update PCL_FEATURE_POINT_TYPES list for completeness.)
The GASD signatures are not available when using pcl::search::KdTree for nearest neighbor search.
Your Environment
Context
When working with the GASD global descriptor, a nearest neighbor search has to be performed in the descriptor space. However, using the current version of pcl::search::KdTree leads to compilation errors since KdTree has not been specialized for the GASD signatures.
Possible Solution
Add the GASD features to the point types which are used to specify KdTree during pre-compiling.
The text was updated successfully, but these errors were encountered: