Human Detection With SimpleCV and Python

Size: px
Start display at page:

Download "Human Detection With SimpleCV and Python"

Transcription

1 Human Detection With SimpleCV and Python DIFFICULTY: MEDIUM PANGOLINPAD.YOLASITE.COM

2 SimpleCV Python wrapper for the Open Computer Vision (OpenCV) system Simple interface for complicated image processing Importable into a python program #!/usr/bin/python Import time Import SimpleCV

3 Installation SimpleCV is not included in the Raspbian distribution It also relies a set of python packages to work Install them all with: $ sudo apt-get install ipython python-opencv pythonscipy python-numpy python-pygame python-setuptools python-pip

4 Installation Use pip (you just installed it) to get the latest version of SimpleCV $ sudo pip install And finally make sure everything is up-to-date $ sudo add-apt-repository ppa:gijzelaar/opencv2.3 $ sudo apt-get update

5 The SimpleCV Shell A shell is a user interface SimpleCV has a dedicated one you can start just by typing: $ simplecv The following command may be necessary the 1 st time: $ python -m SimpleCV. init.

6

7 USB camera Designed for USB cameras, not the Raspberry Pi s camera module If you have a USB webcam, make a python program like this: from SimpleCV import Camera # Initialize the camera cam = Camera() # Capture and image and display it cam.getimage().show()

8 Camera module You can set things up so that the camera module appears as a USB webcam Or you can use the raspistill command to save an image, then get SimpleCV to look at that

9 Example code from SimpleCV import show, Image import os # Capture an image os.system( raspistill n w 500 h 500 o image.jpg ) # Save the image in a variable img = Image( image.jpg ) # Display it on screen img.show() This takes & displays a 500x500 pixel image named image.jpg on the screen

10 Continuous loop from SimpleCV import Display, Image Import time display = Display() print "I launched a window" # Loop until window is closed while not display.isdone(): os.system( raspistill n w 500 h 500 o image.jpg ) img = Image( image.jpg ) # Here s where you d put any image processing img.save(display) time.sleep(0.1) print "You closed the window"

11 Haar-like features Haar-like features are used to compare portions of an image Using the relative brightness of two adjacent blocks of pixels, distinct blocks are found in an image Human eyes are generally darker than their cheeks If an image has two dark Haar features above two light ones, it s probably a face

12 findhaarfeatures() This function built into SimpleCV can be used to find 8 different things: Forward-looking faces Profile faces Eyes Noses Mouths Ears Upper bodies Lower bodies

13 from SimpleCV import Display, Image display = Display() print "I launched a window" # Loop until window is closed while not display.isdone(): os.system( raspistill n w 500 h 500 o image.jpg ) img = Image( image.jpg ) # Look for a face faces = img.findhaarfeatures('face') if faces is not None: # Draw a box around the face faces.draw() # Say how many faces were found print %s faces detected % len(faces) img.save(display)

14 Drawing on an image Be default, draw() places a green square at the specified coordinates You can change this to anything you like with the following code icon = Image( iconname.jpg ) img.dl().blit(icon, coordinates=faces) Include this in place of the line: faces.draw() In the code on the previous slide

15 A fun example [video/image] I ll have this running in real-time after the talk, so if you ve ever wondered what you d look like with a moustache

16 More practical applications Security camera that only records human activity Want to keep an eye on your sports car But don t want a hard-drive full of the neighbour's cat Robot vision Identify people to greet them Robotic pet that follows you around

17 Performance Smaller features are harder to identify Greater distance = smaller features Can t detect eyes across the room Smaller image resolution = smaller features But high resolution = more image to work through = slower detection Try different features for different situations

18 Useful Links SimpleCV beginner s guide: SLIDES/Computer%20Vision/Computer%20Vision%20using %20SimpleCV%20and%20the%20Raspberry%20Pi.pdf Camera module as a camera SimpleCV recognises:

9/Working with Webcams

9/Working with Webcams 9/Working with Webcams One of the advantages to using a platform like the Raspberry Pi for DIY technology projects is that it supports a wide range of USB devices. Not only can you hook up a keyboard and

More information

CodeBug I2C Tether Documentation

CodeBug I2C Tether Documentation CodeBug I2C Tether Documentation Release 0.3.0 Thomas Preston January 21, 2017 Contents 1 Installation 3 1.1 Setting up CodeBug........................................... 3 1.2 Install codebug_i2c_tether

More information

Developing a Computer Vision System for Autonomous Rover Navigation

Developing a Computer Vision System for Autonomous Rover Navigation University of Hawaii at Hilo Fall 2016 Developing a Computer Vision System for Autonomous Rover Navigation ASTR 432 FINAL REPORT FALL 2016 DARYL ALBANO Page 1 of 6 Table of Contents Abstract... 2 Introduction...

