SlideShare a Scribd company logo
1 of 34
Download to read offline
Tesseract Tutorial: DAS 2014 Tours France
1. Motivation and History of
the Tesseract OCR Engine
Lessons Learned from What Worked
and What Didn't
Ray Smith, Google Inc.
Tesseract Tutorial: DAS 2014 Tours France
What is Tesseract?
Tesseract Tutorial: DAS 2014 Tours France
Tesseract Timeline
4MB 16MB 64MB 256MB 3GB 24GB
10MHz 25MHz 100MHz 166MHz 3.5GHz 12 x 3.5GHz
Development machine Memory/Speed:
3.02
3.01
3.00
2.01-2
2.03
2.04
1.01-4
Tesseract Tutorial: DAS 2014 Tours France
The Stealth Era: 1984-1994
Tesseract Tutorial: DAS 2014 Tours France
Dest has a scanner with built-in OCR with >99.5%
accuracy.
Office equipment trade-show:
Earl's Court, London late 1984
Tesseract Tutorial: DAS 2014 Tours France
Dest has a scanner with built-in OCR with >99.5%
accuracy.
Caveat: It only recognizes 8 fonts from IBM Selectric
"golf-ball" typewriters.
Office equipment trade-show:
Earl's Court, London late 1984
Tesseract Tutorial: DAS 2014 Tours France
Office equipment trade-show:
Earl's Court, London late 1984
For documents
conventional OCR can't
handle, Kurzweil offers a
better approach: ICR.
For almost two decades, optical
character recognition systems have been
widely used to provide automated text
entry into computerised systems. Yet in
all this time, conventional OCR systems
have never overcome their in- ability to
read more than a handful of type fonts
and page formats. Propor- tionally
spaced type (which includes vir- tually all
typeset copy), laser printer fonts, and
even many non-proportional typewriter
fonts, have remained beyond the reach of
these systems. And as a result,
conventional OCR has never achieved
more than a marginal impact on the total
number of documents needing
conversion into digital form.
Tesseract Tutorial: DAS 2014 Tours France
Early Lessons:
Tesseract Tutorial: DAS 2014 Tours France
Early Lessons:
● Be able to OCR your own sales literature!
Tesseract Tutorial: DAS 2014 Tours France
Early Lessons:
● Be able to OCR your own sales literature!
● OCR should distinguish text from non-text.
Tesseract Tutorial: DAS 2014 Tours France
Early Lessons:
● Be able to OCR your own sales literature!
● OCR should distinguish text from non-text.
● OCR should read white-on gray and black-on-gray as easily as
black-on-white.
Tesseract Tutorial: DAS 2014 Tours France
Early Lessons:
● Be able to OCR your own sales literature!
● OCR should distinguish text from non-text.
● OCR should read white-on gray and black-on-gray as easily as
black-on-white.
Decision:
Extract outlines from grayscale images and features from the
outlines.
● Profound impact.
● Key differentiator.
Tesseract Tutorial: DAS 2014 Tours France
Connected component outlines vs bounding boxes:
Ninja often
● Bounding boxes of characters often overlap without the
characters actually touching.
Tesseract Tutorial: DAS 2014 Tours France
How to extract features from Outlines?
Outline Skeleton Topological Features
Tesseract Tutorial: DAS 2014 Tours France
Skeletonization is Unreliable
Outline: Serifed Skeleton: Decorated
Arrrrh!
Lesson: If there are a lot of papers on a topic, there is most likely no
good solution, at least not yet, so try to use something else.
Tesseract Tutorial: DAS 2014 Tours France
Topological features are Brittle
Damage to 'o' produces vastly different feature sets:
Standard 'o'
Broken 'o'
Filled 'o'
Lesson: Features must be as invariant as possible to as many as
possible of the expected degradations.
Tesseract Tutorial: DAS 2014 Tours France
Shrinking features and inappropriate statistics
Segments of the polygonal Even smaller features
Approximation
Statistical:
Geometric:
Lesson: Statistical Independence is difficult to dodge.
Tesseract Tutorial: DAS 2014 Tours France
Now it's Too Slow!
~2000 characters per page x
~100 character classes (English) x
32 fonts x
~20 prototype features x
~100 unknown features x
3 feature dimensions
= 38bn distance calculations per page...
Tesseract Tutorial: DAS 2014 Tours France
Now it's Too Slow!
~2000 characters per page x
~100 character classes (English) x
32 fonts x
~20 prototype features x
~100 unknown features x
3 feature dimensions
= 38bn distance calculations per page...
... on a 25MHz machine.
Tesseract Tutorial: DAS 2014 Tours France
What Were Other OCR Systems doing in 1988-1990?
Calera Wordscan: Required a $2000 "real computer" add-on board to
run a fixed dimension feature space on a PC (that used a 12.5MHz
80286 in those days):
Recognita: Decision tree using topological-like features. Very fast in
software. Accuracy degraded very fast on poor quality.
Neural Networks: Were just becoming popular. Would there be a
startup threat?
Tesseract Tutorial: DAS 2014 Tours France
Testing
Summary:
● Small test sets are meaningless -> Get lots of compute power and
data.
● Test on very different data to the training data.
● Test every change.
● What you measure improves -> Measure lots of dimensions.
● If it can break it will.
● Make your code faster while waiting for tests to run.
● Think/test out of the box...
Tesseract Tutorial: DAS 2014 Tours France
Creative testing
Christmas 1992: Company shutdown for 10 days. What
should we do with all that compute power that would
otherwise be wasted?
Tesseract Tutorial: DAS 2014 Tours France
Creative testing
Christmas 1992: Company shutdown for 10 days. What
should we do with all that compute power that would
otherwise be wasted?
● Tune the hand-tuned parameters with a genetic
algorithm.
● Process the 400 image test set thresholded at each
possible threshold in the range 32-224
Tesseract Tutorial: DAS 2014 Tours France
Thresholding Experiment Results
● Exposed several bugs
● Some fascinating accuracy results
0 Image Threshold 255
0Errorrate
-- Expected Results
-- Observed Results
Tesseract Tutorial: DAS 2014 Tours France
The Dark Ages: 1995-2005: Gathering Dust
Tesseract Tutorial: DAS 2014 Tours France
The Dark Ages
Tesseract:
● Ported to Windows.
● Moore's law:
○ 20x Memory Capacity.
○ 20x Speed.
Commercial Engines:
● 1994: Caere buys Calera.
● 1995: First use of character n-
grams in commercial system.
(Wordscan 3.1).
● 1996: Caere buys Recognita.
● 2000: Scansoft buys Caere.
● Voting improves accuracy, but
engine is much slower.
Tesseract Tutorial: DAS 2014 Tours France
2005: HP Open Sources Tesseract
Tesseract Tutorial: DAS 2014 Tours France
The Open Source Era: 2006 - Present
Tesseract source is available from:
http://code.google.com/p/tesseract-ocr
and for direct install on Linux via:
apt-get install tesseract-ocr
60+ Languages available.
Tesseract Tutorial: DAS 2014 Tours France
Open Source OCR is Used for Various Applications
From my inbox:
Tesseract Tutorial: DAS 2014 Tours France
Open Source OCR is Used for Various Applications
My reply:
Tesseract Tutorial: DAS 2014 Tours France
Open Source OCR is Used for Various Applications
He doesn't give up that easily:
Tesseract Tutorial: DAS 2014 Tours France
Recent Improvements
● Internationalize to 60+ Languages.
● Add Full Layout Analysis.
● Table Detection.
● Equation Detection.
● Better Language Models.
● Improved Segmentation Search.
● Word Bigrams.
Tesseract Tutorial: DAS 2014 Tours France
Results
Language Ground Truth
Chars (million)
Ground Truth
words (million)
Char Err Rate% Word Err
Rate%
English 271 44 0.47 6.4
Italian 59 10 0.54 5.41
Russian 23 3.5 0.67 5.57
Simplified
Chinese
0.25 0.17 2.52 6.29
Hebrew 0.16 0.03 3.2 10.58
Japanese 10 4.1 4.26 18.72
Vietnamese 0.41 0.09 5.06 19.39
Hindi 2.1 0.41 6.43 28.62
Thai 0.19 0.01 21.31 80.53
Tesseract Tutorial: DAS 2014 Tours France
Thanks for Listening!
Questions?

