SlideShare a Scribd company logo
International Journal of Trendy Research in Engineering and Technology
Volume 3 Issue 5 October 2019
ISSN NO 2582-0958
www.trendytechjournals.com
1
IMAGE PROCESSING BASED INTRUDER DETECTION USING RASPBERRY PI
S.Adhav1
, R.Manthira moorthi1
,
G.Prethija2
1
Final year Students,2
Assistant Professor, Department of Information Technology,
Velammal Engineering College, Chennai-600066, India
ABSTRACT
The current paper is mainly about maintaining a secure
environment and also free from thefts that are happening
in our home. The present paper discusses about the
detection of intruders with the help of the various
devices and software.. OpenCV(open source computer
vision) is the major software that is being used in our
present work. For detecting faces we are using various
algorithms like Haar cascade, linear SVM, deep neural
network etc. The main method that we have proposed in
our work is, if any person comes in front of the pi
camera, first it will look for potential matches that we
have already stored in our system If the module finds a
match then it continues to record until any intruder
comes. If the face is not recognized then the unknown
person’s face will be captured and a snap shot will be
sent to the user’s email. The device is developed using
Raspberry Pi b+ with 1.4 GHz quad core processor,
raspberry pi camera module and a Wireless dongle to
communicate with user’s email.
Key Words: OpenCV, Rassberry pi, python
I INTRODUCTION
Open source computer vision(OpenCV)is a software
that is used to process various images and convert it to
the required format that the user needs. OpenCV
includes a statistical machine learning library that
contains some of the algorithms like SVM(support
vector machine),DNN(deep neural network) etc. This
paper presents a robust approach for Face detection and
also providing security to the people who will be staying
alone in the house. Device will be tested on a raspberry
pi platform.The Raspberry Pi is a basic embedded
system and also a low cost single board computer used
to reduce the flaws in systems. Python is the major
scripting language that has been implemented in our
device. Raspberry pi consist of Camera slot Interface
(CSI) to interface the raspberry pi camera.The Pi is
initially connected to the internet through wireless
dongle. The OpenCV software is installed using the
following command lines. Following steps are to be
followed:
1.first step is to install cmake library, which helps us
build the OpenCV build process.
2. Second step is to install the OpenCV files from github
and also extracting it.
3. Third step is to run the make command, which will
install all the required dependencies.
4.Final step is to test whether OpenCV is installed in our
Pi by running some commands.
The Device is set up as shown in Figure. 1a. The Picam
is focused manually towards the persons face. It looks
for a potential match using the counting system. If the
persons face is found then his or her name will pop up.
If the persons face is not detected then that persons face
will be captured and a copy of it will be sent to the users
email. We have a set a timer for about ten second.
Between this time interval if any intruder comes then his
face will be stored in the system for further investigation
and also a photo of the intruder will be sent to the email
of the user.
Fig. 1aBlock diagram of Image processing based Intrusion detection.
II BASIC CONCEPT OF FACE
DETECTION
In general, any digital image processing algorithm
consists of three stages: input, processor and output. In
the input stage image is captured by a camera. It sent to
a particular system to focus on a pixel of image that’s
gives, its output as a processed image. This processed
image is then used to translate after extracting the text
from the image through OCR.
International Journal of Trendy Research in Engineering and Technology
Volume 3 Issue 5 October 2019
ISSN NO 2582-0958
www.trendytechjournals.com
2
Fig. 1b. Procedural flow of image processing based translation
III SYSTEM HARDWARE DESIGN
The Raspberry Pi board is the central module of the
whole embedded image capturing and processing
system as given in figure. 2. Its main parts include: main
processing chip unit, memory, power supply HDMI Out
i.e. VGA display, Ethernet port, and USB ports. The
webcam is connected to Raspberry pi through one of its
USB ports and pushbutton switch S1 to its GPIO pin 16
(or GPIO23) through resistor R2 (1-kilo-ohm)
Fig. 2: Raspberry Pi board (Model B+).
Fig. 3: System Block Diagram
A. Raspberry pi board
The Raspberry Pi is a basic embedded system having a
credit card-sized single board computers developed in
the UK by the Raspberry Pi Foundation [2]. The
Raspberry Pi is based on the Broadcom BCM2835
system on a chip (SOC) which includes an
ARM1176JZF-S Core (ARM V6K)700 MHz CPU
processor, Broadcom Video Core IV GPU having 17
pins, 3.5W of power, and 512 MB of RAM memory.
This main processing chip connects a camera and
display. The Raspberry Pi design does not include a
built in hard disk or solid state drive, instead used an SD
card for booting and long term storage. This board is
intended to run Linux Debian based operating systems.
Python is used as main programming language for
raspberry pi .This Raspberry Pi module has a Samsung
class 4 micro SD card preloaded with the Raspberry Pi
NOOBS (New out of Box Software) package, and a
printed Micro SD card adaptor.
B. Camera interface
The camera module used in this paper is raspberry pi
camera module as shown in the Figure. 3. The camera
module plugs to the CSI connector on the Raspberry Pi.
It's able to deliver clear 5MP resolution image, or 1080p
HD video recording at 30fps. The camera module
attaches to Raspberry Pi by a 15 pin Ribbon Cable, to
the dedicated 15 pin MIPI Camera Serial Interface
(CSI), which was designed especially for interfacing to
cameras. The CSI bus is capable of extremely high data
rates, and it exclusively carries pixel data to the
BCM2835 processor.
International Journal of Trendy Research in Engineering and Technology
Volume 3 Issue 5 October 2019
ISSN NO 2582-0958
www.trendytechjournals.com
3
Fig. 4: Raspberry Pi camera board
C. Pushbutton switch set up
Fig.5 Circuit connection to Raspberry pi board.
In Figure.5, When the GPIO pin is set as input, it is
floating and has no defined voltage level, to detect
whether the input is high or low, simple resistive circuit
is needed so that it is always connected and reads either
high or low voltage. One of the terminals of switch S1
is connected to ground (GPIO pin 6) through pull-down
resistor R1 of 10 kilo ohm. The other terminal is
connected to 3.3V of GPIO pin 1.When S1 is pressed, a
high voltage is read on GPIO pin 16. When S1 is
released, GPIO pin 16 is connected to ground through
R1, hence a low voltage is read by GPIO pin 16.When
pushbutton S1 is pressed, the webcam takes a picture of
the text (after a delay of 10 seconds).
IV METHODOLOGY
The device consists of two main modules, the image
processing module and translator module (Figure.6).
Image processing module captures image using camera,
converting the image into text. Translate module
translates the text into any desired language and
processes it with specific physical characteristics so that
the sound can be understood. Figure 6 shows the block
diagram of the device, 1st block is image processing
module, where OCR converts .jpg to .txt form. 2nd is
voice processing module which translates and gives .txt
to speech output.
Fig.6 Image processing and translator modules
Figure 6 shows the block diagram of the device, 1st
block is image processing module, where OCR converts
.jpg to .txt form. 2nd is translate module which
translates the text and gives audio output.
IV.( i ) IMAGE PROCESSING MODULE USING
OPTICAL CHARACTER RECOGNITION
OCR is important element in this module. OCR or
Optical Character Recognition is a technology that
automatically recognize the character through the
optical mechanism, this technology imitate the ability of
the human senses of sight, where the camera becomes a
replacement for eye and image processing is done in the
computer engine as a substitute for the human brain [3].
Tesseract OCR is a type of OCR engine with matrix
matching [4]. The selection of Tesseract engine is
because of its flexibility and extensibility of machines
and the fact that many communities are active
researchers to develop this OCR engine and also
because Tesseract OCR can support 149 languages. In
this project we are identifying English alphabets. Before
feeding the image to the OCR, it is converted to a binary
image to increase the recognition accuracy. Image
binary conversion is done by using Image magick
software, which is another open source tool for image
manipulation. The output of OCR is the text, which is
stored in a file (speech.txt) .Machines still have defects
such as distortion at the edges and dim light effect, so it
is still difficult for most OCR engines to get high
accuracy text [5]. It needs some supporting and
condition in order to get the minimal defect.
a.Tesseract OCR Implementation
International Journal of Trendy Research in Engineering and Technology
Volume 3 Issue 5 October 2019
ISSN NO 2582-0958
www.trendytechjournals.com
4
The input image is captured by the 5 megapixel fixed
focus raspberry pi camera which supports 720p60,
1080p30 video modes. Based on the specifications of
the Tesseract OCR engine, the minimum character size
that can be read is 20 pixels uppercase letters. Tesseract
OCR accuracy will decrease with the font size less than
14pt.
b.Software Design
Software processes the input image and convert it into
text format. Then the text is translated into any desired
language. The software implementation is showed in
Figure. 7.The image is taken by the user via GPIO pin
(23) that is connected to the button, using interrupt
function. Furthermore, the picture can taken by using
raspistill program with sharpness mode to sharpen the
image. The resulting image has a .jpg format with a
resolution of 720 x 340 pixels.
c. The Translate Module
In this module text is converted to text of desired
language. The output of OCR is the text, which is stored
in a file (speech.txt). Here, Translate Shell software is
used to convert the text to translated speech output.
Translate Shell is an open source translate (TTS)
system, which is available in many languages. In this
project, English TTS system is used for reading the text.
V. DESIGN IMPLEMENTATION
The testing was done using Raspberry Pi platform with
the following specifications:
• SBU Raspberry Pi 2 900 MHz Quad Code ARM
Cortex-A7
• 5mp Raspberry pi b+ camera module
• Bootable SanDisk Ultra 8GB micro SD Card
Steps Followed:
1. Import and Initialization:
Import sub process, time and RPi. GPIO and initialize
GPIO pin 23 as input.
2. Main Program:
The main program [6] provides functions to retrieve and
process the input image, translate it and convert it into
an audio signal. Picture will be taken as soon as push
button switch is pressed then this Captured image is
threshold before feeding it to OCR to increase the
accuracy. The text from the captured image is extracted.
The extracted text is translated to desired language and
given out as audio signal. Overall flow of program is
done as in flowchart fig 7.
Fig.7 Flow chart of Image processing based translator device program
Screenshot Program execution for english to spanish
translation is shown in figure 8
Fig.8 : Program execution-Screenshot
International Journal of Trendy Research in Engineering and Technology
Volume 3 Issue 5 October 2019
ISSN NO 2582-0958
www.trendytechjournals.com
5
VI RESULT
From the present work, the following can be
inferred:
• Text is extracted from the image and
translated to any desired language.
• It recognizes both capital as well as small
letters.
• It recognizes numbers as well.
• Range of reading distance was 38-42cm.
• Character font size should be minimum
14pt.
• Maximum tilt of the text line is 4-5 degree
from the vertical.
• The audio of the translated text is
outputted.
VII CONCLUSION
Text-to-Speech device can change the text image input
into sound with a performance that is high enough and
a readability tolerance of less than 2%, with the average
time processing less than two minutes for A4 paper size.
This portable device can be used independently by
people. Through this method, international travelers can
hear the text images of sign boards, routes in their own
languages
REFERENCES
1. Archana A, Shinde D. Text pre-processing and text segmentation
for OCR. Int. Journal of Computer Science Engineering and
Technology. 2012, 2, 810–12.
2. Simon Monk ,Raspberry Pi Cookbook, published by O'Reilly, 2014
3.Mithe R, Indalkar S, Divekar N. Optical character recognition.
International Journal of Recent Technology and Engineering. 2013
,2,.72-75
4. Smith R. An overview of the Tesseract OCR engine, USA :Google
Inc; 2007.
5. Shah H, Shah A. Optical character recognition of Gujarati
numerical. Proc. Int. Conference on Signals, Systems and
Automation. 2009; 49–53.
6.Umesh P Image Processing in Python, CSI Communications,
December 2012.

