Hello, i have to read image from pc camera ... For example i have a camera connected to PC on http://10.0.2.10
I must get image from this url and do OCR into B4A then store result as text to SQL DataBase
I finding some example related to this task but no success
Can you help me with some example...for reading camera image from url
I found this code:
But this store url data to string array...
Thanks!
I must get image from this url and do OCR into B4A then store result as text to SQL DataBase
I finding some example related to this task but no success
Can you help me with some example...for reading camera image from url
I found this code:
B4X:
Dim job As HttpJob
job.Initialize("", Me)
job.Download2("http://190.160.1.12/", Array As String("get", "Actual"))
Wait For (job) JobDone(job As HttpJob)
Sleep(100) 'add this
Log("job.Success = " & job.Success) 'and this
But this store url data to string array...
Thanks!
Last edited: