SlideShare uma empresa Scribd logo
1 de 4
Baixar para ler offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1505
SMART PARKING SYSTEM USING IOT
Ojas Amit Pethe1, Aditya Milind Bhabhe1, Saurabh Kiran Ambardekar1, Prof. Nilesh A. Lakade2
1Department of Electronics Engineering, K. J. Somaiya College of Engineering (Autonomous),
(Affiliated to University of Mumbai), Mumbai, India
2Assistant Professor, Department of Electronics Engineering, K. J. Somaiya College of Engineering (Autonomous),
(Affiliated to University of Mumbai), Mumbai, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The objective of this paper is to give a better
solution to the troublesome problem of car parking. An
attempt has been made to make an IoT enabled parking
system, thus reducing the human efforts, cost, time to
search for an empty slot and also the fuel consumption of the
vehicle. While developing this system, some existing
techniques which are based on IoT were studied, this
technique differs from those by means that there isaprovision
made to store the user entries and their car's number plate
in the database. The entire flow of the process is controlled
by Raspberry Pi. Lastly, this paper incorporates the images of
working website displaying availability of slots in red and
green and also the entries in database alongside the
user number plate.
Key Words: Open ALPR, Website, Database
1. INTRODUCTION
With rapidly changing technology, the concept of Smart City
has become very popular around the world. ‘Smart’
means everything is connected to each other through
Internet of Things(IoT) and data at each node is
collected and is used to find different trends. As a small step
towards such Smart City, we intend to make a parking arena
without any human intervention. Especially,inhugeparking
spaces, it becomes very difficult to find a place to park
without any human assistance. Not only it is a very time
consuming process but also more fuel is consumed by
the vehicle leading to air pollution. So if the driver already
know, which slot is available it will be easier to park a
vehicle also saving time and energy. Attempts have been
made to give an effective solution to manage parking
arenas automatically but none of them gives a completely
integrated solution. One of the techniques Smart car
parking system using IOT concept, used IR sensors to
check the availability of the parking slots along with
temperature and light sensors which were then
connected to microcontroller. Ethernet shield and
microcontroller formed connection between sensors and
cloud. Simple webpage was created to check data from
end nodes i.e sensors [1]. On the other hand, Smart Car
Parking system was developed with help of Arduino,
using Network Protocols to connect the device to the
cloud. Cloud Computing was used to exchange the
information or data in between the hardware and an
end- user device. The proposed project also
displayed temperature changes and varying light
conditions in the parking slot [2]. Other techniques also
involve the use of traditional controllers for making a
smart parking system one of which is an IoT based
system which uses a PIC microcontroller with IR sensors
and WiFi module interfaced to it. It sends the sensor
data over WiFi to the mobile connected to the same
network to which the controller is connected. The entry to
the parking lot in this case is password protected [3].
A system has been developed which focuses on Slot
security asking for user credentials at the entrance.Theuser
can see the available slots throughan websiteonlyiftheuser
enters the required details. It also captures the vehicle
number plate and stores the number plate value in the
database. If the number plate is not detected at the
entrance, the user is not able to access the parking space;
this ensures that all necessary details are stored.
Number Plate Detection is done using Image
Processing tools [4].
2. BLOCK DIAGRAM
Fig-1: Flow Chart
Fig-1 shows the proposed technique. The car arrives at
the entrance. It is detected by the IR sensor at the entrance.
QR code is available at the entrance which contains
the link of the website. The user now has toscantheQRcode
that directs the user to that particular website. User has to
enter the details in the form of that Website and can see the
slots both available/unavailable. Once the car is detected by
the IR sensor the Pi-camera captures the image and sends
the data to the Open ALPR cloud. The number plate is
detected. Both user details and the results are stored in
database for future access. Once the number plate from the
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1506
cloud is obtained it is indicated by the status code (for
success = 200) when the code runs and once this status code
is achieved, the entrance gate opens. The user enters the
parking area and avails the slot. At the exit, IR sensor
detects the car and till the time IR sensor gives high output,
the exit gates are opened, the user now can exit the parking
area.When all the parking slots are full the HTML page will
now show a message indicating Unavailable Slots and
also the car will not be detected at entrance.
3. HARDWARE DESCRIPTION
3.1 Microcontroller:
Raspberry pi is used as microcontroller for processing
the data coming from sensors. Due to its Small size, high
processing power, we preferred using Raspberry pi over
other processors available in the market. Another
advantage is that, Raspberry pi is a general purpose
computer having its own operating system such as
Raspbian, Windows 10 IOT core, Moebius etc. For our
model we installed Raspbian which is the most popular
operating system for IOT applications
Raspbian has been used extensively because itisbasedon
Debian (Linux) which makes it easy to use and it also
protects against malware. The output of the IR sensors is
saved in the text file in Raspberry pi.
3.2 Sensors:
We used IR sensors at the parking slots and at both the
gates. These sensors are connected to the microcontroller
through wires. The output pins are connected to the
GPIO pins of Raspberry pi. Raspberry pi has total 26
GPIO pins out of which 2 are used by the servo motors.
Hence total 24 sensors can be connected to Raspberry Pi
through wires. These connections can also be made
wireless and the number of sensors integrated can be
increased by using MUX [5].
3.3 Servo Motors:
Two servo motors are used at the ENTRANCE and EXIT
gate which are interfaced using the python script. The angle
of rotation of both the motors is specified in the python
script. Like IR sensors servo motors are also connected with
wired connection.
3.4 Pi-Camera Module:
The function of camera module is to capture the image
and pass these pictures to the processing unit. In our model,
pictures are captured when the camera module receives the
signal from IR signal which is situated at the entrance gate.
4. SOFTWARE DESCRIPTION
4.1 Number Plate Detection using Open ALPR:
We have used Open ALPR (Automatic License Plate
Recognition) tool to recognize the vehicle number plate. We
are calling the API ,designed to convert an input image
to the text document featuring the number plate from the
input image, using a Python Script based JSON tool. Open
ALPR is a cloud service and an open source platform. It
operatesas a pipeline based architecturewheretheinputisa
Base64 converted image file, in between stages are based on
image processing and the final stage is to extract the text
from the cloud platform using a Python code. The Image
Processing steps include Detection: to find the license plate
regions, Binarization: to convert the detected image from
RGB to monochrome, Edge Detection: to detect the possible
license plate edges, Character Segmentation: to segment the
preprocessed image, OCR: Optical Character Recognition is
an advanced tool to detect text from an image file, Post
Processing: to arrange into a set of best possible
OCR detected text files. The extracted output plate of
great precision is stored and also used to as a parameter
to control the entry gate[6].
4.2 Database:
We created database which has three columns for user’s
name, contact number and car number. User has to fill his
name and contact number in the form created on
websitebefore entering the parking area. Car’snumber gets
added in the third column once the camera module
captures the image of the number plate and the required
text from the captured image is extracted. Database was
added in the model for security purposes.
Fig-2: Database
4.3 Website and Server Implementation:
A user interface is created in this case a website
through which sensor data can be seen by the user.
Webpage was created using HTML and CSS and these pages
are then linked to the database. Raspberry pi used has the
ability to host a server locally. The required packages for
installing apache server which is the local server were
installed and the HTML and CSS scripts were then moved to
the specified directory. When the user puts the link of
the webpage on the search engine the webpage is displayed
on the users phone. To simplify this process we created
QR code linked to the webpage.
There are two separate servers for front-end and back-
end programming. Apache server is a front-end server and
node.js is the back-end server. The data of theparkingslotsis
collected by Raspberry Pi and stored in a text file. An API has
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1507
been created to communicate between front-end and the
back-end server. API was created using Express
framework of node.js. This API call is made by the webpage
displaying the availability of slots. AJAX i.e. Asynchronous
Java script and XML is used to call the API after every
second to update the HTML web page regularly.
For database creation, PHP coding was used. When the
QR code is scanned and the user enters the details, the PHP
code gets these details and stores them into CSV file. The
next entered user credential is appended to the same csv
file creating an offline database. This PHP code also reads
the text file containing the scanned Number plate data and
appends this string into the third column of the same csv
file. So, a database has been created which stores all the
database data which all is controlled by a PHP file.
5. COMPONENT INTERFACING
Fig-3: Component Interfacing
6. RESULTS
6.1 Sensor Outputs:
Fig-4 shows the change in response of IR sensor as the
car enters or leaves the slot. This result is stored in a
text document. This text document is then referred to read
the slot values and change the indicating colors on the
website. Sensors give output as 0 when it sense any object
and 1 when object is absent.
Fig-4: Response of IR Sensors
6.2 License Plate Detection
Fig-5 displays the output of the steps carried out at the
entrance and also the number plate which is detected.
This number plate is stored in the database alongside
the user credentials.
Fig-5: Detected Number Plate
6.3 Dynamic Coding:
The Javascript code, required to make a dynamic
website, is run using the terminal command as shown in
Fig-6. This also hits the webpage every one seconds
using an API that makes the necessary changes.
Fig-6: API listening
6.4 Website:
a) Starting Page: This is an interactive webpage, as it is
visible on a mobile screen. This page has two possible
cases:
i) When some slots are empty, this HTML page is
developed to acquire the user credentials and store
the inputs to a database. The first tag i.e Name is set such
that at least six characters can be entered, also the
second tag i.e Contact is set to get only numeric
values. This website is achieved after the user scans
the QR code. This can be observed in Fig-7a.
ii) When all slots are occupied, the Webpage now will
display “No Slots Available”. We can see this in Fig-7b
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1508
Fig-7a: Case i Fig-7b: Case ii
b) Final Page: Fig-8 is the correct representationofslotsasit
is accessed from the user device. This ensures that the user
is known about the availability of parking slot as he enters
the parking area. These changes are made with
change in respective IR sensors connected at every slot. All
the changes are saved in a file and this file is referred by the
website to make the variations visible. At this instance the
webpage is showing Slot 1, Slot 2 and Slot 3 occupied
and Slot 4 is free.
Fig-8: Slot Availability
CONCLUSION
A coherent approach to solve the issue of Car parking was
developed overshadowing system security and
robustness. Also the Vehicle license plate recognition
based on real time captured images was achieved. This
technique ensured security at operational levels and also
made it easier for the user to avail the parking. A
prototype was designed to illustrate the proposed modeland
the results are noted.
REFERENCES
[1] Gouhar Fati, Chanukya Ranima, Imtiyazunnisa
Begum, “Smart Parking System Using IOT and WSN”,
International Journal & Magazine of Engineering,
Management & Research, 2017,Volume 4, Issue No.3
(March), ISSN 2348-4845
[2] Vrushali D. Ichake , Priya D. Shitole, Mohsina Momin,
Kanchan S Thakare (Assistant Professor), “Smart Car
Parking System Based on IOT Concept”,International
Journal of Engineering Science Invention ISSN (Online):
2319 – 6734, ISSN (Print): 2319 – 6726,
www.ijesi.org , Volume 5 Issue 3, March 2016, PP.48-54
[3] Dr. Y Raghavender Rao, “Automatic Car Parking
System using Internet of Things (IOT),” International
Journal of Engineering Technology Science and
Research, IJETSR, www.ijetsr.com, ISSN 2394 - 3386,
Volume 4, Issue 5, May 2017
[4] Pratiksha Jain, Neha Chopra, Vaishali Gupta,“Automatic
License Plate Recognition using OpenCV,” International
Journal of Computer Applications Technology and
Research Volume 3– Issue 12, 756 - 761, 2014, ISSN:-
2319–8656
[5] Abhirup Khanna, RishiAnand,“IOTBasedSmart Parking
System,” 2016 International Conference on Internet of
Things and Applications (IOTA), Maharashtra Institute
of Technology, Pune, India 22 Jan - 24 Jan, 2016
[6]"Openalpr/openalpr."GitHub.
https://github.com/openalpr/openalpr
[7] Mr Basavaraju S R, “Automatic Smart Parking System
using Internet of Things (IOT),” International Journal of
Scientific and Research Publications,Volume5,Issue12,
December 2015, ISSN 2250-3153

Mais conteúdo relacionado

Mais procurados

Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...
Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...
Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...PremChand190
 
IRJET-Smart Parking System
IRJET-Smart Parking SystemIRJET-Smart Parking System
IRJET-Smart Parking SystemIRJET Journal
 
Internet of Things based smart campus - smart car parking
Internet of Things based smart campus - smart car parkingInternet of Things based smart campus - smart car parking
Internet of Things based smart campus - smart car parkingChandan Taluja
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSaipandu143
 
Smart parking system
Smart parking systemSmart parking system
Smart parking systemslmnsvn
 
Smart parking system
Smart parking systemSmart parking system
Smart parking systemEditorIJAERD
 
IOT Based Smart Parking System
IOT Based Smart Parking SystemIOT Based Smart Parking System
IOT Based Smart Parking SystemIRJET Journal
 
IRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking SystemIRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking SystemIRJET Journal
 
THE SMART PARKING MANAGEMENT SYSTEM
THE SMART PARKING MANAGEMENT SYSTEMTHE SMART PARKING MANAGEMENT SYSTEM
THE SMART PARKING MANAGEMENT SYSTEMijcsit
 
IOT Based Smart Parking and Damage Detection Using RFID
IOT Based Smart Parking and Damage Detection Using RFIDIOT Based Smart Parking and Damage Detection Using RFID
IOT Based Smart Parking and Damage Detection Using RFIDMaheshMoses
 
An IOT based Smart Traffic Management System
An IOT based Smart Traffic Management SystemAn IOT based Smart Traffic Management System
An IOT based Smart Traffic Management SystemAI Publications
 
Traffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoTTraffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoTijtsrd
 
Smart car parking system
Smart car parking systemSmart car parking system
Smart car parking systemAmit Shukla
 
A Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry piA Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry piAzharo7
 
Smart parking system using IOT
Smart parking system using IOTSmart parking system using IOT
Smart parking system using IOTUdit Deo
 
IoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular TrafficIoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular TrafficMphasis
 
A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...
A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...
A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...csandit
 
IRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using ArduinoIRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using ArduinoIRJET Journal
 
A Cloud-Based Smart-Parking System Based on Internet-of-Things Technologies
A Cloud-Based Smart-Parking System Based on Internet-of-Things TechnologiesA Cloud-Based Smart-Parking System Based on Internet-of-Things Technologies
A Cloud-Based Smart-Parking System Based on Internet-of-Things TechnologiesKamal Spring
 

Mais procurados (20)

Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...
Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...
Intelligent Remote Monitoring of Parking Spaces Using Licensed and Unlicensed...
 
IRJET-Smart Parking System
IRJET-Smart Parking SystemIRJET-Smart Parking System
IRJET-Smart Parking System
 
