All Projects → meijieru → Crnn.pytorch

meijieru / Crnn.pytorch

Licence: mit
Convolutional recurrent network in pytorch

Programming Languages

python
139335 projects - #7 most used programming language
lua
6591 projects

Projects that are alternatives of or similar to Crnn.pytorch

Mtcnn
face detection and alignment with mtcnn
Stars: ✭ 66 (-96.55%)
Mutual labels:  recognition
Julius
Open-Source Large Vocabulary Continuous Speech Recognition Engine
Stars: ✭ 1,258 (-34.27%)
Mutual labels:  recognition
Labelbox
Labelbox is the fastest way to annotate data to build and ship computer vision applications.
Stars: ✭ 1,588 (-17.03%)
Mutual labels:  recognition
Voicer
AGI-server voice recognizer for #Asterisk
Stars: ✭ 73 (-96.19%)
Mutual labels:  recognition
Ccpd
[ECCV 2018] CCPD: a diverse and well-annotated dataset for license plate detection and recognition
Stars: ✭ 1,252 (-34.59%)
Mutual labels:  recognition
Facial Expression Recognition
💡My Solution to Facial Emotion Recognization in Kaggle competition
Stars: ✭ 88 (-95.4%)
Mutual labels:  recognition
Cnn lstm ctc ocr for icpr
Forked from weinman/cnn_lstm_ctc_ocr for the ICPR MTWI 2018 challenge 1
Stars: ✭ 62 (-96.76%)
Mutual labels:  recognition
Simpsonrecognition
Detect and recognize The Simpsons characters using Keras and Faster R-CNN
Stars: ✭ 131 (-93.16%)
Mutual labels:  recognition
Crnn chinese characters rec
(CRNN) Chinese Characters Recognition.
Stars: ✭ 1,259 (-34.22%)
Mutual labels:  recognition
3d Densenet
3D Dense Connected Convolutional Network (3D-DenseNet for action recognition)
Stars: ✭ 118 (-93.83%)
Mutual labels:  recognition
Face recognition
Face recognition docker image to provide a web service which is able to register and recognize faces
Stars: ✭ 74 (-96.13%)
Mutual labels:  recognition
Vokaturiandroid
Emotion recognition by speech in android.
Stars: ✭ 79 (-95.87%)
Mutual labels:  recognition
Online place recognition
Graph-based image sequences matching for the visual place recognition in changing environments.
Stars: ✭ 100 (-94.78%)
Mutual labels:  recognition
Epic Kitchens 55 Action Models
EPIC-KITCHENS-55 baselines for Action Recognition
Stars: ✭ 68 (-96.45%)
Mutual labels:  recognition
Awesome Scene Text Recognition
A curated list of resources dedicated to scene text localization and recognition
Stars: ✭ 1,637 (-14.47%)
Mutual labels:  scene-texts
File Extension List
Organised collection of common file extensions
Stars: ✭ 63 (-96.71%)
Mutual labels:  recognition
Tf Siamesenet
Face recognition based on SiameseNet
Stars: ✭ 87 (-95.45%)
Mutual labels:  recognition
Yolo Powered robot vision
Stars: ✭ 133 (-93.05%)
Mutual labels:  recognition
Avpi
an open source voice command macro software
Stars: ✭ 130 (-93.21%)
Mutual labels:  recognition
Dcnets
Implementation for <Decoupled Networks> in CVPR'18.
Stars: ✭ 115 (-93.99%)
Mutual labels:  recognition

Convolutional Recurrent Neural Network

This software implements the Convolutional Recurrent Neural Network (CRNN) in pytorch. Origin software could be found in crnn

Run demo

A demo program can be found in demo.py. Before running the demo, download a pretrained model from Baidu Netdisk or Dropbox. This pretrained model is converted from auther offered one by tool. Put the downloaded model file crnn.pth into directory data/. Then launch the demo by:

python demo.py

The demo reads an example image and recognizes its text content.

Example image: Example Image

Expected output: loading pretrained model from ./data/crnn.pth a-----v--a-i-l-a-bb-l-ee-- => available

Dependence

Train a new model

  1. Construct dataset following origin guide. If you want to train with variable length images (keep the origin ratio for example), please modify the tool/create_dataset.py and sort the image according to the text length.
  2. Execute python train.py --adadelta --trainRoot {train_path} --valRoot {val_path} --cuda. Explore train.py for details.
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].