More information

FINAL REVIEW. Well done you are an MC Hacker. Welcome to Hacking Minecraft.

FINAL REVIEW. Well done you are an MC Hacker. Welcome to Hacking Minecraft. Let s Hack Welcome to Hacking Minecraft. This adventure will take you on a journey of discovery. You will learn how to set up Minecraft, play a multiplayer game, teleport around the world, walk on water,

More information

- Introduction - Minecraft Pi Edition. - Introduction - What you will need. - Introduction - Running Minecraft

- Introduction - Minecraft Pi Edition. - Introduction - What you will need. - Introduction - Running Minecraft 1 CrowPi with MineCraft Pi Edition - Introduction - Minecraft Pi Edition - Introduction - What you will need - Introduction - Running Minecraft - Introduction - Playing Multiplayer with more CrowPi s -

More information

Adafruit's Raspberry Pi Lesson 8. Using a Servo Motor

Adafruit's Raspberry Pi Lesson 8. Using a Servo Motor Adafruit's Raspberry Pi Lesson 8. Using a Servo Motor Created by Simon Monk Last updated on 2016-11-03 06:17:53 AM UTC Guide Contents Guide Contents Overview Parts Part Qty Servo Motors Hardware Software

More information

Writing Games with Pygame

Writing Games with Pygame Writing Games with Pygame Wrestling with Python Rob Miles Getting Started with Pygame What Pygame does Getting started with Pygame Manipulating objects on the screen Making a sprite Starting with Pygame

More information

Project Kit Project Guide