More Related Content

Viewers also liked

cs15 slide_v2
cs15 slide_v2cs15 slide_v2
cs15 slide_v2
Solin TEM
 
CS_rapport_final_fr_v3_1
CS_rapport_final_fr_v3_1CS_rapport_final_fr_v3_1
CS_rapport_final_fr_v3_1
Solin TEM
 
Project planning forms_0210revised
Project planning forms_0210revisedProject planning forms_0210revised
Project planning forms_0210revised
Jennyhpn
 
Presentación sobre curso de asignatura
Presentación sobre curso de asignaturaPresentación sobre curso de asignatura
Presentación sobre curso de asignatura
pimela12
 
Efficient Query Answering against Dynamic RDF Databases
Efficient Query Answering against Dynamic RDF DatabasesEfficient Query Answering against Dynamic RDF Databases
Efficient Query Answering against Dynamic RDF Databases
Alexandra Roatiș
 
Universidad nacional de chimborazo katty
Universidad nacional de chimborazo kattyUniversidad nacional de chimborazo katty
Universidad nacional de chimborazo katty
Vivitarojas
 

Viewers also liked (20)

Khmer ocr itc
Khmer ocr itcKhmer ocr itc
Khmer ocr itc
 
Khmer ocr scientificday_itc
Khmer ocr scientificday_itcKhmer ocr scientificday_itc
Khmer ocr scientificday_itc
 
