All Projects → mahimrocky → TextRecognizer

mahimrocky / TextRecognizer

Licence: other
By this library you can extract text from image.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to TextRecognizer

Awesome Ai Services
An overview of the AI-as-a-service landscape
Stars: ✭ 133 (+121.67%)
Mutual labels:  text-recognition
Awesome Deep Text Detection Recognition
A curated list of resources for text detection/recognition (optical character recognition ) with deep learning methods.
Stars: ✭ 2,282 (+3703.33%)
Mutual labels:  text-recognition
MLKit-Android-Apps
All android applications (apps) using MLKit
Stars: ✭ 24 (-60%)
Mutual labels:  text-recognition
Pan pp.pytorch
Official implementations of PSENet, PAN and PAN++.
Stars: ✭ 141 (+135%)
Mutual labels:  text-recognition
Text Detector
Tool which allow you to detect and translate text.
Stars: ✭ 173 (+188.33%)
Mutual labels:  text-recognition
Deep Text Recognition Benchmark
Text recognition (optical character recognition) with deep learning methods.
Stars: ✭ 2,665 (+4341.67%)
Mutual labels:  text-recognition
Awesome Scene Text Recognition
A curated list of resources dedicated to scene text localization and recognition
Stars: ✭ 1,637 (+2628.33%)
Mutual labels:  text-recognition
lego-mindstorms-51515-jetson-nano
Combines the LEGO Mindstorms 51515 with the NVIDIA Jetson Nano
Stars: ✭ 31 (-48.33%)
Mutual labels:  text-recognition
Tesseract Ocr For Php
A wrapper to work with Tesseract OCR inside PHP.
Stars: ✭ 2,247 (+3645%)
Mutual labels:  text-recognition
compv
Insanely fast Open Source Computer Vision library for ARM and x86 devices (Up to #50 times faster than OpenCV)
Stars: ✭ 155 (+158.33%)
Mutual labels:  text-recognition
Crnn.pytorch
crnn实现水平和垂直方向中文文字识别, 提供在3w多个中文字符训练的水平识别和垂直识别的预训练模型; 欢迎关注,试用和反馈问题... ...
Stars: ✭ 145 (+141.67%)
Mutual labels:  text-recognition
Adelaidet
AdelaiDet is an open source toolbox for multiple instance-level detection and recognition tasks.
Stars: ✭ 2,565 (+4175%)
Mutual labels:  text-recognition
Ocr.pytorch
A pure pytorch implemented ocr project including text detection and recognition
Stars: ✭ 196 (+226.67%)
Mutual labels:  text-recognition
Textrecognitiondatagenerator
A synthetic data generator for text recognition
Stars: ✭ 2,075 (+3358.33%)
Mutual labels:  text-recognition
AE TextSpotter
No description or website provided.
Stars: ✭ 68 (+13.33%)
Mutual labels:  text-recognition
Transformer str
PyTorch implementation of my new method for Scene Text Recognition (STR) based on Transformer,Equipped with Transformer, this method outperforms the best model of the aforementioned deep-text-recognition-benchmark by 7.6% on CUTE80.
Stars: ✭ 131 (+118.33%)
Mutual labels:  text-recognition
React Native Dialogflow
A React-Native Bridge for the Google Dialogflow (API.AI) SDK
Stars: ✭ 182 (+203.33%)
Mutual labels:  text-recognition
NLP-image-to-text
code to extract text from images
Stars: ✭ 28 (-53.33%)
Mutual labels:  text-recognition
doctr
docTR (Document Text Recognition) - a seamless, high-performing & accessible library for OCR-related tasks powered by Deep Learning.
Stars: ✭ 1,409 (+2248.33%)
Mutual labels:  text-recognition
Questor
Scan & Search text from hardcopy books and images! 📖 🔍
Stars: ✭ 36 (-40%)
Mutual labels:  text-recognition

TextRecognizer

This library extend google vision . And initilay it read text from image. for reading text from image you have to give image Uri or Bitmap.

Sample Alt Text

Setup

Setup part is simple

Root Gradle

    allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

App Gradle:

dependencies {
	        implementation 'com.github.mahimrocky:TextRecognizer:1.0.0'
	}

Api

 TextScanner.getInstance(this)
                .init()
                .load(uri) // uri or bitmap
                .getCallback(new TextExtractCallback() {
                    @Override
                    public void onGetExtractText(List<String> textList) {
                        // Here you will get list of text

                    }
                });

Happy coding

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].