More Related Content

What's hot

IRJET- Smart Door Security System using Raspberry Pi with Telegram
IRJET- Smart Door Security System using Raspberry Pi with TelegramIRJET- Smart Door Security System using Raspberry Pi with Telegram
IRJET- Smart Door Security System using Raspberry Pi with Telegram
IRJET Journal
 
The Design and Implementation of Intelligent Campus Security Tracking System
The Design and Implementation of Intelligent Campus Security Tracking SystemThe Design and Implementation of Intelligent Campus Security Tracking System
The Design and Implementation of Intelligent Campus Security Tracking System
IOSR Journals
 
IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4
IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4
IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4
ijtsrd
 
FLOOD ALERTING SYSTEM USING RASPBERRY PI & THINGSPEAK
FLOOD ALERTING SYSTEM USING RASPBERRY PI  & THINGSPEAKFLOOD ALERTING SYSTEM USING RASPBERRY PI  & THINGSPEAK
FLOOD ALERTING SYSTEM USING RASPBERRY PI & THINGSPEAK
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
IRJET - Cryptographic Communication between Two ESP32 Devices
IRJET - Cryptographic Communication between Two ESP32 DevicesIRJET - Cryptographic Communication between Two ESP32 Devices
IRJET - Cryptographic Communication between Two ESP32 Devices
IRJET Journal
 
EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...
EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...
EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...
International Journal of Technical Research & Application
 
Design and implement a smart system to detect intruders and firing using IoT
Design and implement a smart system to detect intruders and firing using IoT Design and implement a smart system to detect intruders and firing using IoT
Design and implement a smart system to detect intruders and firing using IoT
IJECEIAES
 
IRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN CapabilitiesIRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET Journal
 
DIGITAL NOTICEBOARD USING IOT
DIGITAL NOTICEBOARD USING IOTDIGITAL NOTICEBOARD USING IOT
S.W.A.T – Motion Based Intrusion Detection System
S.W.A.T – Motion Based Intrusion Detection SystemS.W.A.T – Motion Based Intrusion Detection System
S.W.A.T – Motion Based Intrusion Detection System
IRJET Journal
 
IRJET - IoT based Anti Theft Detection and Alerting System using Raspberry Pi
IRJET - IoT based Anti Theft Detection and Alerting System using Raspberry PiIRJET - IoT based Anti Theft Detection and Alerting System using Raspberry Pi
IRJET - IoT based Anti Theft Detection and Alerting System using Raspberry Pi
IRJET Journal
 
DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...
DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...
DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...
ijcsit
 
Gesture Based Wireless Air Mouse using Accelerometer
Gesture Based Wireless Air Mouse using AccelerometerGesture Based Wireless Air Mouse using Accelerometer
Gesture Based Wireless Air Mouse using Accelerometer
Associate Professor in VSB Coimbatore
 
Secured Spy for Highly Secured Areas
Secured Spy for Highly Secured AreasSecured Spy for Highly Secured Areas
Secured Spy for Highly Secured Areas
IRJET Journal
 
IRJET - Hand Gesture Recognition and Voice Conversion System using IoT
IRJET -  	  Hand Gesture Recognition and Voice Conversion System using IoTIRJET -  	  Hand Gesture Recognition and Voice Conversion System using IoT
IRJET - Hand Gesture Recognition and Voice Conversion System using IoT
IRJET Journal
 
IRJET - Voice Controlled Robot using NodeMCU
IRJET - Voice Controlled Robot using NodeMCUIRJET - Voice Controlled Robot using NodeMCU
IRJET - Voice Controlled Robot using NodeMCU
IRJET Journal
 
IRJET - IoT based Facial Recognition Quadcopter using Machine Learning Algorithm
IRJET - IoT based Facial Recognition Quadcopter using Machine Learning AlgorithmIRJET - IoT based Facial Recognition Quadcopter using Machine Learning Algorithm
IRJET - IoT based Facial Recognition Quadcopter using Machine Learning Algorithm
IRJET Journal
 
IRJET- IoT Based Swachch Bharat Abhiyan
IRJET-	 IoT Based Swachch Bharat AbhiyanIRJET-	 IoT Based Swachch Bharat Abhiyan
IRJET- IoT Based Swachch Bharat Abhiyan
IRJET Journal
 
Rotary RFID Parking Management Solution Controlled By Microcontroller
Rotary RFID Parking Management Solution Controlled By MicrocontrollerRotary RFID Parking Management Solution Controlled By Microcontroller
Rotary RFID Parking Management Solution Controlled By Microcontroller
IJSRD
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
IAEME Publication
 

What's hot (20)

IRJET- Smart Door Security System using Raspberry Pi with Telegram
IRJET- Smart Door Security System using Raspberry Pi with TelegramIRJET- Smart Door Security System using Raspberry Pi with Telegram
IRJET- Smart Door Security System using Raspberry Pi with Telegram
 
The Design and Implementation of Intelligent Campus Security Tracking System
The Design and Implementation of Intelligent Campus Security Tracking SystemThe Design and Implementation of Intelligent Campus Security Tracking System
The Design and Implementation of Intelligent Campus Security Tracking System
 
IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4
IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4
IoT Assisted Fingerprint Based Door Security System using Raspberry PI 4
 
FLOOD ALERTING SYSTEM USING RASPBERRY PI & THINGSPEAK
FLOOD ALERTING SYSTEM USING RASPBERRY PI  & THINGSPEAKFLOOD ALERTING SYSTEM USING RASPBERRY PI  & THINGSPEAK
FLOOD ALERTING SYSTEM USING RASPBERRY PI & THINGSPEAK
 
IRJET - Cryptographic Communication between Two ESP32 Devices
IRJET - Cryptographic Communication between Two ESP32 DevicesIRJET - Cryptographic Communication between Two ESP32 Devices
IRJET - Cryptographic Communication between Two ESP32 Devices
 
EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...
EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...
EFFICIENT EMBEDDED SURVEILLANCE SYSTEM WITH AUTO IMAGE CAPTURING AND EMAIL SE...
 
Design and implement a smart system to detect intruders and firing using IoT
Design and implement a smart system to detect intruders and firing using IoT Design and implement a smart system to detect intruders and firing using IoT
Design and implement a smart system to detect intruders and firing using IoT
 
IRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN CapabilitiesIRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
 
DIGITAL NOTICEBOARD USING IOT
DIGITAL NOTICEBOARD USING IOTDIGITAL NOTICEBOARD USING IOT
DIGITAL NOTICEBOARD USING IOT
 
S.W.A.T – Motion Based Intrusion Detection System
S.W.A.T – Motion Based Intrusion Detection SystemS.W.A.T – Motion Based Intrusion Detection System
S.W.A.T – Motion Based Intrusion Detection System
 
IRJET - IoT based Anti Theft Detection and Alerting System using Raspberry Pi
IRJET - IoT based Anti Theft Detection and Alerting System using Raspberry PiIRJET - IoT based Anti Theft Detection and Alerting System using Raspberry Pi
IRJET - IoT based Anti Theft Detection and Alerting System using Raspberry Pi
 
DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...
DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...
DESIGN AND IMPLEMENTATION OF A RASPBERRYPI BASED HOME SECURITY AND FIRE SAFET...
 
Gesture Based Wireless Air Mouse using Accelerometer
Gesture Based Wireless Air Mouse using AccelerometerGesture Based Wireless Air Mouse using Accelerometer
Gesture Based Wireless Air Mouse using Accelerometer
 
Secured Spy for Highly Secured Areas
Secured Spy for Highly Secured AreasSecured Spy for Highly Secured Areas
Secured Spy for Highly Secured Areas
 
IRJET - Hand Gesture Recognition and Voice Conversion System using IoT
IRJET -  	  Hand Gesture Recognition and Voice Conversion System using IoTIRJET -  	  Hand Gesture Recognition and Voice Conversion System using IoT
IRJET - Hand Gesture Recognition and Voice Conversion System using IoT
 
IRJET - Voice Controlled Robot using NodeMCU
IRJET - Voice Controlled Robot using NodeMCUIRJET - Voice Controlled Robot using NodeMCU
IRJET - Voice Controlled Robot using NodeMCU
 
IRJET - IoT based Facial Recognition Quadcopter using Machine Learning Algorithm
IRJET - IoT based Facial Recognition Quadcopter using Machine Learning AlgorithmIRJET - IoT based Facial Recognition Quadcopter using Machine Learning Algorithm
IRJET - IoT based Facial Recognition Quadcopter using Machine Learning Algorithm
 
IRJET- IoT Based Swachch Bharat Abhiyan
IRJET-	 IoT Based Swachch Bharat AbhiyanIRJET-	 IoT Based Swachch Bharat Abhiyan
IRJET- IoT Based Swachch Bharat Abhiyan
 
Rotary RFID Parking Management Solution Controlled By Microcontroller
Rotary RFID Parking Management Solution Controlled By MicrocontrollerRotary RFID Parking Management Solution Controlled By Microcontroller
Rotary RFID Parking Management Solution Controlled By Microcontroller
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
 

Similar to IMAGE PROCESSING BASED INTRUDER DETECTION USING RASPBERRY PI

IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET Journal
 
Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...
Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...
Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...
INFOGAIN PUBLICATION
 
IRJET-Raspberry Pi Based Reader for Blind People
IRJET-Raspberry Pi Based Reader for Blind PeopleIRJET-Raspberry Pi Based Reader for Blind People
IRJET-Raspberry Pi Based Reader for Blind People
IRJET Journal
 
IRJET- Optical Character Recognition for Blind using Raspberry Pi
IRJET- Optical Character Recognition for Blind using Raspberry PiIRJET- Optical Character Recognition for Blind using Raspberry Pi
IRJET- Optical Character Recognition for Blind using Raspberry Pi
IRJET Journal
 
Law cost portable machine vision system
Law cost portable machine vision systemLaw cost portable machine vision system
Law cost portable machine vision systemSagarika Muthukumarana
 
Iirdem design and implementation of finger writing in air by using open cv (c...
Iirdem design and implementation of finger writing in air by using open cv (c...Iirdem design and implementation of finger writing in air by using open cv (c...
Iirdem design and implementation of finger writing in air by using open cv (c...
Iaetsd Iaetsd
 
IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...
IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...
IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...
IRJET Journal
 
Implementation of embedded arm9 platform using qt and open cv for human upper...
Implementation of embedded arm9 platform using qt and open cv for human upper...Implementation of embedded arm9 platform using qt and open cv for human upper...
Implementation of embedded arm9 platform using qt and open cv for human upper...
Krunal Patel
 
License Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCVLicense Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCV
Vishal Polley
 
phase3.pptx
phase3.pptxphase3.pptx
phase3.pptx
BalRaj75
 
Selfie booth ppt
Selfie booth pptSelfie booth ppt
Selfie booth ppt
Nandu Bangari
 
IRJET- Intelligent Home Security System using Artificial Intelligence
IRJET- Intelligent Home Security System using Artificial IntelligenceIRJET- Intelligent Home Security System using Artificial Intelligence
IRJET- Intelligent Home Security System using Artificial Intelligence
IRJET Journal
 
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
IRJET Journal
 
IRJET - Eyeblink Controlled Virtual Keyboard using Raspberry Pi
IRJET -  	  Eyeblink Controlled Virtual Keyboard using Raspberry PiIRJET -  	  Eyeblink Controlled Virtual Keyboard using Raspberry Pi
IRJET - Eyeblink Controlled Virtual Keyboard using Raspberry Pi
IRJET Journal
 
Video conferincing
Video conferincingVideo conferincing
Video conferincing
nalawadevaibhav27
 
Ijsrdv1 i4049
Ijsrdv1 i4049Ijsrdv1 i4049
Ijsrdv1 i4049ijsrd.com
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
Rishabh Sharma
 
IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies
IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies
IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies
SLN Technologies - Chennai
 
Raspberry pi ppt
Raspberry pi pptRaspberry pi ppt
Raspberry pi ppt
gummaavinash7
 
Colour tracking robot.pdf
Colour tracking robot.pdfColour tracking robot.pdf
Colour tracking robot.pdf
AbdessatarMazouzi
 

Similar to IMAGE PROCESSING BASED INTRUDER DETECTION USING RASPBERRY PI (20)

IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
 
Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...
Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...
Ijaems apr-2016-17 Raspberry PI Based Artificial Vision Assisting System for ...
 
IRJET-Raspberry Pi Based Reader for Blind People
IRJET-Raspberry Pi Based Reader for Blind PeopleIRJET-Raspberry Pi Based Reader for Blind People
IRJET-Raspberry Pi Based Reader for Blind People
 
IRJET- Optical Character Recognition for Blind using Raspberry Pi
IRJET- Optical Character Recognition for Blind using Raspberry PiIRJET- Optical Character Recognition for Blind using Raspberry Pi
IRJET- Optical Character Recognition for Blind using Raspberry Pi
 
Law cost portable machine vision system
Law cost portable machine vision systemLaw cost portable machine vision system
Law cost portable machine vision system
 
Iirdem design and implementation of finger writing in air by using open cv (c...
Iirdem design and implementation of finger writing in air by using open cv (c...Iirdem design and implementation of finger writing in air by using open cv (c...
Iirdem design and implementation of finger writing in air by using open cv (c...
 
IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...
IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...
IRJET- Voice Assisted Text Reading and Google Home Smart Socket Control Syste...
 
Implementation of embedded arm9 platform using qt and open cv for human upper...
Implementation of embedded arm9 platform using qt and open cv for human upper...Implementation of embedded arm9 platform using qt and open cv for human upper...
Implementation of embedded arm9 platform using qt and open cv for human upper...
 
License Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCVLicense Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCV
 
phase3.pptx
phase3.pptxphase3.pptx
phase3.pptx
 
Selfie booth ppt
Selfie booth pptSelfie booth ppt
Selfie booth ppt
 
IRJET- Intelligent Home Security System using Artificial Intelligence
IRJET- Intelligent Home Security System using Artificial IntelligenceIRJET- Intelligent Home Security System using Artificial Intelligence
IRJET- Intelligent Home Security System using Artificial Intelligence
 
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
 
IRJET - Eyeblink Controlled Virtual Keyboard using Raspberry Pi
IRJET -  	  Eyeblink Controlled Virtual Keyboard using Raspberry PiIRJET -  	  Eyeblink Controlled Virtual Keyboard using Raspberry Pi
IRJET - Eyeblink Controlled Virtual Keyboard using Raspberry Pi
 
Video conferincing
Video conferincingVideo conferincing
Video conferincing
 
Ijsrdv1 i4049
Ijsrdv1 i4049Ijsrdv1 i4049
Ijsrdv1 i4049
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies
IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies
IEEE projects in IOT for B.E / B.Tech Students at SLN Technologies
 
Raspberry pi ppt
Raspberry pi pptRaspberry pi ppt
Raspberry pi ppt
 
Colour tracking robot.pdf
Colour tracking robot.pdfColour tracking robot.pdf
Colour tracking robot.pdf
 

More from IJTRET-International Journal of Trendy Research in Engineering and Technology

A NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATION
A NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATIONA NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATION
A NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATION
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
VIRTUAL TUTOR USING AUGMENTED REALITY
VIRTUAL TUTOR USING AUGMENTED REALITYVIRTUAL TUTOR USING AUGMENTED REALITY
PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...
PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...
PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
NUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCE
NUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCENUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCE
NUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCE
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
EFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATION
EFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATIONEFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATION
EFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATION
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
SAFETY NOTIFICATION AND BUS MONITORING SYSTEM
SAFETY NOTIFICATION AND BUS MONITORING SYSTEMSAFETY NOTIFICATION AND BUS MONITORING SYSTEM
PROVISION MULTI-VENDOR APPLICATION SYSTEM
PROVISION MULTI-VENDOR APPLICATION SYSTEMPROVISION MULTI-VENDOR APPLICATION SYSTEM
REVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEM
REVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEMREVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEM
REVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEM
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOTWARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
Emission Control in CI Engine using Ethanol Emulsion
Emission Control in CI Engine using Ethanol EmulsionEmission Control in CI Engine using Ethanol Emulsion
Emission Control in CI Engine using Ethanol Emulsion
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON THERMOMECHANICAL PROPERTI...
EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON  THERMOMECHANICAL PROPERTI...EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON  THERMOMECHANICAL PROPERTI...
EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON THERMOMECHANICAL PROPERTI...
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
OPTIMIZATION OF QUALITY ENHANCEMENT OF CNC MACHINING PROCESS BY USING NEURA...
OPTIMIZATION OF QUALITY ENHANCEMENT  OF CNC MACHINING PROCESS BY USING  NEURA...OPTIMIZATION OF QUALITY ENHANCEMENT  OF CNC MACHINING PROCESS BY USING  NEURA...
OPTIMIZATION OF QUALITY ENHANCEMENT OF CNC MACHINING PROCESS BY USING NEURA...
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
Analysis of Gravity Die Casted Aluminium parts using MAGMA
Analysis of Gravity Die Casted Aluminium parts  using MAGMAAnalysis of Gravity Die Casted Aluminium parts  using MAGMA
Analysis of Gravity Die Casted Aluminium parts using MAGMA
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
A review on Friction Stir Welding
A review on Friction Stir WeldingA review on Friction Stir Welding
PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE (LA3GA5.5NB0.5O14) CERAMICS...
PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE  (LA3GA5.5NB0.5O14) CERAMICS...PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE  (LA3GA5.5NB0.5O14) CERAMICS...
PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE (LA3GA5.5NB0.5O14) CERAMICS...
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR EXTRACTING ARTIFACT...
AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR  EXTRACTING ARTIFACT...AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR  EXTRACTING ARTIFACT...
AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR EXTRACTING ARTIFACT...
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
PRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICS
PRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICSPRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICS
PRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICS
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
A REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONS
A REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONSA REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONS
A REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONS
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
ONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATION
ONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATIONONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATION
ONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATION
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
AUTOMATION IN ANESTHESIA ADMINISTRATION USING FIELD PROGRAMMABLE GATE ARRAY
AUTOMATION IN ANESTHESIA ADMINISTRATION  USING FIELD PROGRAMMABLE GATE ARRAYAUTOMATION IN ANESTHESIA ADMINISTRATION  USING FIELD PROGRAMMABLE GATE ARRAY
AUTOMATION IN ANESTHESIA ADMINISTRATION USING FIELD PROGRAMMABLE GATE ARRAY
IJTRET-International Journal of Trendy Research in Engineering and Technology
 

More from IJTRET-International Journal of Trendy Research in Engineering and Technology (20)

A NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATION
A NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATIONA NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATION
A NOVEL STEP UP MISO CONVERTER FOR HYBRID ELECTRICAL VEHICLES APPLICATION
 
VIRTUAL TUTOR USING AUGMENTED REALITY
VIRTUAL TUTOR USING AUGMENTED REALITYVIRTUAL TUTOR USING AUGMENTED REALITY
VIRTUAL TUTOR USING AUGMENTED REALITY
 
PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...
PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...
PREDICTIVE DATA MINING ALGORITHMS FOR OPTIMIZED BEST CROP IN SOIL DATA CLASSI...
 
NUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCE
NUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCENUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCE
NUDGE - A DAY PLANNER ANDROID APPLICATION USING ARTIFICIAL INTELLIGENCE
 
EFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATION
EFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATIONEFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATION
EFFECTIVE IN-HOUSE VOTING AND VERIFICATION USING BLOCK CHAIN IMPLEMENTATION
 
SAFETY NOTIFICATION AND BUS MONITORING SYSTEM
SAFETY NOTIFICATION AND BUS MONITORING SYSTEMSAFETY NOTIFICATION AND BUS MONITORING SYSTEM
SAFETY NOTIFICATION AND BUS MONITORING SYSTEM
 
PROVISION MULTI-VENDOR APPLICATION SYSTEM
PROVISION MULTI-VENDOR APPLICATION SYSTEMPROVISION MULTI-VENDOR APPLICATION SYSTEM
PROVISION MULTI-VENDOR APPLICATION SYSTEM
 
REVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEM
REVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEMREVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEM
REVIEW ON: IOT BASED HEART DISEASE MONITORING SYSTEM
 
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOTWARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
WARNING SYSTEM FROM THREAT OF WILD ANIMALS USING IOT
 
Emission Control in CI Engine using Ethanol Emulsion
Emission Control in CI Engine using Ethanol EmulsionEmission Control in CI Engine using Ethanol Emulsion
Emission Control in CI Engine using Ethanol Emulsion
 
EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON THERMOMECHANICAL PROPERTI...
EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON  THERMOMECHANICAL PROPERTI...EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON  THERMOMECHANICAL PROPERTI...
EXPERIMENTAL INVESTIGATION OF CuO NANOPARTICLES ON THERMOMECHANICAL PROPERTI...
 
OPTIMIZATION OF QUALITY ENHANCEMENT OF CNC MACHINING PROCESS BY USING NEURA...
OPTIMIZATION OF QUALITY ENHANCEMENT  OF CNC MACHINING PROCESS BY USING  NEURA...OPTIMIZATION OF QUALITY ENHANCEMENT  OF CNC MACHINING PROCESS BY USING  NEURA...
OPTIMIZATION OF QUALITY ENHANCEMENT OF CNC MACHINING PROCESS BY USING NEURA...
 
Analysis of Gravity Die Casted Aluminium parts using MAGMA
Analysis of Gravity Die Casted Aluminium parts  using MAGMAAnalysis of Gravity Die Casted Aluminium parts  using MAGMA
Analysis of Gravity Die Casted Aluminium parts using MAGMA
 
A review on Friction Stir Welding
A review on Friction Stir WeldingA review on Friction Stir Welding
A review on Friction Stir Welding
 
PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE (LA3GA5.5NB0.5O14) CERAMICS...
PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE  (LA3GA5.5NB0.5O14) CERAMICS...PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE  (LA3GA5.5NB0.5O14) CERAMICS...
PREPARATION OF PURE AND AL SUBSTITUTED LANGANITE (LA3GA5.5NB0.5O14) CERAMICS...
 
AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR EXTRACTING ARTIFACT...
AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR  EXTRACTING ARTIFACT...AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR  EXTRACTING ARTIFACT...
AN IMPROVED NONINVASIVE AND MULTIMODEL PSO ALGORITHM FOR EXTRACTING ARTIFACT...
 
PRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICS
PRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICSPRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICS
PRINCIPLE AND APPLICATIONS OF EJECTION SEAT IN AERONAUTICS
 
A REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONS
A REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONSA REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONS
A REVIEW ON FERRITES – ITS CLASSIFICATION AND APPLICATIONS
 
ONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATION
ONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATIONONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATION
ONLINE BUS PASS GERANERATION AND RENEWAL SYSTEM USING MOBILE APPLICATION
 
AUTOMATION IN ANESTHESIA ADMINISTRATION USING FIELD PROGRAMMABLE GATE ARRAY
AUTOMATION IN ANESTHESIA ADMINISTRATION  USING FIELD PROGRAMMABLE GATE ARRAYAUTOMATION IN ANESTHESIA ADMINISTRATION  USING FIELD PROGRAMMABLE GATE ARRAY
AUTOMATION IN ANESTHESIA ADMINISTRATION USING FIELD PROGRAMMABLE GATE ARRAY
 

Recently uploaded

Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
R&R Consult
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
BrazilAccount1
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 

Recently uploaded (20)

Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 

IMAGE PROCESSING BASED INTRUDER DETECTION USING RASPBERRY PI

  • 1. International Journal of Trendy Research in Engineering and Technology Volume 3 Issue 5 October 2019 ISSN NO 2582-0958 www.trendytechjournals.com 1 IMAGE PROCESSING BASED INTRUDER DETECTION USING RASPBERRY PI S.Adhav1 , R.Manthira moorthi1 , G.Prethija2 1 Final year Students,2 Assistant Professor, Department of Information Technology, Velammal Engineering College, Chennai-600066, India ABSTRACT The current paper is mainly about maintaining a secure environment and also free from thefts that are happening in our home. The present paper discusses about the detection of intruders with the help of the various devices and software.. OpenCV(open source computer vision) is the major software that is being used in our present work. For detecting faces we are using various algorithms like Haar cascade, linear SVM, deep neural network etc. The main method that we have proposed in our work is, if any person comes in front of the pi camera, first it will look for potential matches that we have already stored in our system If the module finds a match then it continues to record until any intruder comes. If the face is not recognized then the unknown person’s face will be captured and a snap shot will be sent to the user’s email. The device is developed using Raspberry Pi b+ with 1.4 GHz quad core processor, raspberry pi camera module and a Wireless dongle to communicate with user’s email. Key Words: OpenCV, Rassberry pi, python I INTRODUCTION Open source computer vision(OpenCV)is a software that is used to process various images and convert it to the required format that the user needs. OpenCV includes a statistical machine learning library that contains some of the algorithms like SVM(support vector machine),DNN(deep neural network) etc. This paper presents a robust approach for Face detection and also providing security to the people who will be staying alone in the house. Device will be tested on a raspberry pi platform.The Raspberry Pi is a basic embedded system and also a low cost single board computer used to reduce the flaws in systems. Python is the major scripting language that has been implemented in our device. Raspberry pi consist of Camera slot Interface (CSI) to interface the raspberry pi camera.The Pi is initially connected to the internet through wireless dongle. The OpenCV software is installed using the following command lines. Following steps are to be followed: 1.first step is to install cmake library, which helps us build the OpenCV build process. 2. Second step is to install the OpenCV files from github and also extracting it. 3. Third step is to run the make command, which will install all the required dependencies. 4.Final step is to test whether OpenCV is installed in our Pi by running some commands. The Device is set up as shown in Figure. 1a. The Picam is focused manually towards the persons face. It looks for a potential match using the counting system. If the persons face is found then his or her name will pop up. If the persons face is not detected then that persons face will be captured and a copy of it will be sent to the users email. We have a set a timer for about ten second. Between this time interval if any intruder comes then his face will be stored in the system for further investigation and also a photo of the intruder will be sent to the email of the user. Fig. 1aBlock diagram of Image processing based Intrusion detection. II BASIC CONCEPT OF FACE DETECTION In general, any digital image processing algorithm consists of three stages: input, processor and output. In the input stage image is captured by a camera. It sent to a particular system to focus on a pixel of image that’s gives, its output as a processed image. This processed image is then used to translate after extracting the text from the image through OCR.
  • 2. International Journal of Trendy Research in Engineering and Technology Volume 3 Issue 5 October 2019 ISSN NO 2582-0958 www.trendytechjournals.com 2 Fig. 1b. Procedural flow of image processing based translation III SYSTEM HARDWARE DESIGN The Raspberry Pi board is the central module of the whole embedded image capturing and processing system as given in figure. 2. Its main parts include: main processing chip unit, memory, power supply HDMI Out i.e. VGA display, Ethernet port, and USB ports. The webcam is connected to Raspberry pi through one of its USB ports and pushbutton switch S1 to its GPIO pin 16 (or GPIO23) through resistor R2 (1-kilo-ohm) Fig. 2: Raspberry Pi board (Model B+). Fig. 3: System Block Diagram A. Raspberry pi board The Raspberry Pi is a basic embedded system having a credit card-sized single board computers developed in the UK by the Raspberry Pi Foundation [2]. The Raspberry Pi is based on the Broadcom BCM2835 system on a chip (SOC) which includes an ARM1176JZF-S Core (ARM V6K)700 MHz CPU processor, Broadcom Video Core IV GPU having 17 pins, 3.5W of power, and 512 MB of RAM memory. This main processing chip connects a camera and display. The Raspberry Pi design does not include a built in hard disk or solid state drive, instead used an SD card for booting and long term storage. This board is intended to run Linux Debian based operating systems. Python is used as main programming language for raspberry pi .This Raspberry Pi module has a Samsung class 4 micro SD card preloaded with the Raspberry Pi NOOBS (New out of Box Software) package, and a printed Micro SD card adaptor. B. Camera interface The camera module used in this paper is raspberry pi camera module as shown in the Figure. 3. The camera module plugs to the CSI connector on the Raspberry Pi. It's able to deliver clear 5MP resolution image, or 1080p HD video recording at 30fps. The camera module attaches to Raspberry Pi by a 15 pin Ribbon Cable, to the dedicated 15 pin MIPI Camera Serial Interface (CSI), which was designed especially for interfacing to cameras. The CSI bus is capable of extremely high data rates, and it exclusively carries pixel data to the BCM2835 processor.
  • 3. International Journal of Trendy Research in Engineering and Technology Volume 3 Issue 5 October 2019 ISSN NO 2582-0958 www.trendytechjournals.com 3 Fig. 4: Raspberry Pi camera board C. Pushbutton switch set up Fig.5 Circuit connection to Raspberry pi board. In Figure.5, When the GPIO pin is set as input, it is floating and has no defined voltage level, to detect whether the input is high or low, simple resistive circuit is needed so that it is always connected and reads either high or low voltage. One of the terminals of switch S1 is connected to ground (GPIO pin 6) through pull-down resistor R1 of 10 kilo ohm. The other terminal is connected to 3.3V of GPIO pin 1.When S1 is pressed, a high voltage is read on GPIO pin 16. When S1 is released, GPIO pin 16 is connected to ground through R1, hence a low voltage is read by GPIO pin 16.When pushbutton S1 is pressed, the webcam takes a picture of the text (after a delay of 10 seconds). IV METHODOLOGY The device consists of two main modules, the image processing module and translator module (Figure.6). Image processing module captures image using camera, converting the image into text. Translate module translates the text into any desired language and processes it with specific physical characteristics so that the sound can be understood. Figure 6 shows the block diagram of the device, 1st block is image processing module, where OCR converts .jpg to .txt form. 2nd is voice processing module which translates and gives .txt to speech output. Fig.6 Image processing and translator modules Figure 6 shows the block diagram of the device, 1st block is image processing module, where OCR converts .jpg to .txt form. 2nd is translate module which translates the text and gives audio output. IV.( i ) IMAGE PROCESSING MODULE USING OPTICAL CHARACTER RECOGNITION OCR is important element in this module. OCR or Optical Character Recognition is a technology that automatically recognize the character through the optical mechanism, this technology imitate the ability of the human senses of sight, where the camera becomes a replacement for eye and image processing is done in the computer engine as a substitute for the human brain [3]. Tesseract OCR is a type of OCR engine with matrix matching [4]. The selection of Tesseract engine is because of its flexibility and extensibility of machines and the fact that many communities are active researchers to develop this OCR engine and also because Tesseract OCR can support 149 languages. In this project we are identifying English alphabets. Before feeding the image to the OCR, it is converted to a binary image to increase the recognition accuracy. Image binary conversion is done by using Image magick software, which is another open source tool for image manipulation. The output of OCR is the text, which is stored in a file (speech.txt) .Machines still have defects such as distortion at the edges and dim light effect, so it is still difficult for most OCR engines to get high accuracy text [5]. It needs some supporting and condition in order to get the minimal defect. a.Tesseract OCR Implementation
  • 4. International Journal of Trendy Research in Engineering and Technology Volume 3 Issue 5 October 2019 ISSN NO 2582-0958 www.trendytechjournals.com 4 The input image is captured by the 5 megapixel fixed focus raspberry pi camera which supports 720p60, 1080p30 video modes. Based on the specifications of the Tesseract OCR engine, the minimum character size that can be read is 20 pixels uppercase letters. Tesseract OCR accuracy will decrease with the font size less than 14pt. b.Software Design Software processes the input image and convert it into text format. Then the text is translated into any desired language. The software implementation is showed in Figure. 7.The image is taken by the user via GPIO pin (23) that is connected to the button, using interrupt function. Furthermore, the picture can taken by using raspistill program with sharpness mode to sharpen the image. The resulting image has a .jpg format with a resolution of 720 x 340 pixels. c. The Translate Module In this module text is converted to text of desired language. The output of OCR is the text, which is stored in a file (speech.txt). Here, Translate Shell software is used to convert the text to translated speech output. Translate Shell is an open source translate (TTS) system, which is available in many languages. In this project, English TTS system is used for reading the text. V. DESIGN IMPLEMENTATION The testing was done using Raspberry Pi platform with the following specifications: • SBU Raspberry Pi 2 900 MHz Quad Code ARM Cortex-A7 • 5mp Raspberry pi b+ camera module • Bootable SanDisk Ultra 8GB micro SD Card Steps Followed: 1. Import and Initialization: Import sub process, time and RPi. GPIO and initialize GPIO pin 23 as input. 2. Main Program: The main program [6] provides functions to retrieve and process the input image, translate it and convert it into an audio signal. Picture will be taken as soon as push button switch is pressed then this Captured image is threshold before feeding it to OCR to increase the accuracy. The text from the captured image is extracted. The extracted text is translated to desired language and given out as audio signal. Overall flow of program is done as in flowchart fig 7. Fig.7 Flow chart of Image processing based translator device program Screenshot Program execution for english to spanish translation is shown in figure 8 Fig.8 : Program execution-Screenshot
  • 5. International Journal of Trendy Research in Engineering and Technology Volume 3 Issue 5 October 2019 ISSN NO 2582-0958 www.trendytechjournals.com 5 VI RESULT From the present work, the following can be inferred: • Text is extracted from the image and translated to any desired language. • It recognizes both capital as well as small letters. • It recognizes numbers as well. • Range of reading distance was 38-42cm. • Character font size should be minimum 14pt. • Maximum tilt of the text line is 4-5 degree from the vertical. • The audio of the translated text is outputted. VII CONCLUSION Text-to-Speech device can change the text image input into sound with a performance that is high enough and a readability tolerance of less than 2%, with the average time processing less than two minutes for A4 paper size. This portable device can be used independently by people. Through this method, international travelers can hear the text images of sign boards, routes in their own languages REFERENCES 1. Archana A, Shinde D. Text pre-processing and text segmentation for OCR. Int. Journal of Computer Science Engineering and Technology. 2012, 2, 810–12. 2. Simon Monk ,Raspberry Pi Cookbook, published by O'Reilly, 2014 3.Mithe R, Indalkar S, Divekar N. Optical character recognition. International Journal of Recent Technology and Engineering. 2013 ,2,.72-75 4. Smith R. An overview of the Tesseract OCR engine, USA :Google Inc; 2007. 5. Shah H, Shah A. Optical character recognition of Gujarati numerical. Proc. Int. Conference on Signals, Systems and Automation. 2009; 49–53. 6.Umesh P Image Processing in Python, CSI Communications, December 2012.