diff --git a/Projects/2-Intermediate/Image-Scaner.md b/Projects/2-Intermediate/Image-Scaner.md new file mode 100644 index 00000000..ee17ad0b --- /dev/null +++ b/Projects/2-Intermediate/Image-Scaner.md @@ -0,0 +1,28 @@ +# Image Scanner + +**Tier:** 2-Intermediate + +Create an android and ios app to find phone numbers, email and website links available in a photo and then organise it in the app. + +## User Stories + +- [ ] User can either click a photo or upload a photo from the gallery +- [ ] Processing is done on the image. +- [ ] If there are any phone numbers, email or web links present in the image then they are listed in the cards properly organized. +- [ ] On tap on the details, an option is provided to save as contact. +- [ ] History of search results are provided in the list view + +## Bonus features + +- [ ] Provide an option to add tags for each search results. +- [ ] Add search funtionality based on tags +- [ ] Add login and sync the results across multiple devices. + +## Useful links and resources + +- Use google OCR to read text from the image uploaded. https://cloud.google.com/vision/docs/ocr +- Apply regex to identify the phone number , emails and website links on the text identified from the OCR. + +## Example projects + +- Android App for text detection - https://github.com/alexzaitsev/ocr-google-vision diff --git a/README.md b/README.md index 28bf7d28..87d3ede5 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ required to complete them. | [Game Suggestion App](./Projects/2-Intermediate/Game-Suggestion-App.md) | Create polls to decide what games to play | 2-Intermediate | | [GitHub Profiles](./Projects/2-Intermediate/GitHub-Profiles.md) | A GitHub user search App | 2-Intermediate | | [HighStriker Game](./Projects/2-Intermediate/HighStriker-Game.md) | Highstriker strongman carnival game | 2-Intermediate | +| [Image Scanner](./Projects/2-Intermediate/Image-Scaner.md) | Image Scanner App | 2-Intermediate | | [Markdown Previewer](./Projects/2-Intermediate/Markdown-Previewer.md) | Preview text formatted in GitHub flavored markdown | 2-Intermediate | | [Markdown Table Generator](./Projects/2-Intermediate/Markdown-Table-Generator.md) | Convert a table into Markdown-formatted text | 2-Intermediate | | [Math Editor](./Projects/2-Intermediate/math-editor.md) | A math editor for students to use | 2-Intermediate |