Project Kit Project Guide Project Kit Project Guide Initial Setup Hardware Setup Amongst all the items in your Raspberry Pi project kit, you should find a Raspberry Pi 2 model B board, a breadboard (a plastic board with lots of

More information

Picamera Documentation

Picamera Documentation Picamera Documentation Release 0.8 Dave Hughes January 11, 2014 Contents 1 Table of Contents 3 1.1 Python 2.7+ Installation....................................... 3 1.2 Python 3.2+ Installation.......................................

More information

Create a "Whac-a-Block" game in Minecraft

Create a Whac-a-Block game in Minecraft Create a "Whac-a-Block" game in Minecraft Minecraft is a popular sandbox open-world building game. A free version of Minecraft is available for the Raspberry Pi; it also comes with a programming interface.

More information

kewhatyou see? Lynch ISBN

kewhatyou see? Lynch ISBN Li kewhatyou see? Buyt hebookat www. f ocal pr ess. com TheAdobePhot oshop CS4 Layer sbook Lynch ISBN 9780240521558 CHAPTER 3 t and Image Objec Area Isolation in Layers One of the fundamental values of

More information

Computer Vision Lesson Plan

Computer Vision Lesson Plan Computer Vision Lesson Plan Overview Computer Vision Summary Computers today are being used to accomplish tasks that require using one or more of the five senses. Vision - seeing objects and identifying

More information

Moving Object Follower

Moving Object Follower Moving Object Follower Kishan K Department of Electronics and Communnication, The National Institute of Engineering, Mysore Pramod G Kamath Department of Electronics and Communnication, The National Institute

More information

Parts of a Lego RCX Robot

Parts of a Lego RCX Robot Parts of a Lego RCX Robot RCX / Brain A B C The red button turns the RCX on and off. The green button starts and stops programs. The grey button switches between 5 programs, indicated as 1-5 on right side

More information

Distracted Driving: A Novel Approach towards Accident Prevention

Distracted Driving: A Novel Approach towards Accident Prevention Advances in Computational Sciences and Technology ISSN 0973-6107 Volume 10, Number 8 (2017) pp. 2693-2705 Research India Publications http://www.ripublication.com Distracted Driving: A Novel Approach towards

More information

Getting Started with Blinkt!

Getting Started with Blinkt! Getting Started with Blinkt! This tutorial will show you how to install the Blinkt! Python library, and then walk through its functionality, finishing with an example of how to make a rainbow with Blinkt!

More information

ROCHESTER INSTITUTE OF TECHNOLOGY COURSE OUTLINE FORM COLLEGE OF SCIENCE. Chester F. Carlson Center for Imaging Science

ROCHESTER INSTITUTE OF TECHNOLOGY COURSE OUTLINE FORM COLLEGE OF SCIENCE. Chester F. Carlson Center for Imaging Science ROCHESTER INSTITUTE OF TECHNOLOGY COURSE OUTLINE FORM COLLEGE OF SCIENCE Chester F. Carlson Center for Imaging Science NEW COURSE: COS-IMGS-180 Introduction to Computing and Control 1.0 Course Designations

More information

LEVEL A: SCOPE AND SEQUENCE

LEVEL A: SCOPE AND SEQUENCE LEVEL A: SCOPE AND SEQUENCE LESSON 1 Introduction to Components: Batteries and Breadboards What is Electricity? o Static Electricity vs. Current Electricity o Voltage, Current, and Resistance What is a

More information

Adafruit Ultimate GPS Breakout On the Raspberry Pi. NERP: Not Exclusively Raspberry Pi

Adafruit Ultimate GPS Breakout On the Raspberry Pi. NERP: Not Exclusively Raspberry Pi Adafruit Ultimate GPS Breakout On the Raspberry Pi NERP: Not Exclusively Raspberry Pi Craig LeMoyne Chicago Electronic Distributors www.chicagodist.com Tutorial excerpts courtesy Adafruit Industries GPS

More information

Lasers and Webcams. two great things that go great together? John Harrison

Lasers and Webcams. two great things that go great together? John Harrison Lasers and Webcams two great things that go great together? John Harrison www.insightvr.com #2 sin? Laser pointers will be abused in this talk In ways Ivan never dreamed of Worse Yet... Worse Yet...

More information

Implementation Of Vision-Based Landing Target Detection For VTOL UAV Using Raspberry Pi

Implementation Of Vision-Based Landing Target Detection For VTOL UAV Using Raspberry Pi Implementation Of Vision-Based Landing Target Detection For VTOL UAV Using Raspberry Pi Ei Ei Nyein, Hla Myo Tun, Zaw Min Naing, Win Khine Moe Abstract: This paper presents development and implementation

More information

Outernet L-band on Rasbian Documentation

Outernet L-band on Rasbian Documentation Outernet L-band on Rasbian Documentation Release 1.0a2 Outernet Inc May 22, 2017 Contents 1 Guide contents 3 i ii This guide shows how to deploy Outernet software on a Raspberry Pi

More information

Controlling Obstacle Avoiding And Live Streaming Robot Using Chronos Watch

Controlling Obstacle Avoiding And Live Streaming Robot Using Chronos Watch Controlling Obstacle Avoiding And Live Streaming Robot Using Chronos Watch Mr. T. P. Kausalya Nandan, S. N. Anvesh Kumar, M. Bhargava, P. Chandrakanth, M. Sairani Abstract In today s world working on robots

More information

Chroma Servo Board v3 for Raspberry Pi. (Firmware 0.1 and 0.2)

Chroma Servo Board v3 for Raspberry Pi. (Firmware 0.1 and 0.2) Chroma Servo Board v3 for Raspberry Pi (Firmware 0.1 and 0.2) 2014-04-08 Content Setup...3 Before connecting the servo board...3 Connecting the servo board...4 Connecting servos...5 Power options...5 Getting

More information

Chroma. Bluetooth Servo Board

Chroma. Bluetooth Servo Board Chroma Bluetooth Servo Board (Firmware 0.1) 2015-02-08 Default Bluetooth name: Chroma servo board Default pin-code: 1234 Content Setup...3 Connecting servos...3 Power options...4 Getting started...6 Connecting

More information

Explore and Challenge:

Explore and Challenge: Explore and Challenge: The Pi-Stop Traffic Light Sequence SEE ALSO: Discover: The Pi-Stop: For more information about Pi-Stop and how to use it. Setup: Scratch GPIO: For instructions on how to setup Scratch

More information

Ping Pong Trainer. Cal Poly Computer Engineering Senior Project. By Aaron Atamian. Advised by Andrew Danowitz

Ping Pong Trainer. Cal Poly Computer Engineering Senior Project. By Aaron Atamian. Advised by Andrew Danowitz Ping Pong Trainer Cal Poly Computer Engineering Senior Project By Aaron Atamian Advised by Andrew Danowitz June 16, 2017 Atamian 2 Contents Introduction... 3 Project Overview... 3 Project Outcome... 3

More information

2809 CAD TRAINING: Part 1 Sketching and Making 3D Parts. Contents

2809 CAD TRAINING: Part 1 Sketching and Making 3D Parts. Contents Contents Getting Started... 2 Lesson 1:... 3 Lesson 2:... 13 Lesson 3:... 19 Lesson 4:... 23 Lesson 5:... 25 Final Project:... 28 Getting Started Get Autodesk Inventor Go to http://students.autodesk.com/

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Kinect2Scratch Workbook

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Kinect2Scratch Workbook Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl Workbook Scratch is a drag and drop programming environment created by MIT. It contains colour coordinated code blocks that allow a user to build up instructions

More information

Total Hours Registration through Website or for further details please visit (Refer Upcoming Events Section)

Total Hours Registration through Website or for further details please visit   (Refer Upcoming Events Section) Total Hours 110-150 Registration Q R Code Registration through Website or for further details please visit http://www.rknec.edu/ (Refer Upcoming Events Section) Module 1: Basics of Microprocessor & Microcontroller

More information

Getting started with Piano HAT

Getting started with Piano HAT Getting started with Piano HAT Introduction Piano HAT will let you explore your musical prowess, or use those 16 capacitive touch buttons to control any project you might conceive. This guide will walk

More information

Project: Sudoku solver

Project: Sudoku solver Project: Sudoku solver Write a program that finds the sudoku square in the image, detects the 81 fields, and identifies the number in the fields that have a number. The output should be a 9x9 matrix with

More information

Mini Turty II Robot Getting Started V1.0

Mini Turty II Robot Getting Started V1.0 Mini Turty II Robot Getting Started V1.0 Rhoeby Dynamics Mini Turty II Robot Getting Started Getting Started with Mini Turty II Robot Thank you for your purchase, and welcome to Rhoeby Dynamics products!

More information

IRU151_IRU152. OPC UA User Manual

IRU151_IRU152. OPC UA User Manual IRU151_IRU152 OPC UA User Manual Revision History Version Revision Date Author Description 1.0 2018/07/18 Ryan 1 st release ii Table of Contents Revision History... i CHAPTER 1 Introduction...1 CHAPTER

More information

Veterinary Digital X-Ray System Quick Start Guide

Veterinary Digital X-Ray System Quick Start Guide 1 Veterinary Digital X-Ray System Quick Start Guide 2 SOPIX² X-Ray Sensors Quick Start Guide ***PERFORM THIS STEP BEFORE PLUGGING IN THE SENSOR*** Step 1 Load the CD: If you have already plugged in the

More information

Easily Smooth And Soften Skin In A Photo With Photoshop

Easily Smooth And Soften Skin In A Photo With Photoshop Easily Smooth And Soften Skin In A Photo With Photoshop Written by Steve Patterson OPEN THE START FILE BY RIGHT CLICKING THE.JPG FILE AND CHOOSING OPEN WITH ADOBE PHOTOSHOP. SAVE AS: X_lastname_firstname_Smooth_Soft

More information

GIVING FULL EFFORT ESLR

GIVING FULL EFFORT ESLR GIVING FULL EFFORT ESLR Title a page in your journal with the title at left. GIVING FULL EFFORT, 1 Record (bullet points ok): 1) What are some ways that Charlie showed effort in Flower for Algernon? 2)

