Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-19 Thread Murilo via Digitalmars-d-announce
Hey! This looks like great work to learn from! Is there any chance you could add a dub file to make it easy to build? Hey everyone. I've finally finished creating all .png images for all 26 letters in both uppercase and lowercase format. I've uploaded it to the github page already. Keep in

Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-10 Thread Murilo via Digitalmars-d-announce
Hey! This looks like great work to learn from! Is there any chance you could add a dub file to make it easy to build? I don't use DUB. But it is very easy to build, just download it and compile it. There is a file called OCR_all_files.zip which contains everything, download it, unzip it and

Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-10 Thread Murilo via Digitalmars-d-announce
On Monday, 9 December 2019 at 01:58:10 UTC, Mathias Lang wrote: Nice work! You might want to take a look at the MNIST database ( https://en.wikipedia.org/wiki/MNIST_database) which is freely available and commonly used to train neural network. It will also allow you to benchmark your

Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-10 Thread Murilo via Digitalmars-d-announce
On Friday, 6 December 2019 at 03:03:54 UTC, Walter Bright wrote: Nice work! Thank you very much, I've updated it now, now it contains also all lowercase letters from 'a' to 'n', but it hasn't trained in order to learn how to read them yet.

Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-10 Thread Andrej Mitrovic via Digitalmars-d-announce
On Friday, 6 December 2019 at 01:07:38 UTC, Murilo wrote: Hi everyone. I've spent the last weeks working on a program which is able to read and understand text from an image file(OCR) by using a rudimentary neural network after training with a large amount of images(I made them myself,

Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-08 Thread Murilo via Digitalmars-d-announce
On Monday, 9 December 2019 at 01:58:10 UTC, Mathias Lang wrote: Nice work! You might want to take a look at the MNIST database ( https://en.wikipedia.org/wiki/MNIST_database) which is freely available and commonly used to train neural network. It will also allow you to benchmark your

Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-08 Thread Mathias Lang via Digitalmars-d-announce
Nice work! You might want to take a look at the MNIST database ( https://en.wikipedia.org/wiki/MNIST_database) which is freely available and commonly used to train neural network. It will also allow you to benchmark your implementation against other algorithms. On Fri, Dec 6, 2019 at 10:07 AM

Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-05 Thread Walter Bright via Digitalmars-d-announce
On 12/5/2019 5:07 PM, Murilo wrote: Hi everyone. I've spent the last weeks working on a program which is able to read and understand text from an image file(OCR) by using a rudimentary neural network after training with a large amount of images(I made them myself, manually). It even shows a

A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-05 Thread Murilo via Digitalmars-d-announce
Hi everyone. I've spent the last weeks working on a program which is able to read and understand text from an image file(OCR) by using a rudimentary neural network after training with a large amount of images(I made them myself, manually). It even shows a map of all the parts of the images