We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
非常感谢作者的工作,我最近也想将orb的mathcing和feature extractor部分抽象出来,但是不知道怎么做。之前看到有些是通过pytorch自带的TORCH_LIBRARY,通过添加binding文件完成python和c++的数据交互,但是我发现对于orbfeature和matcher是有opencv的第三方库,因此没办法直接加载调用?想问下作者1. 这种思路是否可行? 2. 这份代码可以在外部配置orb feature提取的维度个数和层数吗?非常感谢!
The text was updated successfully, but these errors were encountered:
其实我是做工程的不是搞算法的,这些我也一知半解
这种思路是否可行?
大多数特征提取算法好像都非常依赖OpenCV来做一些底层运算,不依赖OpenCV直接用是不太可能的。但是你可以参考我的编译方法把OpenCV直接静态编译进去,或者在系统里面装好opencv-devel之类的东西做动态链接,这样还是可以用的
opencv-devel
这份代码可以在外部配置orb feature提取的维度个数和层数吗?
支持的参数是这些:
python-orb-slam3/python_orb_slam3/__init__.py
Lines 10 to 19 in 6aaec55
Sorry, something went wrong.
No branches or pull requests
非常感谢作者的工作,我最近也想将orb的mathcing和feature extractor部分抽象出来,但是不知道怎么做。之前看到有些是通过pytorch自带的TORCH_LIBRARY,通过添加binding文件完成python和c++的数据交互,但是我发现对于orbfeature和matcher是有opencv的第三方库,因此没办法直接加载调用?想问下作者1. 这种思路是否可行? 2. 这份代码可以在外部配置orb feature提取的维度个数和层数吗?非常感谢!
The text was updated successfully, but these errors were encountered: