Optical Character Recognition using Neural network

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 1K views
NotASmurf
Messages
150
Reaction score
2
Hey all, does anyone know a link where I can find a c# implementation of a neural net that does OCR WITHOUT using libraries, I feel that OCR is a nice way to learn how neural nets classify data. Any help appreciated, thanks.
 
Physics news on Phys.org
If you know of open source code which uses libraries, the libraries are probably open source too.
You could extract the relevant functions as source and implement/extend as necessary for your project without needing to call the original library.
 
Then I would have to decompile it, also they are probably a lot more complicated that ones I could find online.
 
If the libraries are open source you don't have to decompile them.
You have the source as-is. and can take whichever routines you need and adapt them as required for your own project.
It's generally considered to be the honorable thing to do though to mention that some of your code is derived/inspired by <whatever>.
 
If you want to see how neural net classify data, then begin to write a neural net by yourself. It's not really hard but very instructive. I think that you must use 2D data so you can see the classification on a plot.