Is there any open source OCR library written in .NET, or written in any language but can be used in an ASP.NET application?
Or is there any open source OCR API available in the market for image to tabular formats ?
I seraching for a free .Net (C#) library that i can use to scan from a document scanner and then OCR the document so i can get the text from it to save in a database.
After some search i …
I'm trying to use MODI to OCR a window's program. It works fine for screenshots I grab programmatically using win32 interop like this:
public string SaveScreenShotToFile()
{
RECT rc;
GetWindowRect(_hWnd, out rc);
int width = rc.right - rc.left;
int …
Canonical
How can I make an HTTP request and send some data using the POST method?
I can do a GET request, but I have no idea of how to make a POST request.