Setting up a Webcam on a Raspberry Pi

Slides:



Advertisements
Similar presentations
Grade Cam Dustin Foster 2/4/13 Please open Chrome & Login to Skyward.
Advertisements

Quick Installation Guide for Hurricane8800P
Presented by W1BAW Bruce Wattendorf. What is a Raspberry PI A $35 computer with out a monitor, keyboard, mouse but they all can be added.
By: Lloyd Albin 9/28/2012. We are not talking about a Raspberry Pie.
Configure the IP Address Connect to encoder’s serial port Power on encoder Connect serial cable to “Data A” Hold in “Console” until “Data A” light turns.
How To Set Up A Wireless Network Using A D-Link Wireless Router
Advanced Routers Opening Ports
Introduction to the Raspberry Pi ® Saman Amighi 10/2013 ® Raspberry Pi Foundation.
Introduction to Broadband HamNet
Installing software on personal computer
A+ Guide to Software, 4e Chapter 11 Supporting Printers and Scanners.
How to Install Windows 7.
Cisco Confidential 1 © 2011 Cisco and/or its affiliates. All rights reserved.
Printer Installation Ben Wu A&S IT 09/18/2007. Outline  Preparation  Local Printer Installation  Network Printer Installation  Printer Sharing  Other.
Embedded Programming and Robotics Lesson 12 Introducing the Raspberry Pi Intro to Raspberry Pi1.
Installing Ricoh Driver. Items you need to know IP address of Printer Options that are installed And Paper Sizes To get all this information you can print.
Chapter 7Assembling Your Own Computer System  7.1Assembling the Hardware 7.1Assembling the Hardware 7.1Assembling the Hardware  7.2Installing the Operating.
An illustrated introduction to building a computer using a Raspberry Pi 2. A Raspberry Pi, that is! Images from Microsoft clipart.
TAX-AIDE Network Router Setup Network Printer Setups July SMT/TCS Training - Dallas1.
Linux Operations and Administration
Raspberry Pi Training Truman College Goals of our Training Today Unbox and boot up the Raspberry Pi (RPi) Learn how to access the desktop graphical.
Pi In The Sky Chris Stubbs. What’s in the HAB kit Balloon (keep this safe) Parachute PITS kit Raspberry Pi Model A (for flight) + SD + Camera Raspberry.
ActEyes IP Cam Training Part 1: Camera Setup. Network Setup Overview Each IP Cam on the network will need its own IP address to be assigned. This address.
Tutorial 11 Installing, Updating, and Configuring Software
Lexmark Wireless Printer Adaptor Instructions Step 1. For a Mac, go to network preferences/ select built-in-ethernet and click on TCP/IP tab and annotate.
W2K Server Installation It is very important that before you begin to install Windows 2000 Server, you must prepare for the installation by gathering specific.
FTP Server and FTP Commands By Nanda Ganesan, Ph.D. © Nanda Ganesan, All Rights Reserved.
1 Installation When this module is complete, you will be able to:  Set a static IP address for your laptop  Install the snom ONE software  Navigate.
 The Control Panel window will pop up. Existing LAN USB-to-Ethernet adapter  Use an inexpensive USB-to-Ethernet adapter and connect it to your computer’s.
