SlideShare ist ein Scribd-Unternehmen logo
1 von 33
SMART WIRELESS SURVEILLANCE MONITORING
SYSTEM USING RASPBERRY PI
ABSTRACT
This project deals with the design and implementation of
Smart surveillance monitoring system using Raspberry
pi. It uses wireless technology to provide essential
security using surveillance system. The proposed
security system captures information and transmits it
via a WiFi to a static IP, which is viewed using a web
browser from any smart device. Raspberry pi controls a
video camera for surveillance. It streams live video and
records the motion detected parts in the cloud and/or in
the windows shared folder for future playback. The
cameras automatically initiate recording when motion is
sensed and the Raspberry pi device stores it in a secured
folder.
INTRODUCTION
• High Definition Surveillance Camera using
raspberry pi is set up in the area which we want to
monitor.
• Live streamed video can be accessed from
anywhere by just entering the static IP assigned to
the System in a web browser.
• Video containing motion is detected and stored in
a cloud (dropbox) or in a separate windows shared
folder.
ADVANTAGES OVER EXISTING SYSTEM
• In CCTV systems there should be a dedicated PC for the module which is
eliminated here.
• A PC can be hacked and the files can be erased while this system
overcomes those problems.
• In this system, authentication is required on the user side inorder to view
the streamed video in the browser.
• Very less expensive when compared to the other existing systems.
• In this system, a wide area can be captured.
• The camera motion can be controlled by the user.
COMPONENTS USED
RASPBERRY PI
A small credit-card sized computer capable of performing various
functionalities such as in surveillance systems, military applications,
SPECIFICATIONS B+
RASPBERRY PI CAMERA MODULE
• 5 MP Camera exclusively made for Raspberry PI
• Can take 1080p High Definition Videos
• Small in size and can be connected directly to the Raspberry PI Board.
• 1080p, 780p and also
Still pictures.
SD CARD
• Raspberry PI has no storage on board.
• SD/micro SD Card stores the OS. The total
memory of the SD card is about 8GB.
• Class 10 is preferred owing to its high speed.
NETWORK ADAPTER
• Wireless network connection is used for the
process of data transfer.
• Wi-Fi USB Adapter that supports speed of
150Mbps is used.
• Edimax is a commonly used Wi-Fi USB
Adapter.
POWER SUPPLY
• A micro-usb plug power supply that supplies
at least 1A of power is used.
• It also runs on a battery.
HOUSING FOR THE CAMERA
• We use a camera housing, so that the size of
the housing is large enough for the Rasperry pi
board to fit in there.
SOFTWARES USED
• Raspbian OS
• PuTTY
• Motion Software
BLOCK DIAGRAM
OS Installation
• At first,install the OS and software to the Raspberry Pi before mounting it all together.
• An OS is the basic operating system software that tells the Raspberry hardware
what to do. Linux is perfect for this.
• We have chosen Raspbian, as it's one of the most advanced OS for
the Raspberry with loads of help and tutorials on the internet.
• We need to prepare the SD card to be able to run Raspbian on the Raspberry
• Insert the prepared SD card with the Raspbian installer on it and attach the power
supply.
• Now make sure your RPI is up to date:
• sudo apt-get install rpi-update
• sudo rpi-update
• And also update all packages:
• sudo apt-get update
• sudo apt-get upgrade
RASPBIAN OS
PuTTY
PuTTY to remotely control your Pi from another PC
• Because having a CCTV camera with a keyboard and HDMI screen hanging
off it is wildly impractical, we want to start accessing and controlling the Pi
remotely as soon as it's been successfully updated. This is possible via SSH
(short for Secure SHell protocol), which is installed by default with Raspbian.
• To access the Pi remotely from a Windows PC, we need to download an
SSH client – we used PuTTY.
• Once the .exe. file has downloaded to your Windows PC, place it
somewhere convenient, such as on your desktop. When we launch it, we
have to enter the IP address of your Pi into the Host Name (or IP address)
field and click Open.
• To save time later, you might want to click Save first and give the
connection a relevant name – we've chosen RPi. We can find the Pi's IP
address by either finding it in your router's management web page (you
might also like to ask the router to assign the Pi a static IP address while
there, if the option is available) or else type 'ip addr show' into the Pi.
• Once we have the IP address you'll be able to log in to the Pi via PuTTY
with the default pi and raspberry user name and password, and once you
have remote control of the Pi you can unplug its keyboard and screen.
ENABLE WIFI
• If we want to run this camera with a WiFi USB dongle we will need to do
some quick additional steps to make WiFi work on the Raspberry:
From the console (PuTTY window), edit the network properties of the
Raspberry:
• sudo nano /etc/network/interfaces
• Now add these lines at the end of the file (or change existing lines to
match these):
• allow-hotplug wlan0
• iface wlan0 inet dhcp
• wpa-ssid "YOUR NETWORK SSID"
• wpa-psk "WIFI PASSWORD“
• (Fill in the SSID and password for your WiFi network)
• Then Reboot the Raspberry with this command and see if it correctly
connects to your WiFi network:
• sudo reboot
WIFI CONFIGURATION
• Or we can connect the ethernet cable directly to the Rpi’s ethernet
port
RPI CAMERA
• To enable the camera go to the command window and go to the configuration
window.
• sudo raspi-config
COMMANDS
• "raspistill" is a command line application that allows you to capture images with
your camera module. Below is an example of this command in use.
• To capture an image in jpeg format, type "raspistill -o image.jpg" at the prompt,
where "image" is the name of your image
• "raspivid" is a command line application that allows you to capture video with your
camera module. Below is an example of this command in use.
• To capture a 10 second video with your Raspberry Pi camera module, run "raspivid
-o video.h264 -t 10000" at the prompt, where "video" is the name of your video and
"10000" is the number of milliseconds
COMMANDS FOR THE CAMERA
OUTPUT IMAGE CAPTURED
MOTION SOFTWARE
• We shall now install motion, which is the motion detection software that
we shall utilise.
• sudo apt-get install motion
• As the current version of motion does not (yet) support
the Raspberry camera module, we need to download and install a special
build with support for this camera module.
• cd /tmp
• sudo apt-get install -y libjpeg62 libjpeg62-dev libavformat53 libavformat-
dev libavcodec53 libavcodec-dev libavutil51 libavutil-dev libc6-dev
zlib1g-dev libmysqlclient18 libmysqlclient-dev libpq5 libpq-dev
• wget https://www.dropbox.com/s/xdfcxm5hu71s97d/motion-mmal.tar.gz
• And now you need to unpack the downloaded file to the /tmp directory:
• tar zxvf motion-mmal.tar.gz
Config. file
• Motion has a hundred options to fiddle and play with in its lengthy configuration
file; there are some we'd almost always change, some we might change if we had a
certain task in mind, and others we might fiddle with if we had plenty of spare time
and a very specific aim.
• Make sure that motion is always running as a daemon in the background:
• daemon on
• We want to store the logfile in /tmp instead (otherwise autostart user won't be able
to acces it in /home/pi/ folder):
• logfile /tmp/motion.log
• As we want to use a high quality surveillance video, we've set the resolution to
1280x720:
• width 1280
• height 720
• We don't need real-time video, 2 pictures per second are totally ok for our needs:
• framerate 2
• This is a very handy feature of the motion software: record some (2 in our
configuration) frames before and after the motion in the image was detected:
• pre_capture 2
• post_capture 2
• We don't want endless movies. Instead, we want to have max. 10 minutes slices of
the motion videos. This config option was renamed from max_movie_time to
max_mpeg_time in motion. If you use the motion-mmal build, this one will work.
If you get an error 'Unknown config option "max_mpeg_time"' either change this
one to max_movie_time or make sure to really use the motion-mmal build as
shown above.
• max_mpeg_time 600
• As some media players like VLC are unable to play the recorded movies, we've
changed the codec to msmpeg4. Then, the movies play correctly in all players:
• ffmpeg_video_codec msmpeg4
• Enable access to the live stream from anywhere. Otherwise only
localhost (= the Raspberry device) would be allowed to access
the live stream:
• stream_localhost off
• If you want to protect the live stream with a username and
password, you should enable this:
• stream_auth_method 2
• stream_authentication SOMEUSERNAME:SOMEPASSWORD
• After your changes to the motion.conf, reboot the Raspberry:
• sudo reboot
THE FINAL SETUP
CAMERA LED
• This has the advantage that the "tech" of the camera is not visible anymore. If you
like the camera recording led to be visible, don't cover it. Whenever the camera is
detecting any motion or is recording, the led light will glow in a very bright red.
• You can also turn off the camera red LED by adding this line to /boot/config.txt:
• disable_camera_led=1
ACCESSING THE LIVE STREAM
• Now wecan access the live stream from the camera from any browser via the url
http://IPADDRESSOFRASPBERRY:8081 , where 8081 is the port that we've
configured for our stream in the motion.conf file.
ACCESSING THE LIVE STREAM
FROM MOBILE BROWSER
CONCLUSION
• There are a thousand things we can do with such
a surveillance cam basic setup now.
• Sending Growl notifications when some motion was
detected
• Or we could easily add a temperature-sensor to the cam and
can be integrated very easily.
• If you want extra security, you could also add a battery
pack to the camera. The one that is able to charge
simultaneously while powering the Raspberry. This would
enable you to detect if some bad guy cuts the power strips of
your camera and send some alert messages to you (i.e. SMS
or email) including the video of the disturber.