0 tutorial contents
0 tutorial contents0 tutorial contents
0 tutorial contents
 
cs15 slide_v2
cs15 slide_v2cs15 slide_v2
cs15 slide_v2
 
Khmer ocr using gfd_seminar_day
Khmer ocr using gfd_seminar_dayKhmer ocr using gfd_seminar_day
Khmer ocr using gfd_seminar_day
 
Khmer ocr using gfd
Khmer ocr using gfdKhmer ocr using gfd
Khmer ocr using gfd
 
7 layout analysis
7 layout analysis7 layout analysis
7 layout analysis
 
CS_rapport_final_fr_v3_1
CS_rapport_final_fr_v3_1CS_rapport_final_fr_v3_1
CS_rapport_final_fr_v3_1
 
Project planning forms_0210revised
Project planning forms_0210revisedProject planning forms_0210revised
Project planning forms_0210revised
 
motivation & knowledge management
motivation & knowledge management motivation & knowledge management
motivation & knowledge management
 
一公分鉛筆的故事
一公分鉛筆的故事一公分鉛筆的故事
一公分鉛筆的故事
 
Project: Food map
Project: Food map Project: Food map
Project: Food map
 
Կայքի հաջողության մի քանի քայլեր
Կայքի հաջողության մի քանի քայլերԿայքի հաջողության մի քանի քայլեր
Կայքի հաջողության մի քանի քայլեր
 
How Online Education Used to reduce illiteracy in remote areas
How Online Education Used to reduce illiteracy in remote areasHow Online Education Used to reduce illiteracy in remote areas
How Online Education Used to reduce illiteracy in remote areas
 
Presentación sobre curso de asignatura
Presentación sobre curso de asignaturaPresentación sobre curso de asignatura
Presentación sobre curso de asignatura
 
Efficient Query Answering against Dynamic RDF Databases
Efficient Query Answering against Dynamic RDF DatabasesEfficient Query Answering against Dynamic RDF Databases
Efficient Query Answering against Dynamic RDF Databases
 
Universidad nacional de chimborazo katty
Universidad nacional de chimborazo kattyUniversidad nacional de chimborazo katty
Universidad nacional de chimborazo katty
 
Yazılımcı Gözüyle Scrum
Yazılımcı Gözüyle ScrumYazılımcı Gözüyle Scrum
Yazılımcı Gözüyle Scrum
 