More information

Pi Servo Hat Hookup Guide

Pi Servo Hat Hookup Guide Page 1 of 10 Pi Servo Hat Hookup Guide Introduction The SparkFun Pi Servo Hat allows your Raspberry Pi to control up to 16 servo motors via I2C connection. This saves GPIO and lets you use the onboard

More information

In this project you will learn how to write a Python program telling people all about you. Type the following into the window that appears:

In this project you will learn how to write a Python program telling people all about you. Type the following into the window that appears: About Me Introduction: In this project you will learn how to write a Python program telling people all about you. Step 1: Saying hello Let s start by writing some text. Activity Checklist Open the blank

More information

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Created by lady ada Last updated on 2018-03-21 09:56:10 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR

More information

CobraCam USB III Portable Inspection Camera with USB Interface Instruction Manual

CobraCam USB III Portable Inspection Camera with USB Interface Instruction Manual CobraCam USB III Portable Inspection Camera with USB Interface Instruction Manual 07/13 Test Equipment Depot - 800.517.8431 99 Washington Street, Melrose, MA 02176 TestEquipmentDepot.com CobraCam USB 3

More information

Photoshop Weather Effects Rain

Photoshop Weather Effects Rain Photoshop Weather Effects Rain In this photo effects tutorial, we ll learn how to add a simple yet convincing rain effect to a photo, a great way to add mood and atmosphere, without getting your camera

More information

Weekly report: January 11 - January 18, 2018

Weekly report: January 11 - January 18, 2018 Weekly report: January 11 - January 18, 2018 Yerbol Aussat January 18, 2018 1 Activities Set up SPI communication between Onion Omega2 and AMN-22111 PIR motion sensor. Made a standalone sensing module

More information

Easy-to-understand How-to-Use Guide. Dedicated software for ColorEdge calibration

Easy-to-understand How-to-Use Guide. Dedicated software for ColorEdge calibration Color Management Software Dedicated software for ColorEdge calibration Easy-to-understand How-to-Use Guide EIZO s ColorEdge color management monitor supports a wide variety of creative work. This guidebook

More information

Ansible Essentials 5 days Hands on

Ansible Essentials 5 days Hands on Ansible Essentials 5 days Hands on Ansible is growing in popularity for good reason, it is both easy to understand, far simpler than Python, and extremely powerful. While Python can be used to do just

