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.
我正在寻找一个快速版本cv::resize(),我试图在 OpenCV 源代码中挖掘并找到该函数resizeNN,我假设它使用 ARM Neon .. 我试图测试它,但 dst Mat 根本没有数据,或者我是对这个功能感到困惑?它甚至不在文档中。
cv::resize()
resizeNN
有 cv::resize() [在大部分工作中调用 cv::reserve()],
在 modules/core/src/matrix.cpp ~ L 599
并且有 resizeNN( const Mat& src, Mat& dst, double fx, double fy )
在模块/核心/src/imagewarp.cpp ~ L 355
(它甚至不在 api 中,所以这可能是一个私有 impl 函数)
他们看起来完全独立于我,我想,你想要第一个。