#ifdef __SSE2__ fast::fast_corner_detect_10_sse2( (fast::fast_byte *) image.data, image.cols, image.rows, image.cols, 20, fast_corners); #else fast::fast_corner_detect_10( (fast::fast_byte*) image.data, image.cols, image.rows, image.cols, 20, fast_corners); #endif
时间: 2024-04-26 21:21:09 浏览: 222
Fast corner detector
4星 · 用户满意度95%
这段代码是在调用 fast corner detection 算法来检测图像中的角点。其中,使用了条件编译,如果系统支持 SSE2 指令集,则调用 SSE2 版本的 fast corner detection 算法,否则调用普通版本的算法。函数的输入参数包括图像数据的指针、图像的宽度和高度、图像的步长、阈值以及用于存储检测到的角点信息的向量。
阅读全文