More information

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Created by lady ada Last updated on 2017-05-19 08:55:07 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR Current

More information

In the past year or so, just about everyone I know has gone out and purchased

In the past year or so, just about everyone I know has gone out and purchased In This Chapter Having some fun with your digital camera Getting out and shooting Chapter 1 Jumping Right In Transferring images from your camera to your computer Opening images in Photoshop Printing and

More information

Pathbreaking robots for pathbreaking research. Introducing. KINOVA Gen3 Ultra lightweight robot. kinovarobotics.com 1

Pathbreaking robots for pathbreaking research. Introducing. KINOVA Gen3 Ultra lightweight robot. kinovarobotics.com 1 Pathbreaking robots for pathbreaking research Introducing Gen3 Ultra lightweight robot kinovarobotics.com 1 Opening a world of possibilities in research Since the launch of Kinova s first assistive robotic

More information

Portable Facial Recognition Jukebox Using Fisherfaces (Frj)

Portable Facial Recognition Jukebox Using Fisherfaces (Frj) Portable Facial Recognition Jukebox Using Fisherfaces (Frj) Richard Mo Department of Electrical and Computer Engineering The University of Michigan - Dearborn Dearborn, USA Adnan Shaout Department of Electrical

More information

@ The ULTIMATE Manual

@ The ULTIMATE Manual @ The ULTIMATE Console @ Manual CONSOLE The Ultimate Console runs the jzintv emulator on a Raspberry Pi. You will see some computer code with loading, but I ve tried to keep this to a minimum. It takes

More information

To Infinity And Beyond. Computer Vision for Astronomy

To Infinity And Beyond. Computer Vision for Astronomy To Infinity And Beyond Computer Vision for Astronomy Ryan Fox ryan@foxrow.com @ryan_fox foxrow.com 1. Image Processing 2. Computer Vision 3. To Infinity and Beyond How computers see How computers see 006

More information

Efficient Construction of SIFT Multi-Scale Image Pyramids for Embedded Robot Vision

Efficient Construction of SIFT Multi-Scale Image Pyramids for Embedded Robot Vision Efficient Construction of SIFT Multi-Scale Image Pyramids for Embedded Robot Vision Peter Andreas Entschev and Hugo Vieira Neto Graduate School of Electrical Engineering and Applied Computer Science Federal

More information

Python & Pygame RU4CS August 19, 2014 Lars Sorensen Laboratory for Computer Science Research Rutgers University, the State University of New Jersey

Python & Pygame RU4CS August 19, 2014 Lars Sorensen Laboratory for Computer Science Research Rutgers University, the State University of New Jersey Python & Pygame RU4CS August 19, 2014 Lars Sorensen Laboratory for Computer Science Research Rutgers University, the State University of New Jersey Lars Sorensen Who Am I? Student Computing at the Laboratory

More information

iphoto Getting Started Get to know iphoto and learn how to import and organize your photos, and create a photo slideshow and book.

iphoto Getting Started Get to know iphoto and learn how to import and organize your photos, and create a photo slideshow and book. iphoto Getting Started Get to know iphoto and learn how to import and organize your photos, and create a photo slideshow and book. 1 Contents Chapter 1 3 Welcome to iphoto 3 What You ll Learn 4 Before

More information

Adafruit 16 Channel Servo Driver with Raspberry Pi

Adafruit 16 Channel Servo Driver with Raspberry Pi Adafruit 16 Channel Servo Driver with Raspberry Pi Created by Kevin Townsend Last updated on 2014-04-17 09:15:51 PM EDT Guide Contents Guide Contents Overview What you'll need Configuring Your Pi for I2C

More information

Photo/Image Controls

Photo/Image Controls Table of Contents Introduction... 2 Using Image Controls... 2 Using the Image Editor... 3 19 July 2017 TIP-2017-092 1 Introduction The Edge s photo controls now include image editing options. This document

More information

Introduction. Key Maker Survival Skills

Introduction. Key Maker Survival Skills Introduction This is a book for people who like to make things but also enjoy the premise of a postapocalypse world where you cannot assume a limitless supply of electricity and other resources. As such,

More information

Line-Follower Challenge

Line-Follower Challenge Line-Follower Challenge Pre-Activity Quiz 1. How does a color sensor work? Does the color sensor detect white or black as a higher amount of light reflectivity? Absorbance? 2. Can you think of a method

More information

Introduction to Photoshop Elements

Introduction to Photoshop Elements John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA 19341 610.280.2666 ccljtc@ccls.org www.ccls.org Facebook.com/ChesterCountyLibrary Introduction to Photoshop Elements Chester County Library

More information

Online Learning Team - Page 1

Online Learning Team -  Page 1 How to Record Videos with a Webcam Introduction It is possible to create videos for your online course by using your webcam. For instance, it is a good idea to create an introductory video. This video

