Reputation: 1560
Our initial use case called for writing an application in Unity3D (write solely in C# and deploy to both iOS and Android simultaneously) that allowed a mobile phone user to hold their camera up to the title of a magazine article, use OCR to read the title, and then we would process that title on the backend to get related stories. Vuforia was far and away the best for this use case because of its fast native character recognition.
After the initial application was demoed a bit, more potential uses came up. Any use case that needed solely A-z characters recognized was easy in Vuforia, but the second it called for number recognition we had to look elsewhere because Vuforia does not support number recognition (now or anywhere in the near future).
Attempted Workarounds:
.Net Assembly Not Found
(most likely an issue with the version of .Net the dlls were compiled in).Has anyone run into this same problem in Unity and ultimately found a good solution?
Upvotes: 1
Views: 4330
Reputation: 41
Vuforia on itself doesn't provide any system to detect numbers, just letters. To solve this problem I followed the next strategy (just for numbers near of a common image):
This approach solves this problem, but it doesn't work like a charm. Their success depends on the quality of the screenshot and the OCR service.
Upvotes: 1