Weitere ähnliche Inhalte

Was ist angesagt?

Simple Presentation On Raspberry pi
Simple Presentation On Raspberry piSimple Presentation On Raspberry pi
Simple Presentation On Raspberry piSakkar Chowdhury
 
Introduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin ControlIntroduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin ControlPradip Bhandari
 
Raspberry Pi (Introduction)
Raspberry Pi (Introduction)Raspberry Pi (Introduction)
Raspberry Pi (Introduction)Mandeesh Singh
 
Presentation on Raspberry pi
Presentation on Raspberry piPresentation on Raspberry pi
Presentation on Raspberry piOpenDev
 
Wireless security camera
Wireless security cameraWireless security camera
Wireless security cameraAasheesh Tandon
 
Raspberrypi best ppt
Raspberrypi best ppt Raspberrypi best ppt
Raspberrypi best ppt SOMRAJ GAUTAM
 
My presentation raspberry pi
My presentation raspberry piMy presentation raspberry pi
My presentation raspberry piHusainBhaldar21
 
IoT home automation project
IoT home automation projectIoT home automation project
IoT home automation projectShohin Aheleroff
 
Introduction to raspberry pi
Introduction to raspberry piIntroduction to raspberry pi
Introduction to raspberry pipraveen_23
 
Zigbee technology ppt
Zigbee technology pptZigbee technology ppt
Zigbee technology pptijaranjani
 
