Hello,
I’m thinking of creating a software which would extract needed info from a photographed/scanned document.
The text shouldn’t be a problem with OCR, but there is also an Option selection.
To put it event simpler my goal is to turn this Image/pdf:
To this SQL string (please don’t mind the syntax):
INSERT INTO DatabaseTable (Name , Surname , Date , Option_1, Option_2, Option_3)
VALUES (“Test” , “Testician” , “2023-06-06” , “True”, “False”, “True”);
What steps should be taken to achieve my goal?
I’m familiar with C#, CSS, HTML, SQL.
Thank you for your suggestions.
Best regards,
Baxius