[Infographic] Cisco Visual Networking Index (VNI): Mobile-Connected Devices p...
[Infographic] Cisco Visual Networking Index (VNI): Mobile-Connected Devices p...[Infographic] Cisco Visual Networking Index (VNI): Mobile-Connected Devices p...
[Infographic] Cisco Visual Networking Index (VNI): Mobile-Connected Devices p...
 
Recorte Web - DuocUC - escom
Recorte Web - DuocUC - escomRecorte Web - DuocUC - escom
Recorte Web - DuocUC - escom
 

Similar to 1 intro history

DTrace - Miracle Scotland Database Forum
DTrace - Miracle Scotland Database ForumDTrace - Miracle Scotland Database Forum
DTrace - Miracle Scotland Database Forum
Doug Burns
 

Similar to 1 intro history (20)

Lessons from Indic OCR Development
Lessons from Indic OCR DevelopmentLessons from Indic OCR Development
Lessons from Indic OCR Development
 
Deep Turnover Forecast - meetup Lille
Deep Turnover Forecast - meetup LilleDeep Turnover Forecast - meetup Lille
Deep Turnover Forecast - meetup Lille
 
Data oriented design and c++
Data oriented design and c++Data oriented design and c++
Data oriented design and c++
 
Artificial Intelligence in practice - Gerbert Kaandorp - Codemotion Amsterdam...
Artificial Intelligence in practice - Gerbert Kaandorp - Codemotion Amsterdam...Artificial Intelligence in practice - Gerbert Kaandorp - Codemotion Amsterdam...
Artificial Intelligence in practice - Gerbert Kaandorp - Codemotion Amsterdam...
 
DTrace - Miracle Scotland Database Forum
DTrace - Miracle Scotland Database ForumDTrace - Miracle Scotland Database Forum
DTrace - Miracle Scotland Database Forum
 
3 training
3 training3 training
3 training
 
CPLEX Optimization Studio, Modeling, Theory, Best Practices and Case Studies
CPLEX Optimization Studio, Modeling, Theory, Best Practices and Case StudiesCPLEX Optimization Studio, Modeling, Theory, Best Practices and Case Studies
CPLEX Optimization Studio, Modeling, Theory, Best Practices and Case Studies
 
Using F# to change the way we work
Using F# to change the way we workUsing F# to change the way we work
Using F# to change the way we work
 
Large scalecplex
Large scalecplexLarge scalecplex
Large scalecplex
 
infoShare AI Roadshow 2018 - Tomasz Kopacz (Microsoft) - jakie możliwości daj...
infoShare AI Roadshow 2018 - Tomasz Kopacz (Microsoft) - jakie możliwości daj...infoShare AI Roadshow 2018 - Tomasz Kopacz (Microsoft) - jakie możliwości daj...
infoShare AI Roadshow 2018 - Tomasz Kopacz (Microsoft) - jakie możliwości daj...
 
Machine learning the next revolution or just another hype
Machine learning   the next revolution or just another hypeMachine learning   the next revolution or just another hype
Machine learning the next revolution or just another hype
 
Deep Learning Applications (dadada2017)
Deep Learning Applications (dadada2017)Deep Learning Applications (dadada2017)
Deep Learning Applications (dadada2017)
 
Pharo VM Performance
Pharo VM PerformancePharo VM Performance
Pharo VM Performance
 
Distributed machine learning 101 using apache spark from a browser devoxx.b...
Distributed machine learning 101 using apache spark from a browser   devoxx.b...Distributed machine learning 101 using apache spark from a browser   devoxx.b...
Distributed machine learning 101 using apache spark from a browser devoxx.b...
 
Day1 - TDD (Lecture SS 2015)
Day1 - TDD (Lecture SS 2015)Day1 - TDD (Lecture SS 2015)
Day1 - TDD (Lecture SS 2015)
 
QuadIron An open source library for number theoretic transform-based erasure ...
QuadIron An open source library for number theoretic transform-based erasure ...QuadIron An open source library for number theoretic transform-based erasure ...
QuadIron An open source library for number theoretic transform-based erasure ...
 
PRADS presentation (English) @ University of Oslo by Ebf0 and kwy
PRADS presentation (English) @ University of Oslo by Ebf0 and kwyPRADS presentation (English) @ University of Oslo by Ebf0 and kwy
PRADS presentation (English) @ University of Oslo by Ebf0 and kwy
 