7200 Samsung Confidential & Proprietary Information Copyright 2006, All Rights Reserved. 1/16 OfficeServ 7200 Enterprise IP Solutions Data Server S/W Upgrade.
DHP Agenda: How to Access Web Interface of the DHP-1320 on Access Point Mode How to Access Web Interface of the DHP-1320 on Router Mode How to Change.
SAM9260-EK WinCE DEMO AT91 SAM9 Product Group. Version 1.0 October 2006.
Installing a Network Printer. Network printers work much like any other printer except the data flow is through a network. This means the printer must.
IT1001 – Personal Computer Hardware & System Operations Week5- Installation and configuration of driver software.
Managing Devices Lesson 5. Objectives Objective Domain Matrix Technology SkillObjective Domain DescriptionObjective Domain Number Connecting Plug-and-Play.
NetTech Solutions Resolving Issues with Locally Attached Devices Lesson Twelve.
NETWORKING & SYSTEM UPDATES
17 Establishing Dial-up Connection to the Internet Using Windows 9x 1.Install and configure the modem 2.Configure Dial-Up Adapter 3.Configure Dial-Up Networking.
EurekaWeb is a system that allows you to manage, via Web, residential intrusion and fire alarm control panel.
Intro to Raspberry Pi A Southwest Florida Hackerspace Workshop Presented by: Russell Benzing & Eric Schiffli.
WELCOME. Skills and Techniques - Session 2 Skills and Techniques Booting from Windows 8.1 and Windows 10 devices.
Raspberry Pi Project Control Your Home Lights with a Raspberry Pi.
WHAT ARE THE STEPS TO CONNECT MY HP DESKJET 3520 TO WI-FI?
Engineering Innovation Center
Workshop on Raspberry Pi 3
RASPBERRY PI WORKSHOP.
Local Network and Internet Access Network
Implementation of Embedded OS
Computer System Laboratory
Embedded Software Development with Python and the Raspberry Pi
Computer and Information Technology for HKCEE
Running your own web server
Data Server S/W Upgrade Samsung Electronics Co., Ltd.
A microcontroller Raspberry Pi 2 Model B V1.1 RPi
Raspberry Pi in Headless Operation
Engineering Innovation Center
1. Press the Power button or switch to flip on the printer, if it is turn off. 2. From the Home display screen on the product control panel, click the.
Introduction to Computers
Installing the HP LaserJet Pro 500 color MFP M570 printer software in Windows on a Wireless Network & Wired Network.
Raspberry Pi.
Raspberry Pi Pi 2 Model B.
Hardware Appliance Installation and Configuration
What is a Raspberry Pi? The Raspberry Pi is a low cost, credit-card sized computer that plugs into a computer monitor or TV, and uses a standard keyboard.
Raspberry Pi – VNC Server Connection
Chapter 11 Supporting Printers and Scanners
How to install HP printer using IP address? How to install HP printer using IP address? Call
The “FREE” WiFi by Chandan.
Beginning Raspberry Pi
Copyright (c) 2017 by Dr. E. Horvath
Robot and Crickit HAT © Copyright 2019 by Dr. Elizabeth I. Horvath and Dr. Eva A. Horvath 1.
Presentation transcript:

Setting up a Webcam on a Raspberry Pi By Mike Kwiatkowski

Cameras Everywhere! Excercise! What experience have you had with webcams or other small cameras?

Cameras Everywhere! Camera electronics have improved greatly Detection electronics and lense systems are extremely compact Small cameras are on phones, tablets and laptops Discrete devices make it difficult to protect privacy

Raspberry Pi Webcam Requirements for a Pi Webcam Raspberry Pi A small camera which attaches by USB or the internal CSI cable Network connection An enclosure if you wish to make it discrete Internet access for configuration software

Webcam installation This discussion assumes the camera with be connected to the CSI connector on the main board of the Pi Disconnect power and gently connect camera ribbon cable to CSI connector on the board

Webcam Installation - Hardware With cable inserted and anchored with the clip power on your Pi After boot up open a terminal window

Webcam Installation - OS Preparation Update Raspbian sudo apt-get update sudo apt-get dist-upgrade -y sudo rpi-update Check git git --version Install if it’s not sudo apt-get install git-core

Webcam Installation - OS Configuration Run Pi configuration sudo raspi-config From the menu find the camera entry Hit enter and enable the camera Exit configuration Reboot your Pi

Webcam Installation - Testing Camera After the reboot open a terminal window Test your camera by issuing either raspistill or raspivid raspistill -o test.jpeg raspivid -o test.H264 -t 30000 If you camera works on to the next step!

Webcam Installation - Software Installation Grab software from git repository git clone https://github.com/silvanmelchior/RPi_Cam_Web_Interface.git Make installer executable cd RPi_Cam_Web_Interface chmod u+x *.sh Start installation ./RPi_Cam_Web_Interface_Installer.sh

Webcam Installation - Configure Installation Choose Apache web server for installation Let installation finish Run script again and choose configure Notice that you can modify user access in this menu option Exit configure menu Start the RPi Cam process

Webcam Installation - Test Webcam! The starting of the service should now have your Pi listening on port 80 This will allow browsers to connect! Test it by opening a browser and going to http:\\127.0.0.1\ You should now be seeing your webcam! You can go to other student’s devices by entering their IP address instead of your own

So why are we worried? Inexpensive hardware and a little bit of time can put a camera anywhere Newest Pi’s have wireless built-in (3D design software or Thingiverse) + 3D printer = you can create a case to hide your webcam in plain site

Resources www.raspberry-pi-geek.com Using the RPi Cam Web interface Working with the Raspberry Pi camera module