0

I am developing an object-recognition system. I found that the critical part of my algo is the

extractor.compute();

(After having detector.detect() keypoints)

Is there any way to let compute the feature vector with more core? I can use up to 8 core.

1 Answers1

1

Opencv already implements multithread framework for this. Check that you compiled opencv with threading option 'ON'. You should go for an opencv documentation reading, gpu::SURF_GPU may interest you.

You can run cmake again to see the compilation options you used.

Eric
  • 2,301
  • 3
  • 23
  • 30