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.
我正在研究 opencv sgbm(半全局块匹配)功能。这里使用了两个参数(minDisparity 和 numberOfDisparities)。那为什么numberOfDisparities值应该能被 16 整除?
可能是为了简化内部代码,它使用 SSE2。一般来说,SSE2 指令:
如果您检查 OpenCV 源代码,您会看到大量用于 SGBM 算法的 SSE2 代码。