Web Design. How to link the robot How to turn on the robot Sec 9-2 - Getting Started What is python Programming in python How to move the robot How to.

Slides:



Advertisements
Similar presentations
Sprite-visual object (actor on the stage) Scripts- Tells actors (sprites) what to do.
Advertisements

Do I need a robot today? You only need a robot if your team has not shown me your octagon and/or the octagon in a function.
Follow The Guidelines Introductory Presentation. Opening Activity Make a prediction about how light sensors will use thresholds. Keep in mind: We used.
Final Project Web Design. Final Project Your robot will be placed in a room with the red cone. Your robot will need to find the cone in the room and run.
Image Maps and Graphics Internet Basics and Far Beyond! Mrs. Wilson.
The Turtle Laboratory Sequence Myles McNally LMICSE Workshop November , 2004 University of Mississippi.
Chapter 6 Math Review 5 th Grade May Mean 1.Set of numbers (a, b, ….., z) 2.Find the sum of all the numbers in the set. a+b+….+z= Total 3. Count.
Introducing Web Tables
The Turtle Laboratory Sequence LMICSE Workshop June , 2005 Alma College.
EBOT: Programming Primer Sean Donovan Alexander Hecht Justin Woodard.
Computer Vision. How would a human think of this picture? We might think of this picture as something like “an orange smiley face with black eyes, lighter.
CSE 113 Week 5 February , Announcements  Module 2 due 2/15  Exam 3 is on 2/15  Module 3 due 2/22  Exam 4 is on 2/25  Module 4 due 2/29.
Learning to Program with Python Sec 9-1 Web Design.
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.
CompSci Today’s topics Robots Myro Loops Notes from the Institute for Personal Robots in Education Upcoming ä More Python Reading Learning Computing.
Simple Python Loops Sec 9-7 Web Design.
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.
Web Design. How to set up the robot How to link to robot How not to break my robot Sec Getting Started How to make it move How to control speed.
In.  This presentation will only make sense if you view it in presentation mode (hit F5). If you don’t do that there will be multiple slides that are.
Image Processing & Perception Sec 9-11 Web Design.
Scribbler Movements Sec 9-3 Web Design. Objectives The student will: Understand the basic movement commands for the Scribbler Know how to create and execute.
Using Microsoft Office Picture Manager How Cropping Can Make Your Presentations Look More Professional.
Chapter 6: Modifying Pixels by Position. Chapter Learning Goals.
NestedLoops-part11 Nested Loops – part 1 Barb Ericson Georgia Institute of Technology Nov 2009.
Chapter 5 Creating an Image Map.
Creating New Webpages Pioneer Preparatory School.
CSC1401 Viewing a picture as a 2D image - 1. Review from the last week We used a getPixels() to get all of the pixels of a picture But this has been somewhat.
Week 11. Picture Taking Functions  takePicture(“color” | “gray”) Returns a picture object  Show(picture object) Will show the picture that was taken.
Introducing Web Tables. Tables for tabulating items  Better looking  More flexibility  More efficient to explain information than plain text.
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.
Animating GIF. What is it? Think of how a flip book works. Each page is a different picture and when flipped through quickly, it looks as though objects.
Learning the Language of Math ESOL. FRACTIONS Learning Outcome I can… * explain what is a fraction. * explain the difference between a whole number and.
A remote control robot with webcam. Responsibilities User Interface Communicate with server Webcam Display Server Web Server Collaborators Work: Harkins.
CS 1 with Robots Variables, Data Types & Math Institute for Personal Robots in Education (IPRE)‏ Sec 9-7 Web Design.
HTML. Adding Background Color The bgcolor attribute lets you change the background color of the Web page. Located in the body tag See common Web Page.
CSC 111. Solving Problems with Computers Java Programming: From Problem Analysis to Program Design, Third Edition3 Solving Problems Stages 1.Problem.
Grade 4 Science.  -Click Start  -Click Programs  -Click IHMC Cmap Tools  -Click Cmap Tools.
Web Page Design Mrs. Ricke. Graphics Interchange Format 256 colors only Good for icons, clipart, logos Not good for high quality pictures.
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.
BUILDING A WEB PAGE BASIC HTML CODING. We first open notepad to start to build our web page. We enter the code at the beginning. And then we write below.
Learning to Program with Python Sec 9-1 Web Design.
1 Quiz Show Programming Terms. 2 Alice - 3D Virtual Programming Vocabulary Quiz Board Chapter 1 Chapter 2a Chapter 2b Chapter 3 Chapter 4 $100 $200 $300.
+ Math Module 1 Rates of Change & Mathematical Models.
Technological Skills “Flow Charting”
Intro CS – Loops & Creating Shapes
What you asked me to teach…
Loops BIS1523 – Lecture 10.
Learning to Program with Python
Unit 4 - Perception - Type of Processing Explanation
Image Processing & Perception
Objective of the lesson
Follow The Guidelines.
Binary, Hexadecimal, Octal, and BCD Numbers
“Take the top #, Divide by the bottom #!”
MATH VOCABULARY & GUIDED QUESTIONS DAY 13.
Sensors Training.
What Shapes Can You See in this Picture?
Two-Dimensional Arrays and Nested Loops – part 2
Georgia Institute of Technology
Vision Tests.
Gray Scale picture def pixBW(pixel): # given a pixel, change to BW
Introductory Presentation
Introductory Presentation
Chapter 6 Perception - Type of Processing Explanation
Introduction to Programming Using Python PART 2
Python 19 Mr. Husch.
Creating an Image Map.
SPL Programming – While Loop Pattern
Python 19 Mr. Husch.
Teaching Java using Turtles part 2
Presentation transcript:

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 turn How to stop Sequential Programming Sec Scribbler movements What is python Programming in python Python Syntax Sec Simple Functions (names) Parameters Python Syntax Sec Functions with Parameters and Return Values Functions/Methods Python Syntax Sec Creating and Using Modules Loops Sec Simple Python Loops How to do math Sec Variables What you asked me to teach…

How to take a picture Save a picture Sec Taking Pictures Conditionals (If statements) Sec Making Decisions in Python How to tell colors in a picture How to tell shapes Sec Image Processing and Perception How the proximity sensors work Sec Sensors What you asked me to teach…

You only care where the item is from side to side (not top to bottom). “X” pixels are numbered from 0 to 255 / 0 to 1280(left to right) Divide the image into 3 parts: Left third 0 – 84 / 0 – 426 Middle third 85 – 169 / 427– 853 Right third 170 – 255 / If you take the average of the X value of all the pixels that you think are in the cone you will know where the center of the cone is. You will need to write code to nudge (barely turn) left or right to adjust to where the cone is in the picture. What part of the picture is the object in…

Questions??