Internet of Things based smart campus - smart car parking
Internet of Things based smart campus - smart car parkingInternet of Things based smart campus - smart car parking
Internet of Things based smart campus - smart car parking
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOT
 
Smart parking system
Smart parking systemSmart parking system
Smart parking system
 
Smart parking system
Smart parking systemSmart parking system
Smart parking system
 
IOT Based Smart Parking System
IOT Based Smart Parking SystemIOT Based Smart Parking System
IOT Based Smart Parking System
 
IRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking SystemIRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking System
 
THE SMART PARKING MANAGEMENT SYSTEM
THE SMART PARKING MANAGEMENT SYSTEMTHE SMART PARKING MANAGEMENT SYSTEM
THE SMART PARKING MANAGEMENT SYSTEM
 
IOT Based Smart Parking and Damage Detection Using RFID
IOT Based Smart Parking and Damage Detection Using RFIDIOT Based Smart Parking and Damage Detection Using RFID
IOT Based Smart Parking and Damage Detection Using RFID
 
An IOT based Smart Traffic Management System
An IOT based Smart Traffic Management SystemAn IOT based Smart Traffic Management System
An IOT based Smart Traffic Management System
 
Traffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoTTraffic Monitoring and Control System Using IoT
Traffic Monitoring and Control System Using IoT
 
Smart car parking system
Smart car parking systemSmart car parking system
Smart car parking system
 
A Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry piA Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry pi
 
Smart parking system using IOT
Smart parking system using IOTSmart parking system using IOT
Smart parking system using IOT
 
IoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular TrafficIoT Solution To Regulate Vehicular Traffic
IoT Solution To Regulate Vehicular Traffic
 
A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...
A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...
A PROPOSED MODEL FOR TRAFFIC SIGNAL PREEMPTION USING GLOBAL POSITIONING SYSTE...
 
Smart Parking
Smart Parking Smart Parking
Smart Parking
 
IRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using ArduinoIRJET - Smart Car Parking System using Arduino
IRJET - Smart Car Parking System using Arduino
 
A Cloud-Based Smart-Parking System Based on Internet-of-Things Technologies
A Cloud-Based Smart-Parking System Based on Internet-of-Things TechnologiesA Cloud-Based Smart-Parking System Based on Internet-of-Things Technologies
A Cloud-Based Smart-Parking System Based on Internet-of-Things Technologies
 

Semelhante a IRJET- Smart Parking System using IoT

IRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android ApplicationIRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android ApplicationIRJET Journal
 
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERSMOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERSIRJET Journal
 
IRJET- Smart Parking System in Multi-Storey Buildings
IRJET- Smart Parking System in Multi-Storey BuildingsIRJET- Smart Parking System in Multi-Storey Buildings
IRJET- Smart Parking System in Multi-Storey BuildingsIRJET Journal
 
