Utkarsh-Deshmukh / Fingerprint-Feature-Extraction

Extract minutiae features from fingerprint images
MIT License
144 stars 44 forks source link

How can i pass an image url in the function ? #16

Closed nguThapelo closed 1 year ago

nguThapelo commented 1 year ago

How can i pass an image base64 url in the function ?, i tried reading it with imread but the function is rejecting it as an argument

Utkarsh-Deshmukh commented 1 year ago

the imread function expects the image as a standalone file on your filesystem. you may be able to use imdecode to get the image data out of the base64 encoded image, but not sure.

nguThapelo commented 1 year ago

Alright, Thank you.