Seminar Presentation on raspberry pi
Seminar Presentation on raspberry piSeminar Presentation on raspberry pi
Seminar Presentation on raspberry piGeorgekutty Francis
 

Was ist angesagt? (20)

Raspberry Pi
Raspberry PiRaspberry Pi
Raspberry Pi
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
Simple Presentation On Raspberry pi
Simple Presentation On Raspberry piSimple Presentation On Raspberry pi
Simple Presentation On Raspberry pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Raspberry Pi
Raspberry PiRaspberry Pi
Raspberry Pi
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
Introduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin ControlIntroduction To Raspberry Pi with Simple GPIO pin Control
Introduction To Raspberry Pi with Simple GPIO pin Control
 
Raspberry Pi (Introduction)
Raspberry Pi (Introduction)Raspberry Pi (Introduction)
Raspberry Pi (Introduction)
 
Presentation on Raspberry pi
Presentation on Raspberry piPresentation on Raspberry pi
Presentation on Raspberry pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Rasp berry Pi
Rasp berry PiRasp berry Pi
Rasp berry Pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Wireless security camera
Wireless security cameraWireless security camera
Wireless security camera
 
Raspberrypi best ppt
Raspberrypi best ppt Raspberrypi best ppt
Raspberrypi best ppt
 
My presentation raspberry pi
My presentation raspberry piMy presentation raspberry pi
My presentation raspberry pi
 