IRJET- Automatic Toll Collection System using ALPR and Biometrics System
IRJET- Automatic Toll Collection System using ALPR and Biometrics SystemIRJET- Automatic Toll Collection System using ALPR and Biometrics System
IRJET- Automatic Toll Collection System using ALPR and Biometrics SystemIRJET Journal
 
IRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR CodeIRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR CodeIRJET Journal
 
akash seminar 2.pdf
akash seminar 2.pdfakash seminar 2.pdf
akash seminar 2.pdfAkash297017
 
Smart Car Parking System Based on IoT Concept
Smart Car Parking System Based on IoT ConceptSmart Car Parking System Based on IoT Concept
Smart Car Parking System Based on IoT Conceptinventionjournals
 
IRJET- Automatic Toll Collection System using ALPR and Biometrics System.
IRJET- Automatic Toll Collection System using ALPR and Biometrics System.IRJET- Automatic Toll Collection System using ALPR and Biometrics System.
IRJET- Automatic Toll Collection System using ALPR and Biometrics System.IRJET Journal
 
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...IRJET Journal
 
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLABCOMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLABIRJET Journal
 
IRJET- IoT based Motion Control System of a Robotic car
IRJET-  	  IoT based Motion Control System of a Robotic carIRJET-  	  IoT based Motion Control System of a Robotic car
IRJET- IoT based Motion Control System of a Robotic carIRJET Journal
 
IRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFIDIRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFIDIRJET Journal
 
IRJET- Vehicle Accident Prevention System
IRJET-  	  Vehicle Accident Prevention SystemIRJET-  	  Vehicle Accident Prevention System
IRJET- Vehicle Accident Prevention SystemIRJET Journal
 
IRJET- Geo-Based Smart Parking Automation System
IRJET-  	  Geo-Based Smart Parking Automation SystemIRJET-  	  Geo-Based Smart Parking Automation System
IRJET- Geo-Based Smart Parking Automation SystemIRJET Journal
 
IRJET- Automatic Toll Collection System based on Embedded System LINUX
IRJET-  	  Automatic Toll Collection System based on Embedded System LINUXIRJET-  	  Automatic Toll Collection System based on Embedded System LINUX
IRJET- Automatic Toll Collection System based on Embedded System LINUXIRJET Journal
 
IRJET- Smart Parking Assistance By Nameplate Recognition Using OCR
IRJET-  	  Smart Parking Assistance By Nameplate Recognition Using OCRIRJET-  	  Smart Parking Assistance By Nameplate Recognition Using OCR
IRJET- Smart Parking Assistance By Nameplate Recognition Using OCRIRJET Journal
 
Re-SPark: Reservation based Smart Parking system using FRDM KL-25Z
Re-SPark: Reservation based Smart Parking system using FRDM KL-25ZRe-SPark: Reservation based Smart Parking system using FRDM KL-25Z
Re-SPark: Reservation based Smart Parking system using FRDM KL-25ZIRJET Journal
 
Smart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewSmart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewIRJET Journal
 
Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network Sovan Rout
 

Semelhante a IRJET- Smart Parking System using IoT (20)

IRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android ApplicationIRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android Application
 
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERSMOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
 
IRJET- Smart Parking System in Multi-Storey Buildings
IRJET- Smart Parking System in Multi-Storey BuildingsIRJET- Smart Parking System in Multi-Storey Buildings
IRJET- Smart Parking System in Multi-Storey Buildings
 
IRJET- Automatic Toll Collection System using ALPR and Biometrics System
IRJET- Automatic Toll Collection System using ALPR and Biometrics SystemIRJET- Automatic Toll Collection System using ALPR and Biometrics System
IRJET- Automatic Toll Collection System using ALPR and Biometrics System
 
IRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR CodeIRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR Code
 
akash seminar 2.pdf
akash seminar 2.pdfakash seminar 2.pdf
akash seminar 2.pdf
 
Smart Car Parking System Based on IoT Concept
Smart Car Parking System Based on IoT ConceptSmart Car Parking System Based on IoT Concept
Smart Car Parking System Based on IoT Concept
 
IRJET- Automatic Toll Collection System using ALPR and Biometrics System.
IRJET- Automatic Toll Collection System using ALPR and Biometrics System.IRJET- Automatic Toll Collection System using ALPR and Biometrics System.
IRJET- Automatic Toll Collection System using ALPR and Biometrics System.
 
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
 
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLABCOMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
COMPARATIVE STUDY ON AUTOMATED NUMBER PLATE EXTRACTION USING OPEN CV AND MATLAB
 
