I am working on image processing. I need to develop OCR tool using matlab. Is there any technique to develop OCR tool, create the dll of it and use it in .Net applications. If yes, how can I do this?
Asked
Active
Viewed 5,108 times
8
-
possible duplicate of - http://stackoverflow.com/questions/8813407/matlab-and-net-4-0-data-communication/8815598#8815598 – Andrey Rubshtein Jan 27 '12 at 12:48
2 Answers
5
You could try the MathWorks website. Looks like they have examples there of creating mex files and using them in a .NET application. See Making and debugging mex with Visual Studio 2010 and Matlab 2009b
Here is an example that shows 3 different ways to integrate matlab with C#

SwDevMan81
- 48,814
- 22
- 151
- 184
-
The second link is not available. You should have posted at least a summary of what was present in the link. – Anas Imran Tasadduq Jun 23 '15 at 18:06
3
you need to use matlab Builder NE for stuff like that. you can compile any matlab function load the Dll in .net as a class with a function. for that you need to use Matlab Compiler Runtime - MCR of the same version as the matlab you used with Builder NE.

Gilad
- 6,437
- 14
- 61
- 119