Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Letter Classification #5

Open
rland93 opened this issue Oct 30, 2021 · 0 comments
Open

Letter Classification #5

rland93 opened this issue Oct 30, 2021 · 0 comments
Labels
odcl Object Detection, Classification, and Localization

Comments

@rland93
Copy link
Member

rland93 commented Oct 30, 2021

Once we have localized a target, we need to figure out the letter. Remember, from #3 we will have a black and white (binary) array for the input.

For this, we have a couple ideas.

Letter detection is very well solved. One idea is to write a simple CNN with just a few layers and train it on our own data (there are plenty of binary letter datasets out there).

Another idea is to use a pre-trained network from somewhere. I'm not sure if networks trained on MNIST will work here, but there are a bajillion of those out there.

Another idea is to use a library like https://github.com/tesseract-ocr/tesseract to obtain letters.

In any case, there are many ways of doing this. Just keep in mind, we want this to be computationally very light, so work with tiny images (50x50 or less) with either binary or greyscale color.

@rland93 rland93 added the odcl Object Detection, Classification, and Localization label Apr 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
odcl Object Detection, Classification, and Localization
Projects
None yet
Development

No branches or pull requests

1 participant