Is there any code or algorithm for signature recognition?

前端 未结 5 785
轮回少年
轮回少年 2021-02-01 06:21

My users draw their signature in my application using touch events and I convert it to a bitmap. I want to extract unique specifications of each signature and compare it by its

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-01 06:58

    Well you can transform the image in a bytes array, send that to your server and do whatever you want.

    Next I will place some tips and tricks with decode and encode methods you can use

    There is a question here Decode byte array to bitmap that has been compressed in Java about how to decode bytes array

    And to create the bytes array from your bitmap using this tips: http://www.anddev.org/advanced-tutorials-f21/how-to-convert-bitmap-to-byte-array-in-android-t12985.html

    Hope this helps, Arkde

提交回复
热议问题