Week 1 - Friday CS 113.

Slides:



Advertisements
Similar presentations
Eric Moore Computer Users Group of Greeley. Plasma Each pixel consists of three gas-filled cells Electric current ionizes the gas, emitting UV that stimulates.
Advertisements

MONITORS Known as a display screens. Monitors present visual images of text and graphics. Monitors vary in size, shape, and cost.
Chapter 6 Review.
C HAPTER 20: G ETTING T ECHNICAL – T HE V IDEO S IGNAL.
What We Must Understand
Video Graphics Video Graphic Equipment Fundamentals of Graphic Design What & How Graphics Communicate.
Academic Media Videoconference Services Designing Computer-based Materials for Videoconferences: Text and Color Donald Dover Videoconference Operations.
Bits are Not just for Numbers Computers store characters as bits or binary digits. Characters from the English-language keyboard are represented in ASCII.
CSc 461/561 CSc 461/561 Multimedia Systems Part A: 2. Image.
File Formats The most common image file formats, the most important for cameras, printing, scanning, and internet use, are JPG, TIF, PNG, and GIF.
High Definition Video In The Real World
Data starts with width and height of image Then an array of pixel values (colors) The number of elements in this array is width times height Colors can.
High-Def TV David Diggs. What is HDTV A television system that has twice the standard number of scanning lines per frame and therefore produces pictures.
CS 1308 Computer Literacy and the Internet. Creating Digital Pictures  A traditional photograph is an analog representation of an image.  Digitizing.
Output Thomas W. Davis. What is Output? Output it data that has been processed into a useful form Output includes: Monitors Printers Speakers Etc.
display screens and ergonomics
© GCSE Computing Candidates should be able to:  explain the representation of an image as a series of pixels represented in binary  explain the need.
By: Ghada Al Naimi. I'm trying to know the dimensions of a video game ( cinema screens, television screens, computer screens ) and to find how are they.
Developing Content and Layout Lesson 6. Creating Web Site Content Online users scan a page, read key words of text, and check out graphics Reading from.
ULTRA PIXELS ULTRA PIXELS The future of resolutions A SEMINAR ON
Michael Fine 1.  High definition television is the highest form of digital television.  16:9 aspect ratio, which is similar in appearance to a movie.
Video Monitor CRT: Cathode Ray Tube
Graphics. Graphic is the important media used to show the appearance of integrative media applications. According to DBP dictionary, graphics mean drawing.
Chapter 4: Representation of data in computer systems: Images OCR Computing for GCSE © Hodder Education 2011.
Ch5: TELEVISION.
What Exactly is Television?  A process of transmitting images through a signal from one place or another.
Image Formation Ch. 3 Kevin Bechet. Review for this Chapter Key Terms Video Formats High Definition vs Standard Definition Image Formation.
The Nature of Data and Information 11 IPT Miss O’Grady.
By: Catyana Brown Information Technology in a Global Society: Multimedia.
Representation of Data in Computer Systems
Orthonormal Basis Cartesian Coordinate System – Unit vectors: i, j, k – Normalized to each other – Unique representation for each position!! – Convenient!
Unit 2, Lesson 6 Learning about Peripherals NAF Principles of Information Technology Copyright © 2007–2015 National Academy Foundation. All rights reserved.
4K Resolution The future of resolutions. Table of Contents 1. What is resolution? 2. Common Terms 3. Background & Current Technologies 4. 4K resolution.
Week 1 - Wednesday.  What did we talk about last time?  Syllabus  Computers.
DISPLAY DEVICES CIS 10, Group #1 April 01, 2006 C. X. A. L. K. H. A. V. ((( L. C.
AP CSP: Pixelation – B&W/Color Images
COMP541 Video Monitors Montek Singh Oct 7, 2016.
Image and Sound Representation
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
Exploring Computer Science - Lesson 3-4
COMP541 Video Monitors Montek Singh Sep 15, 2017.
Data Representation Images.
Computer Graphics Lecture 3 Computer Graphics Hardware
Measuring Systems One pica or two?.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Exploring Computer Science - Lesson 3-4
2.01 Understand Digital Raster Graphics
Vector vs. Bitmap.
Some Basics of Computer Graphics
Pixel, Resolution, Image Size
4:3 For every 4 inches wide you would have 3 inches high.
CS Principles U2L3 Encoding B&W Images.
Units of Measurement, Image Resolution, & Color Mode
Exploring Computer Science - Lesson 3-4
Chapter I Digital Imaging Fundamentals
Understanding Video Cards and Monitors
Introduction to Computers
Computer Graphics.
Unit 2, Lesson 6 Learning about Peripherals
Classroom Display Sizes
Chapter 9 - Graphics and Effects
2.01 Understand Digital Raster Graphics
Lesson 3 & 4: Encoding Images
Graphics Systems SUBJECT: COMPUTER GRAPHICS LECTURE NO: 02 BATCH: 16BS(INFORMATION TECHNOLOGY) 1/4/
COMP541 Video Monitors Montek Singh Feb 6, 2019.
Orthogonal Base Cartesian Coordinate System Works in general:
Output Chapter 6.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Lesson 3 & 4: Encoding Images
Section 3.4 The Colors of Light.
Presentation transcript:

Week 1 - Friday CS 113

Last time What did we talk about last time? Syllabus and course policies A little bit about computers

Questions?

Graphics

Screens Ultimately, most graphics that we're interested in on a computer are displayed on a screen A screen is made up of dots Each dot is called a pixel, short for picture element Each pixel has a color By displaying enough pixels, you can make a picture

Resolution A screen has both a width and a height in pixels The combination of these is called the resolution of the screen Higher numbers mean more pixels, allowing a more accurate representation of images Device Resolution iPhone 4 960 x 640 iPhone 6 1334 × 750  Older monitor 1024 x 768 720 HD TV 1280 x 720 1080 HD TV 1920 x 1080 4K monitor 3840 x 2160

Aspect ratio It's difficult to create programs and video content that looks good on any arbitrary screen size Many screens have one of three different aspect ratios (the ratio between width and height) Why are there three different ones? Aspect Ratio Example Devices 4 : 3 1024 x 768 Standard definition TVs, older monitors 16 : 9 1920 x 1080 High definition TVs, many newer monitors 16 : 10 1280 x 800 Some newer monitors

Buying a TV Many of you will buy a TV (or a monitor) at some point HD TVs will all have a 16 : 9 aspect ratio A 1080 TV has more than twice as many pixels as a 720 TV Contrast ratio is the ratio between the brightest (maximum white) and the darkest the screen can show A higher contrast ratio makes a more vibrant image There are 1080p and 1080i TVs (similar for 720) p is for progressive and i is for interlaced Interlaced is an old standard based on how TV signals used to be sent Progressive is clearer and easier to look at, especially for text

Working with graphics In order to program graphics in a computer, we'll have to think about the screen (or some part of it) as a Cartesian coordinate system In some systems, y starts at 0 at the top of the screen and increases downward In other systems, y starts at 0 at the bottom of the screen and increases upward x y (0,0) x y (0,0)

Scratch For the first few weeks of the semester, we'll be using Scratch to program with Scratch puts x and y in the middle, with positive and negative values, like a normal Cartesian plane x y (0,0)

Scratch Tutorial

Lab 1

Upcoming

Next time… Back to computers More on graphics We will start 3D graphics

Reminders Pick your teams for Project 1 if you haven't already!