Solving Large Scale Optimization Problems using CPLEX Optimization Studio
Solving Large Scale Optimization Problems using CPLEX Optimization StudioSolving Large Scale Optimization Problems using CPLEX Optimization Studio
Solving Large Scale Optimization Problems using CPLEX Optimization Studio
 
Complicating Complexity: Performance in a New Machine Age
Complicating Complexity: Performance in a New Machine AgeComplicating Complexity: Performance in a New Machine Age
Complicating Complexity: Performance in a New Machine Age
 
Infrastructure and Tooling - Full Stack Deep Learning
Infrastructure and Tooling - Full Stack Deep LearningInfrastructure and Tooling - Full Stack Deep Learning
Infrastructure and Tooling - Full Stack Deep Learning
 

Recently uploaded

如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
wsppdmt
 
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
mikehavy0
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
q6pzkpark
 
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get CytotecAbortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Klinik kandungan
 

Recently uploaded (20)

👉 Tirunelveli Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top Class Call Gir...
👉 Tirunelveli Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top Class Call Gir...👉 Tirunelveli Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top Class Call Gir...
👉 Tirunelveli Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top Class Call Gir...
 
DBMS UNIT 5 46 CONTAINS NOTES FOR THE STUDENTS
DBMS UNIT 5 46 CONTAINS NOTES FOR THE STUDENTSDBMS UNIT 5 46 CONTAINS NOTES FOR THE STUDENTS
DBMS UNIT 5 46 CONTAINS NOTES FOR THE STUDENTS
 
Predictive Precipitation: Advanced Rain Forecasting Techniques
Predictive Precipitation: Advanced Rain Forecasting TechniquesPredictive Precipitation: Advanced Rain Forecasting Techniques
Predictive Precipitation: Advanced Rain Forecasting Techniques
 
jll-asia-pacific-capital-tracker-1q24.pdf
jll-asia-pacific-capital-tracker-1q24.pdfjll-asia-pacific-capital-tracker-1q24.pdf
jll-asia-pacific-capital-tracker-1q24.pdf
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
如何办理澳洲拉筹伯大学毕业证(LaTrobe毕业证书)成绩单原件一模一样
 
ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...
ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...
ℂall Girls In Navi Mumbai Hire Me Neha 9910780858 Top Class ℂall Girl Serviℂe...
 
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
Abortion Clinic in Kempton Park +27791653574 WhatsApp Abortion Clinic Service...
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
 
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarjSCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
SCI8-Q4-MOD11.pdfwrwujrrjfaajerjrajrrarj
 
Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?
 
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get CytotecAbortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
Abortion pills in Doha {{ QATAR }} +966572737505) Get Cytotec
 
Seven tools of quality control.slideshare
Seven tools of quality control.slideshareSeven tools of quality control.slideshare
Seven tools of quality control.slideshare
 
DS Lecture-1 about discrete structure .ppt
DS Lecture-1 about discrete structure .pptDS Lecture-1 about discrete structure .ppt
DS Lecture-1 about discrete structure .ppt
 
Ranking and Scoring Exercises for Research
Ranking and Scoring Exercises for ResearchRanking and Scoring Exercises for Research
Ranking and Scoring Exercises for Research
 
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATIONCapstone in Interprofessional Informatic  // IMPACT OF COVID 19 ON EDUCATION
Capstone in Interprofessional Informatic // IMPACT OF COVID 19 ON EDUCATION
 
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Introduction to Statistics Presentation.pptx
Introduction to Statistics Presentation.pptxIntroduction to Statistics Presentation.pptx
Introduction to Statistics Presentation.pptx
 
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
Jual obat aborsi Bandung ( 085657271886 ) Cytote pil telat bulan penggugur ka...
 