I twin technology
I twin technologyI twin technology
I twin technology
 
IoT home automation project
IoT home automation projectIoT home automation project
IoT home automation project
 
Introduction to raspberry pi
Introduction to raspberry piIntroduction to raspberry pi
Introduction to raspberry pi
 
Zigbee technology ppt
Zigbee technology pptZigbee technology ppt
Zigbee technology ppt
 
Seminar Presentation on raspberry pi
Seminar Presentation on raspberry piSeminar Presentation on raspberry pi
Seminar Presentation on raspberry pi
 

Ähnlich wie Smart Wireless Surveillance Monitoring using RASPBERRY PI

5 IOT MODULE 5 RaspberryPi Programming using Python.pdf
5 IOT MODULE 5 RaspberryPi Programming using Python.pdf5 IOT MODULE 5 RaspberryPi Programming using Python.pdf
5 IOT MODULE 5 RaspberryPi Programming using Python.pdfJayanthi Kannan MK
 
projectppt-141127001908-conversion-gate02.pptx
projectppt-141127001908-conversion-gate02.pptxprojectppt-141127001908-conversion-gate02.pptx
projectppt-141127001908-conversion-gate02.pptxbhaveshagrawal35
 
Raspberry pi : how to get started
Raspberry pi : how to get startedRaspberry pi : how to get started
Raspberry pi : how to get started동호 손
 
Raspberry pi jam july
Raspberry pi jam julyRaspberry pi jam july
Raspberry pi jam julyJon Ho
 
Raspi_TOR_Access_Point_BenMoore
Raspi_TOR_Access_Point_BenMooreRaspi_TOR_Access_Point_BenMoore
Raspi_TOR_Access_Point_BenMooreBenjamin Moore
 
Install MariaDB on IBM i - Tips, troubleshooting, and more
Install MariaDB on IBM i - Tips, troubleshooting, and moreInstall MariaDB on IBM i - Tips, troubleshooting, and more
Install MariaDB on IBM i - Tips, troubleshooting, and moreRod Flohr
 
Develop Smart Solutions with Raspberry Pi and EnableX Live Video API
Develop Smart Solutions with Raspberry Pi and EnableX Live Video APIDevelop Smart Solutions with Raspberry Pi and EnableX Live Video API
Develop Smart Solutions with Raspberry Pi and EnableX Live Video APIEnablex io
 
Add sale davinci
Add sale davinciAdd sale davinci
Add sale davinciAkash Sahoo
 
Wireshark OTG Extend your Wireshark with extcap.pdf
Wireshark OTG Extend your Wireshark with extcap.pdfWireshark OTG Extend your Wireshark with extcap.pdf
Wireshark OTG Extend your Wireshark with extcap.pdfMegumi Takeshita
 
Automation of pheromone traps
Automation of pheromone trapsAutomation of pheromone traps
Automation of pheromone trapssarvan k
 
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)Chris Tankersley
 
Rete di casa e raspberry pi - Home network and Raspberry Pi
Rete di casa e raspberry pi - Home network and Raspberry Pi Rete di casa e raspberry pi - Home network and Raspberry Pi
Rete di casa e raspberry pi - Home network and Raspberry Pi Daniele Albrizio
 
Raspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick Nesh
Raspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick NeshRaspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick Nesh
Raspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick NeshTE4P
 
Raspberry pi home automation idea
Raspberry pi home automation ideaRaspberry pi home automation idea
Raspberry pi home automation ideashashi gautam
 
OpenEye Optix Network Cameras
OpenEye Optix Network CamerasOpenEye Optix Network Cameras
OpenEye Optix Network Camerasopeneyevideo
 
Up and running with Raspberry Pi
Up and running with Raspberry PiUp and running with Raspberry Pi
Up and running with Raspberry PiShahed Mehbub
 

Ähnlich wie Smart Wireless Surveillance Monitoring using RASPBERRY PI (20)

5 IOT MODULE 5 RaspberryPi Programming using Python.pdf
5 IOT MODULE 5 RaspberryPi Programming using Python.pdf5 IOT MODULE 5 RaspberryPi Programming using Python.pdf
5 IOT MODULE 5 RaspberryPi Programming using Python.pdf
 
