This post will help you to create an OCR application in C#. For this i will be using Visual Studio 2013 and Puma.NET . Before creating the project you need to install Puma.NET on your computer. You can download Puma.NET from here . After downloading, run the installer to install Puma.NET on your device. The default installation folder will be C:\ProgramFiles (x86) on 32 bit systems. After finishing installation you will have three folders under C:\ ProgramFiles (x86)\Puma.NET . Open Assemblies folder and there you will have three DLLs named dibapi.dll, puma.interop.dll and Puma.Net.dll . Create a Windows Forms Application and add a Button and RichTextBox to the form. Right click on Project -> Add References . Select Browse and add Puma.Net.dll from the Assemblies folder under installation path of Puma.NET. Click on Build to build your project. Open Debug folder of the project and there will be puma.interop.d...
What is C? C is a programming language developed at AT &T’s Bell laboratories of USA by Dennis Ritchie. Soon many people began to use C instead of other languages such as FORTRAN,ALGOL etc.C became so popular because it was simple,reliable and easy to use.C falls in middle level language which is in between High level languages or Problem oriented language and Low level or Machine oriented languages. What is C++? C++ was developed by Bjrane Stroustrup at AT &T’s Bell laboratories of USA. Stroustrup wanted to develop an object-oriented programming language with the features of C.As a result C++ was born.In 1983 Rick Mascitti coined the term C++. Difference between C and C++ C is function-oriented language and C++ is object-oriented. C uses top to bottom approach while C++ uses the bottom to top approach. In C, we cannot give same name to a function and in C++ more than one function can be created if the...
Comments
Post a Comment