1 intro history

  • 1. Tesseract Tutorial: DAS 2014 Tours France 1. Motivation and History of the Tesseract OCR Engine Lessons Learned from What Worked and What Didn't Ray Smith, Google Inc.
  • 2. Tesseract Tutorial: DAS 2014 Tours France What is Tesseract?
  • 3. Tesseract Tutorial: DAS 2014 Tours France Tesseract Timeline 4MB 16MB 64MB 256MB 3GB 24GB 10MHz 25MHz 100MHz 166MHz 3.5GHz 12 x 3.5GHz Development machine Memory/Speed: 3.02 3.01 3.00 2.01-2 2.03 2.04 1.01-4
  • 4. Tesseract Tutorial: DAS 2014 Tours France The Stealth Era: 1984-1994
  • 5. Tesseract Tutorial: DAS 2014 Tours France Dest has a scanner with built-in OCR with >99.5% accuracy. Office equipment trade-show: Earl's Court, London late 1984
  • 6. Tesseract Tutorial: DAS 2014 Tours France Dest has a scanner with built-in OCR with >99.5% accuracy. Caveat: It only recognizes 8 fonts from IBM Selectric "golf-ball" typewriters. Office equipment trade-show: Earl's Court, London late 1984
  • 7. Tesseract Tutorial: DAS 2014 Tours France Office equipment trade-show: Earl's Court, London late 1984 For documents conventional OCR can't handle, Kurzweil offers a better approach: ICR. For almost two decades, optical character recognition systems have been widely used to provide automated text entry into computerised systems. Yet in all this time, conventional OCR systems have never overcome their in- ability to read more than a handful of type fonts and page formats. Propor- tionally spaced type (which includes vir- tually all typeset copy), laser printer fonts, and even many non-proportional typewriter fonts, have remained beyond the reach of these systems. And as a result, conventional OCR has never achieved more than a marginal impact on the total number of documents needing conversion into digital form.
  • 8. Tesseract Tutorial: DAS 2014 Tours France Early Lessons:
  • 9. Tesseract Tutorial: DAS 2014 Tours France Early Lessons: ● Be able to OCR your own sales literature!
  • 10. Tesseract Tutorial: DAS 2014 Tours France Early Lessons: ● Be able to OCR your own sales literature! ● OCR should distinguish text from non-text.
  • 11. Tesseract Tutorial: DAS 2014 Tours France Early Lessons: ● Be able to OCR your own sales literature! ● OCR should distinguish text from non-text. ● OCR should read white-on gray and black-on-gray as easily as black-on-white.
  • 12. Tesseract Tutorial: DAS 2014 Tours France Early Lessons: ● Be able to OCR your own sales literature! ● OCR should distinguish text from non-text. ● OCR should read white-on gray and black-on-gray as easily as black-on-white. Decision: Extract outlines from grayscale images and features from the outlines. ● Profound impact. ● Key differentiator.
  • 13. Tesseract Tutorial: DAS 2014 Tours France Connected component outlines vs bounding boxes: Ninja often ● Bounding boxes of characters often overlap without the characters actually touching.
  • 14. Tesseract Tutorial: DAS 2014 Tours France How to extract features from Outlines? Outline Skeleton Topological Features
  • 15. Tesseract Tutorial: DAS 2014 Tours France Skeletonization is Unreliable Outline: Serifed Skeleton: Decorated Arrrrh! Lesson: If there are a lot of papers on a topic, there is most likely no good solution, at least not yet, so try to use something else.
  • 16. Tesseract Tutorial: DAS 2014 Tours France Topological features are Brittle Damage to 'o' produces vastly different feature sets: Standard 'o' Broken 'o' Filled 'o' Lesson: Features must be as invariant as possible to as many as possible of the expected degradations.
  • 17. Tesseract Tutorial: DAS 2014 Tours France Shrinking features and inappropriate statistics Segments of the polygonal Even smaller features Approximation Statistical: Geometric: Lesson: Statistical Independence is difficult to dodge.
  • 18. Tesseract Tutorial: DAS 2014 Tours France Now it's Too Slow! ~2000 characters per page x ~100 character classes (English) x 32 fonts x ~20 prototype features x ~100 unknown features x 3 feature dimensions = 38bn distance calculations per page...
  • 19. Tesseract Tutorial: DAS 2014 Tours France Now it's Too Slow! ~2000 characters per page x ~100 character classes (English) x 32 fonts x ~20 prototype features x ~100 unknown features x 3 feature dimensions = 38bn distance calculations per page... ... on a 25MHz machine.
  • 20. Tesseract Tutorial: DAS 2014 Tours France What Were Other OCR Systems doing in 1988-1990? Calera Wordscan: Required a $2000 "real computer" add-on board to run a fixed dimension feature space on a PC (that used a 12.5MHz 80286 in those days): Recognita: Decision tree using topological-like features. Very fast in software. Accuracy degraded very fast on poor quality. Neural Networks: Were just becoming popular. Would there be a startup threat?
  • 21. Tesseract Tutorial: DAS 2014 Tours France Testing Summary: ● Small test sets are meaningless -> Get lots of compute power and data. ● Test on very different data to the training data. ● Test every change. ● What you measure improves -> Measure lots of dimensions. ● If it can break it will. ● Make your code faster while waiting for tests to run. ● Think/test out of the box...
  • 22. Tesseract Tutorial: DAS 2014 Tours France Creative testing Christmas 1992: Company shutdown for 10 days. What should we do with all that compute power that would otherwise be wasted?
  • 23. Tesseract Tutorial: DAS 2014 Tours France Creative testing Christmas 1992: Company shutdown for 10 days. What should we do with all that compute power that would otherwise be wasted? ● Tune the hand-tuned parameters with a genetic algorithm. ● Process the 400 image test set thresholded at each possible threshold in the range 32-224
  • 24. Tesseract Tutorial: DAS 2014 Tours France Thresholding Experiment Results ● Exposed several bugs ● Some fascinating accuracy results 0 Image Threshold 255 0Errorrate -- Expected Results -- Observed Results
  • 25. Tesseract Tutorial: DAS 2014 Tours France The Dark Ages: 1995-2005: Gathering Dust
  • 26. Tesseract Tutorial: DAS 2014 Tours France The Dark Ages Tesseract: ● Ported to Windows. ● Moore's law: ○ 20x Memory Capacity. ○ 20x Speed. Commercial Engines: ● 1994: Caere buys Calera. ● 1995: First use of character n- grams in commercial system. (Wordscan 3.1). ● 1996: Caere buys Recognita. ● 2000: Scansoft buys Caere. ● Voting improves accuracy, but engine is much slower.
  • 27. Tesseract Tutorial: DAS 2014 Tours France 2005: HP Open Sources Tesseract
  • 28. Tesseract Tutorial: DAS 2014 Tours France The Open Source Era: 2006 - Present Tesseract source is available from: http://code.google.com/p/tesseract-ocr and for direct install on Linux via: apt-get install tesseract-ocr 60+ Languages available.
  • 29. Tesseract Tutorial: DAS 2014 Tours France Open Source OCR is Used for Various Applications From my inbox:
  • 30. Tesseract Tutorial: DAS 2014 Tours France Open Source OCR is Used for Various Applications My reply:
  • 31. Tesseract Tutorial: DAS 2014 Tours France Open Source OCR is Used for Various Applications He doesn't give up that easily:
  • 32. Tesseract Tutorial: DAS 2014 Tours France Recent Improvements ● Internationalize to 60+ Languages. ● Add Full Layout Analysis. ● Table Detection. ● Equation Detection. ● Better Language Models. ● Improved Segmentation Search. ● Word Bigrams.
  • 33. Tesseract Tutorial: DAS 2014 Tours France Results Language Ground Truth Chars (million) Ground Truth words (million) Char Err Rate% Word Err Rate% English 271 44 0.47 6.4 Italian 59 10 0.54 5.41 Russian 23 3.5 0.67 5.57 Simplified Chinese 0.25 0.17 2.52 6.29 Hebrew 0.16 0.03 3.2 10.58 Japanese 10 4.1 4.26 18.72 Vietnamese 0.41 0.09 5.06 19.39 Hindi 2.1 0.41 6.43 28.62 Thai 0.19 0.01 21.31 80.53
  • 34. Tesseract Tutorial: DAS 2014 Tours France Thanks for Listening! Questions?