More information

EMGU CV. Prof. Gordon Stein Spring Lawrence Technological University Computer Science Robofest

EMGU CV. Prof. Gordon Stein Spring Lawrence Technological University Computer Science Robofest EMGU CV Prof. Gordon Stein Spring 2018 Lawrence Technological University Computer Science Robofest Creating the Project In Visual Studio, create a new Windows Forms Application (Emgu works with WPF and

More information

Agent-based/Robotics Programming Lab II

Agent-based/Robotics Programming Lab II cis3.5, spring 2009, lab IV.3 / prof sklar. Agent-based/Robotics Programming Lab II For this lab, you will need a LEGO robot kit, a USB communications tower and a LEGO light sensor. 1 start up RoboLab

More information

How to Create Animated Vector Icons in Adobe Illustrator and Photoshop

How to Create Animated Vector Icons in Adobe Illustrator and Photoshop How to Create Animated Vector Icons in Adobe Illustrator and Photoshop by Mary Winkler (Illustrator CC) What You'll Be Creating Animating vector icons and designs is made easy with Adobe Illustrator and

More information

Emotion Based Music Player

Emotion Based Music Player ISSN 2278 0211 (Online) Emotion Based Music Player Nikhil Zaware Tejas Rajgure Amey Bhadang D. D. Sapkal Professor, Department of Computer Engineering, Pune, India Abstract: Facial expression provides

More information

Clipping Masks And Type Placing An Image In Text With Photoshop

Clipping Masks And Type Placing An Image In Text With Photoshop Clipping Masks And Type Placing An Image In Text With Photoshop Written by Steve Patterson. In a previous tutorial, we learned the basics and essentials of using clipping masks in Photoshop to hide unwanted

More information

Lane Segmentation for Self-Driving Cars using Image Processing

Lane Segmentation for Self-Driving Cars using Image Processing Lane Segmentation for Self-Driving Cars using Image Processing Aman Tanwar 1, Jayakrishna 2, Mohit Kumar Yadav 3, Niraj Singh 4, Yogita Hambir 5 1,2,3,4,5Department of Computer Engineering, Army Institute

More information

Tricky Transparency, Part One Complex Photo Mask Potential

Tricky Transparency, Part One Complex Photo Mask Potential Tricky Transparency, Part One Complex Photo Mask Potential digitalscrapper.com/blog/qt-tricky-transparency-1 Jen White Tricky Transparency, Part One Complex Photo Mask Potential by Jen White Train your

More information

UNDERSTANDING LAYER MASKS IN PHOTOSHOP

UNDERSTANDING LAYER MASKS IN PHOTOSHOP UNDERSTANDING LAYER MASKS IN PHOTOSHOP In this Adobe Photoshop tutorial, we re going to look at one of the most essential features in all of Photoshop - layer masks. We ll cover exactly what layer masks

More information

Central Photography Photoshop Tutorial. Color Splash. 1. Open Photoshop. 2. Go to File>Open (Command O).

Central Photography Photoshop Tutorial. Color Splash. 1. Open Photoshop. 2. Go to File>Open (Command O). 1. Open Photoshop. 2. Go to File>Open (Command O). 1 3. Navigate to your file, select it and open it. 2 4. Fix your photo. If it s too light, darken it. If it s too dark, lighten it. To do that, add a

More information

smraza Getting Start Guide Contents Arduino IDE (Integrated Development Environment)... 1 Introduction... 1 Install the Arduino Software (IDE)...

smraza Getting Start Guide Contents Arduino IDE (Integrated Development Environment)... 1 Introduction... 1 Install the Arduino Software (IDE)... Getting Start Guide Contents Arduino IDE (Integrated Development Environment)... 1 Introduction... 1 Install the Arduino Software (IDE)...1 Introduction... 1 Step 1: Get an Uno R3 and USB cable... 2 Step

More information

Beauty Box Video. Smooth skintones in video footage. for After Effects, Final Cut Pro, Premiere Pro.

Beauty Box Video. Smooth skintones in video footage.  for After Effects, Final Cut Pro, Premiere Pro. Smooth skintones in video footage. BEFORE AFTER Beauty Box Video for After Effects, Final Cut Pro, Premiere Pro Digital Anarchy Smart tools for creative minds www.digitalanarchy.com Beauty Box Video: Table

More information

SCD-0017 Firegrab Documentation

SCD-0017 Firegrab Documentation SCD-0017 Firegrab Documentation Release XI Tordivel AS January 04, 2017 Contents 1 User Guide 3 2 Fire-I Camera Properties 9 3 Raw Color Mode 13 4 Examples 15 5 Release notes 17 i ii SCD-0017 Firegrab

More information

Faculty Lecture Capture Guide

Faculty Lecture Capture Guide Faculty Lecture Capture Guide If you have never used Panopto before, follow this first part. Log into your Blackboard Account and open the course you wish to capture: Open your Course Management Control

More information

Photography Basics. Exposure

Photography Basics. Exposure Photography Basics Exposure Impact Voice Transformation Creativity Narrative Composition Use of colour / tonality Depth of Field Use of Light Basics Focus Technical Exposure Courtesy of Bob Ryan Depth

More information

Beyond the Basic Camera Settings

Beyond the Basic Camera Settings Beyond the Basic Camera Settings ISO: the measure of a digital camera s sensitivity to light APERTURE: the size of the opening in the lens when a picture is taken SHUTTER SPEED: the amount of time that

More information

Moto1. 28BYJ-48 Stepper Motor. Ausgabe Copyright by Joy-IT 1

Moto1. 28BYJ-48 Stepper Motor. Ausgabe Copyright by Joy-IT 1 28BYJ-48 Stepper Motor Ausgabe 07.07.2017 Copyright by Joy-IT 1 Index 1. Using with an Arduino 1.1 Connecting the motor 1.2 Installing the library 1.3 Using the motor 2. Using with a Raspberry Pi 2.1 Connecting

More information

Ionospheric flare detection using Raspberry Pi

Ionospheric flare detection using Raspberry Pi ISWI newsletter Vol. xx, no. xxx, 2016 Ionospheric flare detection using Raspberry Pi Mardina Abdullah 1,2, Kok Beng Gan 1,2, Sabirin Abdullah 2, Badariah Bais 2, Rosadah Abd Majid 3 1 Space Science Centre

More information

Programming with Python for Digital World Builders

Programming with Python for Digital World Builders Programming with Python for Digital World Builders System Setup (Microsoft Windows) The following instructions will lead you through the steps necessary to install and configure the software necessary

More information

Infoblox and Ansible Integration

Infoblox and Ansible Integration DEPLOYMENT GUIDE Infoblox and Ansible Integration Ansible 2.5 April 2018 2018 Infoblox Inc. All rights reserved. Ansible Deployment Guide April 2018 Page 1 of 12 Contents Overview... 3 Introduction...

More information

How to create a stop-motion animation. A guide to creating stopmotion animation in class. scottishbooktrust.com. Age CFE Level First and Second

How to create a stop-motion animation. A guide to creating stopmotion animation in class. scottishbooktrust.com. Age CFE Level First and Second How to create a stop-motion animation A guide to creating stopmotion animation in class Age 5-11 CFE Level First and Second Resource created by Henry Cruickshank scottishbooktrust.com /scottishbktrust

More information

Build your own SDR. By Julie VK3FOWL and Joe VK3YSP

Build your own SDR. By Julie VK3FOWL and Joe VK3YSP 2018 Build your own SDR By Julie VK3FOWL and Joe VK3YSP Introduction Why build your own Software Defined Radio? Learn about Digital Signal Processing, GNU Radio Flow Graphs, IQ, Linux and Python Create

More information

Adafruit SGP30 TVOC/eCO2 Gas Sensor

Adafruit SGP30 TVOC/eCO2 Gas Sensor Adafruit SGP30 TVOC/eCO2 Gas Sensor Created by lady ada Last updated on 2018-08-22 04:05:08 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins: Data Pins Arduino Test Wiring Install Adafruit_SGP30

More information

MINECRAFT TERRAFORMING [ CHAPTER SIX ] Everyone has their favourite Minecraft block. What if you could have an entire world made out of them?

MINECRAFT TERRAFORMING [ CHAPTER SIX ] Everyone has their favourite Minecraft block. What if you could have an entire world made out of them? [ CHAPTER SIX ] TERRAFORMING MINECRAFT Everyone has their favourite Minecraft block. What if you could have an entire world made out of them? 34 [ Chapter One Six ]] [ HACKING AND MAKING IN MINECRAFT ]

