OpenCV feature matching for multiple images

前端 未结 3 474
南方客
南方客 2020-12-24 03:55

How can I optimise the SIFT feature matching for many pictures using FLANN?

I have a working example taken from the Python OpenCV docs. However this is comparing one

3条回答
  •  情书的邮戳
    2020-12-24 04:39

    Here are several pieces of my advice:

    1. You should reduce the amount of point data by using proper techniques.
    2. Calculate the reference image repeatedly is a waste. You should persistent all calculated reference.
    3. Do not put the calculate on a mobile device. You'd better upload the calculated reference of a captured image to a powerful server and do the searching there.

    This is a very interesting topic. My ears are opening too.

提交回复
热议问题