SlideShare a Scribd company logo
Topic:
Text-Recognition
From Images:
PRESENTED BY:
SADIA ZAFAR
170403
Code Implementation:
Classes Used:
 Camera Source,
 Surface View,
 Text Recognizer,
 TextToSpeech and
 Detector
Working:
First the CameraSource gives the camera view on the screen. Then
CameraView combined with the CameraSource sets the properties of camera
screen for example, Back facing camera or front facing camera, frames per
second, Autofocus should be enabled or not and dimensions. CameraSource
class also sends Frames per second to the Detector class synchronously in a
pipeline Structure and it checks if the Detector object can not process given
frames per second then it reduces the frames per second because it is
synced with the Detector. Now In the TextRecognizer API, Detector class
from the help of Detector.
Processor detects these frames and recognizes text with the help of
algorithm explained above. This text is detected as TextBlocks and
saved in a SparseArray which using StringBuilder class makes a string
which represents the whole text in an image. Now this text is given to
TextToSpeech which speaks the text to the user. Two Frames per
second are being read by the Detector on live camera and for each
frame a thread is being run to detect text in the frames(Images) taken
from the camera.
Thank you

More Related Content

PPTX
Analog modulation
PPT
damaro.ppt
PDF
Android development training programme , Day 3
PDF
Fb3110231028
PDF
IRJET- 3D Vision System using Calibrated Stereo Camera
PDF
Smart Face Recognition System Analysis
PDF
Volume 2-issue-6-2119-2124
PDF
Volume 2-issue-6-2119-2124
Analog modulation
damaro.ppt
Android development training programme , Day 3
Fb3110231028
IRJET- 3D Vision System using Calibrated Stereo Camera
Smart Face Recognition System Analysis
Volume 2-issue-6-2119-2124
Volume 2-issue-6-2119-2124

Similar to Text- Recognition from images in Design & Analysis Algorithm (20)

PPT
Android cameraoverview
PDF
Transformer-Based OCR.pdf
PPTX
Remoting and serialization
PDF
What's New in ASP.NET Core 3
PDF
A PHOTO-BASED AUGMENTED REALITY SYSTEM WITH LOW COMPUTATIONAL COMPLEXITY
PDF
Reactive programming with akka
PDF
Iaetsd implementation of aho corasick algorithm
DOC
Tracking my face with matlab ws word format
DOCX
Scene Text detection in Images-A Deep Learning Survey
PDF
INTRODUCTION TO CLIENT SIDE PROGRAMMING
KEY
Exploring variation mechanisms in the automotive industry: a case study
PDF
Tracking my face with matlab
PPTX
project ppt.pptx
PDF
Gg3311121115
PPT
Scmad Chapter13
DOCX
Android animation in android-chapter17
PDF
MyProjects
PPT
Robot Operating Systems (Ros) Overview & (1)
PPT
Robot operating systems (ros) overview & (1)
ODP
Reactors.io
Android cameraoverview
Transformer-Based OCR.pdf
Remoting and serialization
What's New in ASP.NET Core 3
A PHOTO-BASED AUGMENTED REALITY SYSTEM WITH LOW COMPUTATIONAL COMPLEXITY
Reactive programming with akka
Iaetsd implementation of aho corasick algorithm
Tracking my face with matlab ws word format
Scene Text detection in Images-A Deep Learning Survey
INTRODUCTION TO CLIENT SIDE PROGRAMMING
Exploring variation mechanisms in the automotive industry: a case study
Tracking my face with matlab
project ppt.pptx
Gg3311121115
Scmad Chapter13
Android animation in android-chapter17
MyProjects
Robot Operating Systems (Ros) Overview & (1)
Robot operating systems (ros) overview & (1)
Reactors.io
Ad

More from Sadia Zafar (11)

PPTX
Linguistics
PPTX
Passive Voice
PPTX
CPEC its challenges and aspects
PPTX
Trends and Issues in Education.
DOCX
Book review
PPTX
Probability distribution Function & Decision Trees in machine learning
PPTX
Deep Learning in Artificial Intelligence
PPTX
Computer Game Design
PPTX
Extended Reality in Game Design
PPTX
Image Restoration and Reconstruction in Digital Image Processing
PPTX
Technical Writing presentation.
Linguistics
Passive Voice
CPEC its challenges and aspects
Trends and Issues in Education.
Book review
Probability distribution Function & Decision Trees in machine learning
Deep Learning in Artificial Intelligence
Computer Game Design
Extended Reality in Game Design
Image Restoration and Reconstruction in Digital Image Processing
Technical Writing presentation.
Ad

Recently uploaded (20)

PPT
Total quality management ppt for engineering students
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PDF
Well-logging-methods_new................
PPT
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
PPT
Mechanical Engineering MATERIALS Selection
PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
PPTX
Internet of Things (IOT) - A guide to understanding
DOCX
573137875-Attendance-Management-System-original
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PDF
PPT on Performance Review to get promotions
PPTX
Geodesy 1.pptx...............................................
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPTX
Current and future trends in Computer Vision.pptx
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPT
introduction to datamining and warehousing
PDF
III.4.1.2_The_Space_Environment.p pdffdf
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Total quality management ppt for engineering students
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Well-logging-methods_new................
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
Mechanical Engineering MATERIALS Selection
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
Internet of Things (IOT) - A guide to understanding
573137875-Attendance-Management-System-original
R24 SURVEYING LAB MANUAL for civil enggi
Automation-in-Manufacturing-Chapter-Introduction.pdf
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PPT on Performance Review to get promotions
Geodesy 1.pptx...............................................
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
Current and future trends in Computer Vision.pptx
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
introduction to datamining and warehousing
III.4.1.2_The_Space_Environment.p pdffdf
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx

Text- Recognition from images in Design & Analysis Algorithm

  • 2. Code Implementation: Classes Used:  Camera Source,  Surface View,  Text Recognizer,  TextToSpeech and  Detector
  • 3. Working: First the CameraSource gives the camera view on the screen. Then CameraView combined with the CameraSource sets the properties of camera screen for example, Back facing camera or front facing camera, frames per second, Autofocus should be enabled or not and dimensions. CameraSource class also sends Frames per second to the Detector class synchronously in a pipeline Structure and it checks if the Detector object can not process given frames per second then it reduces the frames per second because it is synced with the Detector. Now In the TextRecognizer API, Detector class from the help of Detector.
  • 4. Processor detects these frames and recognizes text with the help of algorithm explained above. This text is detected as TextBlocks and saved in a SparseArray which using StringBuilder class makes a string which represents the whole text in an image. Now this text is given to TextToSpeech which speaks the text to the user. Two Frames per second are being read by the Detector on live camera and for each frame a thread is being run to detect text in the frames(Images) taken from the camera.