More information

Intro to Singularity Containers

Intro to Singularity Containers Intro to Singularity Containers Fuzzy Rogers Research Computing Administrator Materials Research Laboratory (MRL) Center for Scientific Computing (CSC) fuz@ucsb.edu MRL 2066B Sharon Solis Research Computing

More information

Controlling Humanoid Robot Using Head Movements

Controlling Humanoid Robot Using Head Movements Volume-5, Issue-2, April-2015 International Journal of Engineering and Management Research Page Number: 648-652 Controlling Humanoid Robot Using Head Movements S. Mounica 1, A. Naga bhavani 2, Namani.Niharika

More information

RICK WARGO - APRIL 2016 PROGRAMMATIC INTERFACES TO MINECRAFT

RICK WARGO - APRIL 2016 PROGRAMMATIC INTERFACES TO MINECRAFT RICK WARGO - APRIL 2016 PROGRAMMATIC INTERFACES TO MINECRAFT INSPIRATION http://www.instructables.com/id/python-coding-for-minecraft/?allsteps RESOURCES Minecraft Pi Edition Runs on the Raspberry Pi Very

More information

AUTONOMOUS RC CAR CONTROL USING COMPUTER VISION BY CHONG WEN YANG

AUTONOMOUS RC CAR CONTROL USING COMPUTER VISION BY CHONG WEN YANG AUTONOMOUS RC CAR CONTROL USING COMPUTER VISION BY CHONG WEN YANG A REPORT SUBMITTED TO Universiti Tunku Abdul Rahman in partial fulfillment of the requirements for the degree of BACHELOR OF INFROMATION