Capstone_Project.ppt
Capstone_Project.pptCapstone_Project.ppt
Capstone_Project.ppt
 
projectppt-141127001908-conversion-gate02.pptx
projectppt-141127001908-conversion-gate02.pptxprojectppt-141127001908-conversion-gate02.pptx
projectppt-141127001908-conversion-gate02.pptx
 
Raspberry pi : how to get started
Raspberry pi : how to get startedRaspberry pi : how to get started
Raspberry pi : how to get started
 
Raspberry pi jam july
Raspberry pi jam julyRaspberry pi jam july
Raspberry pi jam july
 
Raspi_TOR_Access_Point_BenMoore
Raspi_TOR_Access_Point_BenMooreRaspi_TOR_Access_Point_BenMoore
Raspi_TOR_Access_Point_BenMoore
 
Install MariaDB on IBM i - Tips, troubleshooting, and more
Install MariaDB on IBM i - Tips, troubleshooting, and moreInstall MariaDB on IBM i - Tips, troubleshooting, and more
Install MariaDB on IBM i - Tips, troubleshooting, and more
 
Develop Smart Solutions with Raspberry Pi and EnableX Live Video API
Develop Smart Solutions with Raspberry Pi and EnableX Live Video APIDevelop Smart Solutions with Raspberry Pi and EnableX Live Video API
Develop Smart Solutions with Raspberry Pi and EnableX Live Video API
 
Add sale davinci
Add sale davinciAdd sale davinci
Add sale davinci
 
Wireshark OTG Extend your Wireshark with extcap.pdf
Wireshark OTG Extend your Wireshark with extcap.pdfWireshark OTG Extend your Wireshark with extcap.pdf
Wireshark OTG Extend your Wireshark with extcap.pdf
 
Automation of pheromone traps
Automation of pheromone trapsAutomation of pheromone traps
Automation of pheromone traps
 
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
Fish Cam.pptx
Fish Cam.pptxFish Cam.pptx
Fish Cam.pptx
 
Rete di casa e raspberry pi - Home network and Raspberry Pi
Rete di casa e raspberry pi - Home network and Raspberry Pi Rete di casa e raspberry pi - Home network and Raspberry Pi
Rete di casa e raspberry pi - Home network and Raspberry Pi
 
Raspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick Nesh
Raspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick NeshRaspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick Nesh
Raspberry JAM 1 - Setup Raspberry Pi with Raspbian -Vick Nesh
 
Raspberry pi home automation idea
Raspberry pi home automation ideaRaspberry pi home automation idea
Raspberry pi home automation idea
 
OpenEye Optix Network Cameras
OpenEye Optix Network CamerasOpenEye Optix Network Cameras
OpenEye Optix Network Cameras
 
CCTV
CCTVCCTV
CCTV
 
Up and running with Raspberry Pi
Up and running with Raspberry PiUp and running with Raspberry Pi
Up and running with Raspberry Pi
 

Kürzlich hochgeladen

Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
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
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
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
 
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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
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
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 

Kürzlich hochgeladen (20)

Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
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
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
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
 
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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
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
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 

