Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个对象识别系统。我发现我的算法的关键部分是
extractor.compute();
(有detector.detect()关键点之后)
detector.detect()
有没有办法让计算具有更多核心的特征向量?我最多可以使用8个核心。
Opencv 已经为此实现了多线程框架。检查您是否使用线程选项'ON'编译了opencv。你应该去阅读 opencv 文档,gpu::SURF_GPU你可能会感兴趣。
gpu::SURF_GPU
您可以再次运行 cmake 以查看您使用的编译选项。