IRJET- IoT based Motion Control System of a Robotic car
IRJET-  	  IoT based Motion Control System of a Robotic carIRJET-  	  IoT based Motion Control System of a Robotic car
IRJET- IoT based Motion Control System of a Robotic car
 
IRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFIDIRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFID
 
IRJET- Vehicle Accident Prevention System
IRJET-  	  Vehicle Accident Prevention SystemIRJET-  	  Vehicle Accident Prevention System
IRJET- Vehicle Accident Prevention System
 
IRJET- Geo-Based Smart Parking Automation System
IRJET-  	  Geo-Based Smart Parking Automation SystemIRJET-  	  Geo-Based Smart Parking Automation System
IRJET- Geo-Based Smart Parking Automation System
 
IRJET- Automatic Toll Collection System based on Embedded System LINUX
IRJET-  	  Automatic Toll Collection System based on Embedded System LINUXIRJET-  	  Automatic Toll Collection System based on Embedded System LINUX
IRJET- Automatic Toll Collection System based on Embedded System LINUX
 
IRJET- Smart Parking Assistance By Nameplate Recognition Using OCR
IRJET-  	  Smart Parking Assistance By Nameplate Recognition Using OCRIRJET-  	  Smart Parking Assistance By Nameplate Recognition Using OCR
IRJET- Smart Parking Assistance By Nameplate Recognition Using OCR
 
Re-SPark: Reservation based Smart Parking system using FRDM KL-25Z
Re-SPark: Reservation based Smart Parking system using FRDM KL-25ZRe-SPark: Reservation based Smart Parking system using FRDM KL-25Z
Re-SPark: Reservation based Smart Parking system using FRDM KL-25Z
 
Smart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewSmart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A Review
 
IRJET-V8I686.pdf
IRJET-V8I686.pdfIRJET-V8I686.pdf
IRJET-V8I686.pdf
 
Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network
 

Mais de IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

Mais de IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Último

AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Último (20)

AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 

