基本上你必须首先做一个:
SurfFeatureDetector surf(400);
surf.detect(image1, keypoints1);
然后一个:
surfDesc.compute(image1, keypoints1, descriptors1);
为什么检测和计算是两种不同的操作?
检测后进行计算不会产生冗余循环?
我发现自己.compute
是我的应用程序中最昂贵的。
.detect
在0.2 秒内完成
.compute
需要~1sec。有什么办法可以加快速度.compute
吗?