More information

Select your Image in Bridge. Make sure you are opening the RAW version of your image file!

Select your Image in Bridge. Make sure you are opening the RAW version of your image file! CO 3403: Photographic Communication Steps for Non-Destructive Image Adjustments in Photoshop Use the application Bridge to preview your images and open your files with Camera Raw Review the information

More information

Design and Application of Architecture of Internet of Things Based on Open Source Hardware

Design and Application of Architecture of Internet of Things Based on Open Source Hardware 2016 3 rd International Conference on Engineering Technology and Application (ICETA 2016) ISBN: 978-1-60595-383-0 Design and Application of Architecture of Internet of Things Based on Open Source Hardware

More information

Editing your digital images:

Editing your digital images: Editing your digital images: 1 By Garry Sankowsky zodpub@rainforestmagic.com.au All images taken with a digital camera need to be edited. You will usually get software with your camera that can do at least

More information

Bookable Class Catalog

Bookable Class Catalog Bookable Class Catalog We love partnering with libraries, public, private and home schools, community centers and organizations to bring our content to your kids, teens and adults! This catalog includes

More information

10 MORE cool things to do with Cubelets

10 MORE cool things to do with Cubelets MODULAR ROBOTICS EDUCATION 10 MORE cool things to do with Cubelets Using the KT01 Cubelets This activity plan includes 2 parts 1. Challenges that may be satisfied with single sense, single action robots.

More information

Voice-enabled Internet of Things

Voice-enabled Internet of Things Voice-enabled Internet of Things Advanced Topics in Internet of Things Presented by Mohammad Mofrad University of Pittsburgh April 26, 2018 1 Motivations IoT devices are all around your home Smart speakers:

More information

2: Turning the Tables

2: Turning the Tables 2: Turning the Tables Gareth McCaughan Revision 1.8, May 14, 2001 Credits c Gareth McCaughan. All rights reserved. This document is part of the LiveWires Python Course. You may modify and/or distribute

More information

EV3 Advanced Topics for FLL

EV3 Advanced Topics for FLL EV3 Advanced Topics for FLL Jim Keller GRASP Laboratory University of Pennsylvania August 14, 2016 Part 1 of 2 Topics Intro to Line Following Basic concepts Calibrate Calibrate the light sensor Display

More information

This Photoshop Tutorial 2011 Steve Patterson, Photoshop Essentials.com. Not To Be Reproduced Or Redistributed Without Permission. The original image.

This Photoshop Tutorial 2011 Steve Patterson, Photoshop Essentials.com. Not To Be Reproduced Or Redistributed Without Permission. The original image. Layer Opacity VS FIll One of the most common questions I receive from Photoshop users, and not just beginners, is What the heck is the difference between the Opacity and Fill options in the Layers panel?

More information

[Title] MINECRAFT CAMP. System Administrator s Guide

[Title] MINECRAFT CAMP. System Administrator s Guide MINECRAFT CAMP System Administrator s Guide Contents Getting Started... 2 System Requirements... 2 Computers... 2 Network Requirements... 2 Minecraft Requirements... 2 Safe Gaming and Safe Modding... 2

More information

Horus Documentation. Release 0.2rc1. Jesús Arroyo Torrens

Horus Documentation. Release 0.2rc1. Jesús Arroyo Torrens Horus Documentation Release 0.2rc1 Jesús Arroyo Torrens Nov 03, 2017 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Getting started..............................................

More information

Topic: Photoshop and Digital Painting

Topic: Photoshop and Digital Painting Let there be color! Photoshop is as much an artistic tool as it is for digitally altering images. But let s face it most people only relate the Adobe powerhouse program to the later category, hell it is

More information

Illuminating the Big Picture

Illuminating the Big Picture EE6A Imaging 2 Why? Imaging : Finding a link between physical quantities and voltage is powerful If you can digitize it, you can do anything (IOT devices, internet, code, processing) Imaging 2: What measurements

More information