IRJET- Smart Parking System using IoT

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1505 SMART PARKING SYSTEM USING IOT Ojas Amit Pethe1, Aditya Milind Bhabhe1, Saurabh Kiran Ambardekar1, Prof. Nilesh A. Lakade2 1Department of Electronics Engineering, K. J. Somaiya College of Engineering (Autonomous), (Affiliated to University of Mumbai), Mumbai, India 2Assistant Professor, Department of Electronics Engineering, K. J. Somaiya College of Engineering (Autonomous), (Affiliated to University of Mumbai), Mumbai, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The objective of this paper is to give a better solution to the troublesome problem of car parking. An attempt has been made to make an IoT enabled parking system, thus reducing the human efforts, cost, time to search for an empty slot and also the fuel consumption of the vehicle. While developing this system, some existing techniques which are based on IoT were studied, this technique differs from those by means that there isaprovision made to store the user entries and their car's number plate in the database. The entire flow of the process is controlled by Raspberry Pi. Lastly, this paper incorporates the images of working website displaying availability of slots in red and green and also the entries in database alongside the user number plate. Key Words: Open ALPR, Website, Database 1. INTRODUCTION With rapidly changing technology, the concept of Smart City has become very popular around the world. ‘Smart’ means everything is connected to each other through Internet of Things(IoT) and data at each node is collected and is used to find different trends. As a small step towards such Smart City, we intend to make a parking arena without any human intervention. Especially,inhugeparking spaces, it becomes very difficult to find a place to park without any human assistance. Not only it is a very time consuming process but also more fuel is consumed by the vehicle leading to air pollution. So if the driver already know, which slot is available it will be easier to park a vehicle also saving time and energy. Attempts have been made to give an effective solution to manage parking arenas automatically but none of them gives a completely integrated solution. One of the techniques Smart car parking system using IOT concept, used IR sensors to check the availability of the parking slots along with temperature and light sensors which were then connected to microcontroller. Ethernet shield and microcontroller formed connection between sensors and cloud. Simple webpage was created to check data from end nodes i.e sensors [1]. On the other hand, Smart Car Parking system was developed with help of Arduino, using Network Protocols to connect the device to the cloud. Cloud Computing was used to exchange the information or data in between the hardware and an end- user device. The proposed project also displayed temperature changes and varying light conditions in the parking slot [2]. Other techniques also involve the use of traditional controllers for making a smart parking system one of which is an IoT based system which uses a PIC microcontroller with IR sensors and WiFi module interfaced to it. It sends the sensor data over WiFi to the mobile connected to the same network to which the controller is connected. The entry to the parking lot in this case is password protected [3]. A system has been developed which focuses on Slot security asking for user credentials at the entrance.Theuser can see the available slots throughan websiteonlyiftheuser enters the required details. It also captures the vehicle number plate and stores the number plate value in the database. If the number plate is not detected at the entrance, the user is not able to access the parking space; this ensures that all necessary details are stored. Number Plate Detection is done using Image Processing tools [4]. 2. BLOCK DIAGRAM Fig-1: Flow Chart Fig-1 shows the proposed technique. The car arrives at the entrance. It is detected by the IR sensor at the entrance. QR code is available at the entrance which contains the link of the website. The user now has toscantheQRcode that directs the user to that particular website. User has to enter the details in the form of that Website and can see the slots both available/unavailable. Once the car is detected by the IR sensor the Pi-camera captures the image and sends the data to the Open ALPR cloud. The number plate is detected. Both user details and the results are stored in database for future access. Once the number plate from the
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1506 cloud is obtained it is indicated by the status code (for success = 200) when the code runs and once this status code is achieved, the entrance gate opens. The user enters the parking area and avails the slot. At the exit, IR sensor detects the car and till the time IR sensor gives high output, the exit gates are opened, the user now can exit the parking area.When all the parking slots are full the HTML page will now show a message indicating Unavailable Slots and also the car will not be detected at entrance. 3. HARDWARE DESCRIPTION 3.1 Microcontroller: Raspberry pi is used as microcontroller for processing the data coming from sensors. Due to its Small size, high processing power, we preferred using Raspberry pi over other processors available in the market. Another advantage is that, Raspberry pi is a general purpose computer having its own operating system such as Raspbian, Windows 10 IOT core, Moebius etc. For our model we installed Raspbian which is the most popular operating system for IOT applications Raspbian has been used extensively because itisbasedon Debian (Linux) which makes it easy to use and it also protects against malware. The output of the IR sensors is saved in the text file in Raspberry pi. 3.2 Sensors: We used IR sensors at the parking slots and at both the gates. These sensors are connected to the microcontroller through wires. The output pins are connected to the GPIO pins of Raspberry pi. Raspberry pi has total 26 GPIO pins out of which 2 are used by the servo motors. Hence total 24 sensors can be connected to Raspberry Pi through wires. These connections can also be made wireless and the number of sensors integrated can be increased by using MUX [5]. 3.3 Servo Motors: Two servo motors are used at the ENTRANCE and EXIT gate which are interfaced using the python script. The angle of rotation of both the motors is specified in the python script. Like IR sensors servo motors are also connected with wired connection. 3.4 Pi-Camera Module: The function of camera module is to capture the image and pass these pictures to the processing unit. In our model, pictures are captured when the camera module receives the signal from IR signal which is situated at the entrance gate. 4. SOFTWARE DESCRIPTION 4.1 Number Plate Detection using Open ALPR: We have used Open ALPR (Automatic License Plate Recognition) tool to recognize the vehicle number plate. We are calling the API ,designed to convert an input image to the text document featuring the number plate from the input image, using a Python Script based JSON tool. Open ALPR is a cloud service and an open source platform. It operatesas a pipeline based architecturewheretheinputisa Base64 converted image file, in between stages are based on image processing and the final stage is to extract the text from the cloud platform using a Python code. The Image Processing steps include Detection: to find the license plate regions, Binarization: to convert the detected image from RGB to monochrome, Edge Detection: to detect the possible license plate edges, Character Segmentation: to segment the preprocessed image, OCR: Optical Character Recognition is an advanced tool to detect text from an image file, Post Processing: to arrange into a set of best possible OCR detected text files. The extracted output plate of great precision is stored and also used to as a parameter to control the entry gate[6]. 4.2 Database: We created database which has three columns for user’s name, contact number and car number. User has to fill his name and contact number in the form created on websitebefore entering the parking area. Car’snumber gets added in the third column once the camera module captures the image of the number plate and the required text from the captured image is extracted. Database was added in the model for security purposes. Fig-2: Database 4.3 Website and Server Implementation: A user interface is created in this case a website through which sensor data can be seen by the user. Webpage was created using HTML and CSS and these pages are then linked to the database. Raspberry pi used has the ability to host a server locally. The required packages for installing apache server which is the local server were installed and the HTML and CSS scripts were then moved to the specified directory. When the user puts the link of the webpage on the search engine the webpage is displayed on the users phone. To simplify this process we created QR code linked to the webpage. There are two separate servers for front-end and back- end programming. Apache server is a front-end server and node.js is the back-end server. The data of theparkingslotsis collected by Raspberry Pi and stored in a text file. An API has
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1507 been created to communicate between front-end and the back-end server. API was created using Express framework of node.js. This API call is made by the webpage displaying the availability of slots. AJAX i.e. Asynchronous Java script and XML is used to call the API after every second to update the HTML web page regularly. For database creation, PHP coding was used. When the QR code is scanned and the user enters the details, the PHP code gets these details and stores them into CSV file. The next entered user credential is appended to the same csv file creating an offline database. This PHP code also reads the text file containing the scanned Number plate data and appends this string into the third column of the same csv file. So, a database has been created which stores all the database data which all is controlled by a PHP file. 5. COMPONENT INTERFACING Fig-3: Component Interfacing 6. RESULTS 6.1 Sensor Outputs: Fig-4 shows the change in response of IR sensor as the car enters or leaves the slot. This result is stored in a text document. This text document is then referred to read the slot values and change the indicating colors on the website. Sensors give output as 0 when it sense any object and 1 when object is absent. Fig-4: Response of IR Sensors 6.2 License Plate Detection Fig-5 displays the output of the steps carried out at the entrance and also the number plate which is detected. This number plate is stored in the database alongside the user credentials. Fig-5: Detected Number Plate 6.3 Dynamic Coding: The Javascript code, required to make a dynamic website, is run using the terminal command as shown in Fig-6. This also hits the webpage every one seconds using an API that makes the necessary changes. Fig-6: API listening 6.4 Website: a) Starting Page: This is an interactive webpage, as it is visible on a mobile screen. This page has two possible cases: i) When some slots are empty, this HTML page is developed to acquire the user credentials and store the inputs to a database. The first tag i.e Name is set such that at least six characters can be entered, also the second tag i.e Contact is set to get only numeric values. This website is achieved after the user scans the QR code. This can be observed in Fig-7a. ii) When all slots are occupied, the Webpage now will display “No Slots Available”. We can see this in Fig-7b
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1508 Fig-7a: Case i Fig-7b: Case ii b) Final Page: Fig-8 is the correct representationofslotsasit is accessed from the user device. This ensures that the user is known about the availability of parking slot as he enters the parking area. These changes are made with change in respective IR sensors connected at every slot. All the changes are saved in a file and this file is referred by the website to make the variations visible. At this instance the webpage is showing Slot 1, Slot 2 and Slot 3 occupied and Slot 4 is free. Fig-8: Slot Availability CONCLUSION A coherent approach to solve the issue of Car parking was developed overshadowing system security and robustness. Also the Vehicle license plate recognition based on real time captured images was achieved. This technique ensured security at operational levels and also made it easier for the user to avail the parking. A prototype was designed to illustrate the proposed modeland the results are noted. REFERENCES [1] Gouhar Fati, Chanukya Ranima, Imtiyazunnisa Begum, “Smart Parking System Using IOT and WSN”, International Journal & Magazine of Engineering, Management & Research, 2017,Volume 4, Issue No.3 (March), ISSN 2348-4845 [2] Vrushali D. Ichake , Priya D. Shitole, Mohsina Momin, Kanchan S Thakare (Assistant Professor), “Smart Car Parking System Based on IOT Concept”,International Journal of Engineering Science Invention ISSN (Online): 2319 – 6734, ISSN (Print): 2319 – 6726, www.ijesi.org , Volume 5 Issue 3, March 2016, PP.48-54 [3] Dr. Y Raghavender Rao, “Automatic Car Parking System using Internet of Things (IOT),” International Journal of Engineering Technology Science and Research, IJETSR, www.ijetsr.com, ISSN 2394 - 3386, Volume 4, Issue 5, May 2017 [4] Pratiksha Jain, Neha Chopra, Vaishali Gupta,“Automatic License Plate Recognition using OpenCV,” International Journal of Computer Applications Technology and Research Volume 3– Issue 12, 756 - 761, 2014, ISSN:- 2319–8656 [5] Abhirup Khanna, RishiAnand,“IOTBasedSmart Parking System,” 2016 International Conference on Internet of Things and Applications (IOTA), Maharashtra Institute of Technology, Pune, India 22 Jan - 24 Jan, 2016 [6]"Openalpr/openalpr."GitHub. https://github.com/openalpr/openalpr [7] Mr Basavaraju S R, “Automatic Smart Parking System using Internet of Things (IOT),” International Journal of Scientific and Research Publications,Volume5,Issue12, December 2015, ISSN 2250-3153