Smart Wireless Surveillance Monitoring using RASPBERRY PI

  • 1. SMART WIRELESS SURVEILLANCE MONITORING SYSTEM USING RASPBERRY PI
  • 2. ABSTRACT This project deals with the design and implementation of Smart surveillance monitoring system using Raspberry pi. It uses wireless technology to provide essential security using surveillance system. The proposed security system captures information and transmits it via a WiFi to a static IP, which is viewed using a web browser from any smart device. Raspberry pi controls a video camera for surveillance. It streams live video and records the motion detected parts in the cloud and/or in the windows shared folder for future playback. The cameras automatically initiate recording when motion is sensed and the Raspberry pi device stores it in a secured folder.
  • 3. INTRODUCTION • High Definition Surveillance Camera using raspberry pi is set up in the area which we want to monitor. • Live streamed video can be accessed from anywhere by just entering the static IP assigned to the System in a web browser. • Video containing motion is detected and stored in a cloud (dropbox) or in a separate windows shared folder.
  • 4. ADVANTAGES OVER EXISTING SYSTEM • In CCTV systems there should be a dedicated PC for the module which is eliminated here. • A PC can be hacked and the files can be erased while this system overcomes those problems. • In this system, authentication is required on the user side inorder to view the streamed video in the browser. • Very less expensive when compared to the other existing systems. • In this system, a wide area can be captured. • The camera motion can be controlled by the user.
  • 6. RASPBERRY PI A small credit-card sized computer capable of performing various functionalities such as in surveillance systems, military applications,
  • 8. RASPBERRY PI CAMERA MODULE • 5 MP Camera exclusively made for Raspberry PI • Can take 1080p High Definition Videos • Small in size and can be connected directly to the Raspberry PI Board. • 1080p, 780p and also Still pictures.
  • 9. SD CARD • Raspberry PI has no storage on board. • SD/micro SD Card stores the OS. The total memory of the SD card is about 8GB. • Class 10 is preferred owing to its high speed.
  • 10. NETWORK ADAPTER • Wireless network connection is used for the process of data transfer. • Wi-Fi USB Adapter that supports speed of 150Mbps is used. • Edimax is a commonly used Wi-Fi USB Adapter.
  • 11. POWER SUPPLY • A micro-usb plug power supply that supplies at least 1A of power is used. • It also runs on a battery.
  • 12. HOUSING FOR THE CAMERA • We use a camera housing, so that the size of the housing is large enough for the Rasperry pi board to fit in there.
  • 13. SOFTWARES USED • Raspbian OS • PuTTY • Motion Software
  • 15. OS Installation • At first,install the OS and software to the Raspberry Pi before mounting it all together. • An OS is the basic operating system software that tells the Raspberry hardware what to do. Linux is perfect for this. • We have chosen Raspbian, as it's one of the most advanced OS for the Raspberry with loads of help and tutorials on the internet. • We need to prepare the SD card to be able to run Raspbian on the Raspberry • Insert the prepared SD card with the Raspbian installer on it and attach the power supply. • Now make sure your RPI is up to date: • sudo apt-get install rpi-update • sudo rpi-update • And also update all packages: • sudo apt-get update • sudo apt-get upgrade
  • 17. PuTTY PuTTY to remotely control your Pi from another PC • Because having a CCTV camera with a keyboard and HDMI screen hanging off it is wildly impractical, we want to start accessing and controlling the Pi remotely as soon as it's been successfully updated. This is possible via SSH (short for Secure SHell protocol), which is installed by default with Raspbian. • To access the Pi remotely from a Windows PC, we need to download an SSH client – we used PuTTY.
  • 18. • Once the .exe. file has downloaded to your Windows PC, place it somewhere convenient, such as on your desktop. When we launch it, we have to enter the IP address of your Pi into the Host Name (or IP address) field and click Open. • To save time later, you might want to click Save first and give the connection a relevant name – we've chosen RPi. We can find the Pi's IP address by either finding it in your router's management web page (you might also like to ask the router to assign the Pi a static IP address while there, if the option is available) or else type 'ip addr show' into the Pi. • Once we have the IP address you'll be able to log in to the Pi via PuTTY with the default pi and raspberry user name and password, and once you have remote control of the Pi you can unplug its keyboard and screen.
  • 19. ENABLE WIFI • If we want to run this camera with a WiFi USB dongle we will need to do some quick additional steps to make WiFi work on the Raspberry: From the console (PuTTY window), edit the network properties of the Raspberry: • sudo nano /etc/network/interfaces • Now add these lines at the end of the file (or change existing lines to match these): • allow-hotplug wlan0 • iface wlan0 inet dhcp • wpa-ssid "YOUR NETWORK SSID" • wpa-psk "WIFI PASSWORD“ • (Fill in the SSID and password for your WiFi network) • Then Reboot the Raspberry with this command and see if it correctly connects to your WiFi network: • sudo reboot
  • 20. WIFI CONFIGURATION • Or we can connect the ethernet cable directly to the Rpi’s ethernet port
  • 21. RPI CAMERA • To enable the camera go to the command window and go to the configuration window. • sudo raspi-config
  • 22. COMMANDS • "raspistill" is a command line application that allows you to capture images with your camera module. Below is an example of this command in use. • To capture an image in jpeg format, type "raspistill -o image.jpg" at the prompt, where "image" is the name of your image • "raspivid" is a command line application that allows you to capture video with your camera module. Below is an example of this command in use. • To capture a 10 second video with your Raspberry Pi camera module, run "raspivid -o video.h264 -t 10000" at the prompt, where "video" is the name of your video and "10000" is the number of milliseconds
  • 25. MOTION SOFTWARE • We shall now install motion, which is the motion detection software that we shall utilise. • sudo apt-get install motion • As the current version of motion does not (yet) support the Raspberry camera module, we need to download and install a special build with support for this camera module. • cd /tmp • sudo apt-get install -y libjpeg62 libjpeg62-dev libavformat53 libavformat- dev libavcodec53 libavcodec-dev libavutil51 libavutil-dev libc6-dev zlib1g-dev libmysqlclient18 libmysqlclient-dev libpq5 libpq-dev • wget https://www.dropbox.com/s/xdfcxm5hu71s97d/motion-mmal.tar.gz • And now you need to unpack the downloaded file to the /tmp directory: • tar zxvf motion-mmal.tar.gz
  • 26. Config. file • Motion has a hundred options to fiddle and play with in its lengthy configuration file; there are some we'd almost always change, some we might change if we had a certain task in mind, and others we might fiddle with if we had plenty of spare time and a very specific aim. • Make sure that motion is always running as a daemon in the background: • daemon on • We want to store the logfile in /tmp instead (otherwise autostart user won't be able to acces it in /home/pi/ folder): • logfile /tmp/motion.log • As we want to use a high quality surveillance video, we've set the resolution to 1280x720: • width 1280 • height 720 • We don't need real-time video, 2 pictures per second are totally ok for our needs: • framerate 2
  • 27. • This is a very handy feature of the motion software: record some (2 in our configuration) frames before and after the motion in the image was detected: • pre_capture 2 • post_capture 2 • We don't want endless movies. Instead, we want to have max. 10 minutes slices of the motion videos. This config option was renamed from max_movie_time to max_mpeg_time in motion. If you use the motion-mmal build, this one will work. If you get an error 'Unknown config option "max_mpeg_time"' either change this one to max_movie_time or make sure to really use the motion-mmal build as shown above. • max_mpeg_time 600 • As some media players like VLC are unable to play the recorded movies, we've changed the codec to msmpeg4. Then, the movies play correctly in all players: • ffmpeg_video_codec msmpeg4
  • 28. • Enable access to the live stream from anywhere. Otherwise only localhost (= the Raspberry device) would be allowed to access the live stream: • stream_localhost off • If you want to protect the live stream with a username and password, you should enable this: • stream_auth_method 2 • stream_authentication SOMEUSERNAME:SOMEPASSWORD • After your changes to the motion.conf, reboot the Raspberry: • sudo reboot
  • 30. CAMERA LED • This has the advantage that the "tech" of the camera is not visible anymore. If you like the camera recording led to be visible, don't cover it. Whenever the camera is detecting any motion or is recording, the led light will glow in a very bright red. • You can also turn off the camera red LED by adding this line to /boot/config.txt: • disable_camera_led=1
  • 31. ACCESSING THE LIVE STREAM • Now wecan access the live stream from the camera from any browser via the url http://IPADDRESSOFRASPBERRY:8081 , where 8081 is the port that we've configured for our stream in the motion.conf file.
  • 32. ACCESSING THE LIVE STREAM FROM MOBILE BROWSER
  • 33. CONCLUSION • There are a thousand things we can do with such a surveillance cam basic setup now. • Sending Growl notifications when some motion was detected • Or we could easily add a temperature-sensor to the cam and can be integrated very easily. • If you want extra security, you could also add a battery pack to the camera. The one that is able to charge simultaneously while powering the Raspberry. This would enable you to detect if some bad guy cuts the power strips of your camera and send some alert messages to you (i.e. SMS or email) including the video of the disturber.