Week 11. Picture Taking Functions  takePicture(“color” | “gray”) Returns a picture object  Show(picture object) Will show the picture that was taken.

Slides:



Advertisements
Similar presentations
HOW TO USE POWERPOINT By Bryan Kreps.
Advertisements

How to do a print screen!. 1. Find what you want to ‘copy’ as evidence:
Web Design Vocab 3 PNG, JPG, GIF, MP3, MPEG.
Moza Mohammed Microsoft Office PowerPoint To open Microsoft Office PowerPoint 2007.
Why use Files? Your Python Program External File (secondary storage) Write to file (Save) Read from file (Load) …so we can have access to ‘stored’ data.
Compressing PowerPoint Presentations When we add pictures to PowerPoint presentations we can end up with very large files. We can compress these pictures.
This is a test screen Engr Test slide Slide # 3.. Design Prepackaged designs. Look for the design icon on the upper task bar. Prepackaged designs.
Let’s Make a Movie Editing, Special Effects, and Movie Finishing.
How to turn on the robot How to start Bluetooth How to connect to robot How to initialize the robot How to not break the robot Sec Getting Started.
Microsoft Powerpoint Getting Started Tips & Tricks.
Taking Pictures Sec 9-9 Web Design. Objectives The student will: Know how command the scribbler robot to take a picture. Know how to display the picture.
Instrument Family Firstname Lastname Date -Insert Pictures of Instruments on this slide -Format Backround or slide design to add color.
Lists. Lists store information in a certain order. You can add, remove, or rearrange items in a list. You can also pick out information from a list.
Guidelines for displaying, movies and pictures in RD6600 Great Company Great People LG Electronics The following are the requirement for Movies to be played.
Image Processing & Perception Sec 9-11 Web Design.
Unit 21: Improving the area we can see from our window.
Start VideoStudio 9 and choose VideoStudio Editor.
How to make a Power Point Relationship Narrative By Lisa Williams.
Pivot Introduction.
Your Smart Board is on most of the day….. Why not use the space for learning?
How to link the robot and the computer (Bluetooth) How to turn on and off How to connect the adaptor Fluke card connection Sec Getting Started How.
Instructions These lessons are interactive and require your participation. Please follow the instructions on each slide. Here are a few common symbols.
PowerPoint What can we do with it? A Program for the preparation of Presentations.
How to Make a Power Point. How to Open Power Point Go to the bottom of the screen Click on START PROGRAMS MICROSOFT WORD PROGRAMS MICROSOFT OFFICE POWER.
Video in Power Point Objective Able to insert video in power point Able to make video play by itself Able to change volume of video Able to cut out part.
OCR Computing GCSE © Hodder Education 2013 Slide 1 OCR GCSE Computing Python programming 4: Writing programs.
Creating your Power Point and Citing Your Source.
TOP FIVE of 2012 Group members’ names here. Instructions Using Microsoft PowerPoint create a New blank presentation Save the presentation as Top Five.
Data Transfer The Kingsway School. Transfer Speed Data Transfer is measured in bits per second (bps) 1 Kilobit per second is 1000 bps 1 Megabit\per second.
PowerPoint music, narration & sounds To Add Music… Insert > movies & sound: You can hide it, or you can use it to start your music in your show. Set.
WEEK 1 You have 10 seconds to name…
Windows Live Movie Maker. Making a Title In your ribbon click “Title” You can now type what you would like the title of your movie to be.
All About Me Presentation
TURN YOUR POWERPOINT INTO A MOVIE USING PHOTOSTORY.
Copyright © Wondershare Software Wondershare DemoCreator.
Fun features to enhance your presentations  Add Layouts  Add Clipart or Graphs  Add Sound  Add Video  Add Transitions  Add remote timing.
1- How to connect the robot to the pc Sec Getting Started 3- How to move the robot Sec Scribbler movements 4- How to make a turn 11- How to.
How to Create a Slide Show By Jessica Wright and Chloe Smith.
Action Buttons Link to another place in your presentation Link to web pages, videos, etc. Interactivity – gives the viewer a choice of what happens next,
Let’s Make a Movie The Basics. Goals Storyboard Take Video Upload Video.
Windows Movie Maker World Language Department 2006/2007.
Windows Movie Maker Moza Mohammed. To open Windows Movie Maker.
Commercials PowerPoint Storyboard to Windows Movie Maker.
Instrument Family Firstname Lastname Date -Insert Pictures of Instruments on this slide -Format Backround or slide design to add color.
Tips: 1. To insert your picture, click “Insert” –> “Picture”, select picture from your computer. (or just click the icon in the middle of page.) You can.
Show What You Know Make a Power Point To Inform. Open Microsoft Power Point 1. Start 3. Microsoft Power Point 2. Programs.
Python focus – files The open keyword returns a file object Opening a file myFile = open('C:\file.txt', arg) Optional argument The second argument controls.
can be shared on.
Web Design. How to link the robot How to turn on the robot Sec Getting Started What is python Programming in python How to move the robot How to.
All About Me Presentation
Creating a Photo-Voice Project
A Playful Introduction to Programming by Jason R. Briggs
Introduction to Programming
What you asked me to teach…
Python 18 Mr. Husch.
Saving your Animations
worldsystembuilder.com/gceo
Python I/O.
MICROSOFT POWER POINT 2003.
Јелена Штрбац ЈУ ОШ ''Ђура Јакшић'' VIII1
Python 19 Mr. Husch.
YOUR TITLE Silent Movie Inspired by Hugo Cabret
Start VideoStudio 9 and choose VideoStudio Editor
Introduction to Python
Python 19 Mr. Husch.
Python 18 Mr. Husch.
Display Files Week 4.
News Article Thumbnails TEMPLATE
Digital Story Telling with Frames
Presentation transcript:

Week 11

Picture Taking Functions  takePicture(“color” | “gray”) Returns a picture object  Show(picture object) Will show the picture that was taken on the screen

 A = takePicture(“color”) or A = takePicture(“gray”)  A is a variable and can be any name, but is now a picture object Taking Pictures with Variables

 L = []  L.append(takePicture(“color”))  L is a list object and each time you call append it adds to the List.  Saving List as a animated GIF(Graphics Interchange Format) savePicture(pictures, “c:\\temp\\movie.gif”) Open c:\temp\movie.gif Taking Pictures with List

Take a Picture  Use your robots to take a picture and then show a picture, in the python shell  Do the same thing, but write it into a program (.py file)

Create an adventure movie  Write a program (.py file) that will tell Scribbler to take pictures of the objects that we have on the floor  Then save them to a movie that we can play.