I'd like to allow users to enter their signature using a canvas and then use image recognition to authenticate (to a degree) the signature by matching it against one or more stored versions of the signature.
I can see from Capture Signature using HTML5 and iPad that there are some great libraries for capturing signatures.
I can also see from Feature Extraction with Javascript that there are image processing libraries in JavaScript, which is great because I don't want to read the signatures, I just want to process it as an image.
What I don't know is how to use an image processing library to match or recognise images. I'm trying to do a design proof-of-concept during an innovation sprint, so in truth I won't have time to do much speculative coding. In fact if there isn't a ready-to-wear solution I would also be interested in using pairing these signature capture widgets with an online image recognition service, if there is an image equivalent of eg http://www.skybiometry.com/Demo#recognition
[Edit] In order to avoid this being closed as off-topic, may I clarify that I am not asking for people's favourite image-matching library, rather asking if any tool or library exists which is capable of estimating the similarity of two linear, cursive, monochrome images, and also asking what steps, if any, I would have to take to get from existing image processing libraries like http://www.pixastic.com/lib/ and https://github.com/harthur/hog-descriptor to image comparison.