Search code examples
pythonimage-processingsurf

How to use SURF in python?


I am going to work on a image processing project "currency recognition system " in pycharm. I just want to match the input image with the existing images in the database and show the result(database image name). How can I do this with SURF function. I checked it on internet but didn't get any relevant code. Could you please help me to do this?

Thanks Chathu


Solution

  • You're looking for an implementation of Speed Up Robust Features (SURF). You'll be better off using a library like OpenCV for your use case.

    Read the OpenCV docs on how to Install.
    Here's how to use SURF in OpenCV once you're done installing.