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
I am trying to take the pislam descriptors and convert them into the cv::Mat based descriptors that are used in the ORB SLAM code.
So basically this, std::vector<uint32_t> descriptors;
needs to map onto this:
_descriptors.create(keypoints.size(), 32, CV_8U); // _descriptors is OutputArray/Mat
I'm having a hard time understanding how that should work.
Do you have any advice?
EDIT: Will this need to involve bit shifting somehow?
Cheers
Fred
The text was updated successfully, but these errors were encountered:
Hi again!
I am trying to take the pislam descriptors and convert them into the cv::Mat based descriptors that are used in the ORB SLAM code.
So basically this,
std::vector<uint32_t> descriptors;
needs to map onto this:
_descriptors.create(keypoints.size(), 32, CV_8U); // _descriptors is OutputArray/Mat
I'm having a hard time understanding how that should work.
Do you have any advice?
EDIT: Will this need to involve bit shifting somehow?
Cheers
Fred
The text was updated successfully, but these errors were encountered: