Please guide me on how to create a C# wrapper to access the methods of the tesseract library which is in C++.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here is a good article on CodeProject you can follow.
For your case I will suggest the PlaPlatform Invocation Services (PInvoke). It
allows managed code to call unmanaged functions that are implemented in a DLL. For example have a look on this MSDN codeThere is also an older post related to this, you can check it here.