Q A bitmap file contains the binary on the left below. 1 is white and 0 is black. Colour in each of the squares. What is the letter that is reve

Size: px
Start display at page:

Download "Q A bitmap file contains the binary on the left below. 1 is white and 0 is black. Colour in each of the squares. What is the letter that is reve"

Transcription

1 R 25 Images and Pixels - Reading Images need to be stored and processed using binary. The simplest image format is for an image to be stored as a bitmap image. Bitmap images are made up of picture elements called pixels. These contain a mapping of the colour of each pixel to bits. Black and white images have two colours (black and white) which can be stored with 1 bit per pixel Bitmap image file Images that have different shades of gray are called grayscale images. We can use more bits to store the level of gray each pixel will have. The number of bits used for each pixel is called the colour depth. Type of image Example Bitmap Grayscale Grayscale Colour depth Total number of colours 1 bit/pixel 2 2 bits/pixel 8 bits/ /pixel Full colour images store 8 bits for each of red, green and blue colours (RGB). These correspond to the sub pixels on a computer display. This allows for 2 24 (about 16.8 million) different colours. These can be written as 6 digits of hexadecimal. For example, FFFFFF is white and FF0000 is red. 49

2 Q A bitmap file contains the binary on the left below. 1 is white and 0 is black. Colour in each of the squares. What is the letter that is revealed? Letter revealed: _ 2. Pixels are named after what? Picture Elements Picture Cells Part Elements Picture Hex Elements 3. A black and white image will require how many bits per pixel? Number of bits: _ 7. As you increase the colour depth what happens to the image quality? It makes no difference It improves It gets worse You cannot change it 8. A bitmap file contains the binary on the left below. 11 is white, is gray, 01 is light gray and 00 is black. Colour in each of the squares. What is the letter that is revealed? Letter revealed: _ Images and Pixels - Questions 9. An colour image has a 24 bit colour depth. Its dimensions are 24x768. How much storage space will be taken up with the data for the image? Space required: Megabytes 4. The number of bits per pixel is called what?. A school logo requires 5 different colours. How many bits will be required for each pixel? Bits equired: 5. A grayscale image is stored using the following colour depth. For each, state how many colours (shades of gray) will be available. a) 1 bit _ b) 2 bits _ c) 4 bits _ d) 8 bits _ e) 16 bits _ [5] 6. A grayscale image contains 24 pixels. 4 colours (shades of gray) have been used. How much storage space will the data for this image require? Space required: bytes 11. Computer displays use 3 colours for each pixel. What are they? Colour 1: _ Colour 2: _ Colour 3: _ 12. A web designer wishes to use 24 bit colour for their images. How many colours will be available for them to use? colours 13. What do each of the following colours represent in hexadecimal? a) FFFFFF _ b) 0000FF _ c) 00FF00 _ d) _ [4] 50

3 R 26 Image Size - Reading The resolution of an image is the concentration of pixels or the number of pixels per unit. In printed material this is often given as the number of dots per inch (dpi). The following black and white bitmap image on the left is represented by the binary data on the right The problem is that the computer needs more information than just this data. It also needs to know the width and height of the image along with the colour depth (also known as bit depth). This extra data is known as metadata. Meta means describing something. So metadata describe the data that we are storing. Modern digital cameras also store other data about the photographs they take such as the camera that was used, the aperture (how open the lens is to light), the exposure (how long the shutter was open) and the make of camera used. Some cameras will even store the GPS coordinates of the image so that the place it was taken can be located on a map. All this information is also stored as part of the metadata. The above image would store the following metadata: width = 12 pixels height = 20 pixels bit depth = 1 bit In certain file formats such as GIF the metadata also needs to provide a colour map of what colour each binary pattern will represent. Question: Answer: How large, in bytes, will the image shown above be? = width * height * bit depth + metadata = 12 * 20 * 1 + metadata = metadata (this is in bits) = 240 / 8 + metadata = 30 bytes + metadata We could design an image format that stored meta data the following way: A 2 byte number to store the width A 2 byte number to store the height A 1 byte number to store the bit depth The image above would therefore require: bytes = 30+5 bytes = 35 bytes Different file formats will requiree different amounts of metadata so this is only a guide. 51

4 Q The resolution of an image means what? Fill in one circle. How many colours are available Pixels per unit Additional information about it RGB 2. The resolution of an image can be measure in DPI. What does this stand for? _ 3. Match the following changes to an image on the left with the effects on the right. Additional items of metadata are stored Will increase the number of colours available Image Size - Questions 6. An image format stores metadata as width (1byte), height (1 byte), colour depth (1 byte) followed by the image data. a) How much storage space will be required to store the metadata? _ bytes b) How much storage space will be required to store the image data and metadata if the the image s dimensions are 24x768. _ bytes c) The following binary data is for a file stored in the above format. Use the data to colour the grid and write the character that is revealed below: The resolution of a file is reduced results in larger file size Increasing the colour depth Resultss in a smaller file size [3] 4. Which of the following are parts of the image metadata? Tick as many boxes as required. image width RAM required to display the image image height colour depth 5. How many bits colour depth would be required for each of the following? a) 4 colours _ bits b) 16 colours _ bits c) 256 colours _ bits d) 00 colours _ bits [4] d) How much storage space will the _ bytes Letter revealed: image above in part C require? 7. A digital camera takes images with 4928 width x 3262 height. How many millions of pixels (megapixels) does the sensor have? Megapixels 8. How much RAM is required to store 1 frame of video/graphics for each of the following devices: Device Width Height Pixel depth RAM required Game Boy px 144 px 2 bit KB Game Gear px 144 px 5 bit KB PSP (2004) 480 px 272 px 24 bit KB iphone 1 (2007) 480 px 320 px 24 bit KB Galaxy S4 (2013) 1920 px 80 px 24 bit MB [5] 52

5 R 27 Digitising Sound - Reading Sound is input into a computer with a microphone and output from it with a speaker. Sound, unlike say a key stroke, is continuous movement of air and so an analogue signal. Computers need to store things discretely as 1s and 0s. A sound card will contain an analogue-to-digital converter (ADC) to convert the signal from a microphone to digital for the computer. It will have a digital-to-analogue converter (DAC) to convert the computers digital signal to an analogue one for the speaker. This is how it works: 1. Start with a sound wave (the right line shows 1 second of audio) 2. Now sample the data (here we are taking 4 samples per second so 4Hz) This is the vertical lines. This is known as the sample rate. We also choose a bit rate (in this case 2 bits) which is how accurate each sample will be. Notice that because of the low bit rate we need to round up or down if it doesn t cross a horizontal line at the sample point. Sample 1 Sample 2 Sample 3 Sample 4 3. The binary to store the right hand graph will be: 01. Using a higher sample rate this time (7Hz) and higher bit rate (3 bits) we get a more accurate representation, but still not perfect The binary to store this would be: The amount of storage space to store an uncompressed sound file will be =bit rate * sample rate A CD uses 16 bit per sample * 44.1 KHz sample rate * 2 channels (left and right) = 16*440*2 = bit/s data rate = ( / 8)/24 = Kilobytes per second 53

6 Q 27 Digitising Sound - Questions 6. Match the words on the left to their meanings on the right. 1. For the following text insert the words underneath into the blank spaces. Sound is an sound wave. To save this on a computer a converts it to an electrical analogue signal. An converts it to a _ which the computer can then save. digital signal microphone analogue analogue-to-digital converter 2. The accuracy of each sample is determined by what? ADC DAC Analogue Digital 7. A sound file is recorded as a 3-bit sound file. The chart to the right is for 1 second of the file. Continuous Analogue to Digital converter Discrete Digital to Analogue converter [4] 3. The quality of sound saved in an audio file is determined by both the bit rate and what? 4. Look at a sound wave to the right. The bit rate is shown on the y-axis and time on the x-axis. What is the value in binary of the sample at the following time intervals? time = 0: time = 1: time = 4: 5. If the bit rate of a sound file is increased what happens to the audio quality? Fill in one circle. The bit rate has no effect It increases It decreases [5] The following data is stored in the file. Plot the sound wave that will be generated by the stored file An audio CD has a bit-rate of 16 bits. It has a frequency (sample rate) of 440Hz for each of the left and right speakers. a) How many bits are required to store 1 second of audio for both speakers? _ bits b) How many bytes are required to store 1 minute of audio? bytes c) A 650MB CD can store how many minutes of audio? _mins. 9. A DVD-Audio disc uses 96KHz sampling at a 24 bit depth for 6 channels (Full surround 5.1). a) What is the bit rate required for this disc? _ Mbit/s b) How much storage space will be required for 1 hour? GB [3] 54

1. Describe how a graphic would be stored in memory using a bit-mapped graphics package.

1. Describe how a graphic would be stored in memory using a bit-mapped graphics package. HIGHER COMPUTING COMPUTER SYSTEMS DATA REPRESENTATION GRAPHICS SUCCESS CRITERIA I can describe the bit map method of graphic representation using examples of colour or greyscale bit maps. I can describe

More information

Data Representation. "There are 10 kinds of people in the world, those who understand binary numbers, and those who don't."

Data Representation. There are 10 kinds of people in the world, those who understand binary numbers, and those who don't. Data Representation "There are 10 kinds of people in the world, those who understand binary numbers, and those who don't." How Computers See the World There are a number of very common needs for a computer,

More information

Unit 4.4 Representing Images

Unit 4.4 Representing Images Unit 4.4 Representing Images Candidates should be able to: a) Explain the representation of an image as a series of pixels represented in binary b) Explain the need for metadata to be included in the file

More information

The BIOS in many personal computers stores the date and time in BCD. M-Mushtaq Hussain

The BIOS in many personal computers stores the date and time in BCD. M-Mushtaq Hussain Practical applications of BCD The BIOS in many personal computers stores the date and time in BCD Images How data for a bitmapped image is encoded? A bitmap images take the form of an array, where the

More information

Digital Imaging Rochester Institute of Technology

Digital Imaging Rochester Institute of Technology Digital Imaging 1999 Rochester Institute of Technology So Far... camera AgX film processing image AgX photographic film captures image formed by the optical elements (lens). Unfortunately, the processing

More information

Digitizing Color. Place Value in a Decimal Number. Place Value in a Binary Number. Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally

Digitizing Color. Place Value in a Decimal Number. Place Value in a Binary Number. Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally Fluency with Information Technology Third Edition by Lawrence Snyder Digitizing Color RGB Colors: Binary Representation Giving the intensities

More information

TODAY STANDARD COLORS RGB COLOR CS 115: COMPUTING FOR SOCIO-TECHNO WEB REPRESENTATION OF TEXT, NUMBERS AND CODE

TODAY STANDARD COLORS RGB COLOR CS 115: COMPUTING FOR SOCIO-TECHNO WEB REPRESENTATION OF TEXT, NUMBERS AND CODE TODAY Computer components Binary numbers Text representation Color representation ( THE CS 115: COMPUTING FOR SOCIO-TECHNO WEB REPRESENTATION OF TEXT, NUMBERS AND CODE STANDARD COLORS All standards-compliant

More information

5/17/2009. Digitizing Color. Place Value in a Binary Number. Place Value in a Decimal Number. Place Value in a Binary Number

5/17/2009. Digitizing Color. Place Value in a Binary Number. Place Value in a Decimal Number. Place Value in a Binary Number Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally Digitizing Color Fluency with Information Technology Third Edition by Lawrence Snyder RGB Colors: Binary Representation Giving the intensities

More information

Data Representation 1 am/pm Time allowed: 22 minutes

Data Representation 1 am/pm Time allowed: 22 minutes High Weald Academy GCSE COMPUTER SCIENCE 8520/DR1 Paper DR1 Data Representation 1 am/pm Time allowed: 22 minutes Materials There are no additional materials required for this paper. Instructions Use black

More information

Fundamentals of Multimedia

Fundamentals of Multimedia Fundamentals of Multimedia Lecture 2 Graphics & Image Data Representation Mahmoud El-Gayyar elgayyar@ci.suez.edu.eg Outline Black & white imags 1 bit images 8-bit gray-level images Image histogram Dithering

More information

UNIT 7B Data Representa1on: Images and Sound. Pixels. An image is stored in a computer as a sequence of pixels, picture elements.

UNIT 7B Data Representa1on: Images and Sound. Pixels. An image is stored in a computer as a sequence of pixels, picture elements. UNIT 7B Data Representa1on: Images and Sound 1 Pixels An image is stored in a computer as a sequence of pixels, picture elements. 2 1 Resolu1on The resolu1on of an image is the number of pixels used to

More information

CS101 Lecture 12: Digital Images. What You ll Learn Today

CS101 Lecture 12: Digital Images. What You ll Learn Today CS101 Lecture 12: Digital Images Sampling and Quantizing Using bits to Represent Colors and Images Aaron Stevens (azs@bu.edu) 20 February 2013 What You ll Learn Today What is digital information? How to

More information

Chapter 8. Representing Multimedia Digitally

Chapter 8. Representing Multimedia Digitally Chapter 8 Representing Multimedia Digitally Learning Objectives Explain how RGB color is represented in bytes Explain the difference between bits and binary numbers Change an RGB color by binary addition

More information

25 Questions. All are multiple choice questions. 4 will require an additional written response explaining your answer.

25 Questions. All are multiple choice questions. 4 will require an additional written response explaining your answer. 9 th Grade Digital Photography Final Review- Written Portion of Exam EXAM STRUCTURE: 25 Questions. All are multiple choice questions. 4 will require an additional written response explaining your answer.

More information

Byte = More common: 8 bits = 1 byte Abbreviation:

Byte = More common: 8 bits = 1 byte Abbreviation: Text, Images, Video and Sound ASCII-7 In the early days, a was used, with of 0 s and 1 s, enough for a typical keyboard. The standard was developed by (American Standard Code for Information Interchange)

More information

Introduction to Digital Imaging CS/HACU 116, Fall 2001 Digital Image Representation Page 1 of 7

Introduction to Digital Imaging CS/HACU 116, Fall 2001 Digital Image Representation Page 1 of 7 Digital Image Representation Page 1 of 7 Take an analog image, for instance, this 35mm slide image is roughly 1.5" by 1" in actual size. Our goal is to make a digital version of it. In other words, we

More information

Digital Imaging - Photoshop

Digital Imaging - Photoshop Digital Imaging - Photoshop A digital image is a computer representation of a photograph. It is composed of a grid of tiny squares called pixels (picture elements). Each pixel has a position on the grid

More information

PENGENALAN TEKNIK TELEKOMUNIKASI CLO

PENGENALAN TEKNIK TELEKOMUNIKASI CLO PENGENALAN TEKNIK TELEKOMUNIKASI CLO : 4 Digital Image Faculty of Electrical Engineering BANDUNG, 2017 What is a Digital Image A digital image is a representation of a two-dimensional image as a finite

More information

Image Perception & 2D Images

Image Perception & 2D Images Image Perception & 2D Images Vision is a matter of perception. Perception is a matter of vision. ES Overview Introduction to ES 2D Graphics in Entertainment Systems Sound, Speech & Music 3D Graphics in

More information

UNIT 7C Data Representation: Images and Sound

UNIT 7C Data Representation: Images and Sound UNIT 7C Data Representation: Images and Sound 1 Pixels An image is stored in a computer as a sequence of pixels, picture elements. 2 1 Resolution The resolution of an image is the number of pixels used

More information

Digital photo sizes and file formats

Digital photo sizes and file formats Digital photo sizes and file formats What the size means pixels, bytes & dpi How colour affects size File formats and sizes - compression Why you might need to change the size How to change size For Tynemouth

More information

Session 1. by Shahid Farid

Session 1. by Shahid Farid Session 1 by Shahid Farid Course introduction What is image and its attributes? Image types Monochrome images Grayscale images Course introduction Color images Color lookup table Image Histogram Shahid

More information

raw format format for capturing maximum continuous-tone color information. It preserves all information when photograph was taken.

raw format format for capturing maximum continuous-tone color information. It preserves all information when photograph was taken. raw format format for capturing maximum continuous-tone color information. It preserves all information when photograph was taken. psd files (photoshop default) layered photoshop continuous-tone (photograph)

More information

Aperture. The lens opening that allows more, or less light onto the sensor formed by a diaphragm inside the actual lens.

Aperture. The lens opening that allows more, or less light onto the sensor formed by a diaphragm inside the actual lens. PHOTOGRAPHY TERMS: AE - Auto Exposure. When the camera is set to this mode, it will automatically set all the required modes for the light conditions. I.e. Shutter speed, aperture and white balance. The

More information

UNIT 7C Data Representation: Images and Sound Principles of Computing, Carnegie Mellon University CORTINA/GUNA

UNIT 7C Data Representation: Images and Sound Principles of Computing, Carnegie Mellon University CORTINA/GUNA UNIT 7C Data Representation: Images and Sound Carnegie Mellon University CORTINA/GUNA 1 Announcements Pa6 is available now 2 Pixels An image is stored in a computer as a sequence of pixels, picture elements.

More information

Digital Imaging and Image Editing

Digital Imaging and Image Editing Digital Imaging and Image Editing A digital image is a representation of a twodimensional image as a finite set of digital values, called picture elements or pixels. The digital image contains a fixed

More information

Digital Imaging & Photoshop

Digital Imaging & Photoshop Digital Imaging & Photoshop Photoshop Created by Thomas Knoll in 1987, originally called Display Acquired by Adobe in 1988 Released as Photoshop 1.0 for Macintosh in 1990 Released the Creative Suite in

More information

CS 262 Lecture 01: Digital Images and Video. John Magee Some material copyright Jones and Bartlett

CS 262 Lecture 01: Digital Images and Video. John Magee Some material copyright Jones and Bartlett CS 262 Lecture 01: Digital Images and Video John Magee Some material copyright Jones and Bartlett 1 Overview/Questions What is digital information? What is color? How do pictures get encoded into binary

More information

CHAPTER 2 - DIGITAL DATA REPRESENTATION AND NUMBERING SYSTEMS

CHAPTER 2 - DIGITAL DATA REPRESENTATION AND NUMBERING SYSTEMS CHAPTER 2 - DIGITAL DATA REPRESENTATION AND NUMBERING SYSTEMS INTRODUCTION Digital computers use sequences of binary digits (bits) to represent numbers, letters, special symbols, music, pictures, and videos.

More information

RGB COLORS. Connecting with Computer Science cs.ubc.ca/~hoos/cpsc101

RGB COLORS. Connecting with Computer Science cs.ubc.ca/~hoos/cpsc101 RGB COLORS Clicker Question How many numbers are commonly used to specify the colour of a pixel? A. 1 B. 2 C. 3 D. 4 or more 2 Yellow = R + G? Combining red and green makes yellow Taught in elementary

More information

Glossary Unit 1: Hardware/Software & Storage Media

Glossary Unit 1: Hardware/Software & Storage Media 1. Bluetooth wireless technology to transfer data 2. Burner a CD or DVD writer; can be internal or external 3. Cloud computing use of web services to perform functions that were traditionally performed

More information

CS101 Lecture 18: Audio Encoding. What You ll Learn Today

CS101 Lecture 18: Audio Encoding. What You ll Learn Today CS101 Lecture 18: Audio Encoding Sampling Quantizing Aaron Stevens (azs@bu.edu) with special guest Wayne Snyder (snyder@bu.edu) 16 October 2012 What You ll Learn Today How do we hear sounds? How can audio

More information

Dr. Shahanawaj Ahamad. Dr. S.Ahamad, SWE-423, Unit-06

Dr. Shahanawaj Ahamad. Dr. S.Ahamad, SWE-423, Unit-06 Dr. Shahanawaj Ahamad 1 Outline: Basic concepts underlying Images Popular Image File formats Human perception of color Various Color Models in use and the idea behind them 2 Pixels -- picture elements

More information

Digital Files File Format Storage Color Temperature

Digital Files File Format Storage Color Temperature Digital Files Digital Files File Format Storage Color Temperature PIXELS Pixel = picture element - smallest component of a digital image - MEGAPIXEL 1 million pixels = MEGAPIXEL PIXELS more pixels per

More information

ITP 140 Mobile App Technologies. Colors Images Icons

ITP 140 Mobile App Technologies. Colors Images Icons ITP 140 Mobile App Technologies Colors Images Icons Establish a style Look and Feel Create or choose a color palette Pick colors that complement each other Pick colors that are representative of your app

More information

Image Optimization for Print and Web

Image Optimization for Print and Web There are two distinct types of computer graphics: vector images and raster images. Vector Images Vector images are graphics that are rendered through a series of mathematical equations. These graphics

More information

Raster (Bitmap) Graphic File Formats & Standards

Raster (Bitmap) Graphic File Formats & Standards Raster (Bitmap) Graphic File Formats & Standards Contents Raster (Bitmap) Images Digital Or Printed Images Resolution Colour Depth Alpha Channel Palettes Antialiasing Compression Colour Models RGB Colour

More information

Digital Image Processing Lec.(3) 4 th class

Digital Image Processing Lec.(3) 4 th class Digital Image Processing Lec.(3) 4 th class Image Types The image types we will consider are: 1. Binary Images Binary images are the simplest type of images and can take on two values, typically black

More information

Lecture 9: Digital Images

Lecture 9: Digital Images Lecture 9: Digital Images The Digital World of Multimedia Prof. Mari Ostendorf Announcements Guest lecture Friday Feb 1 (EEB 403, tentatively) A cultural history of JPEG Dr. Joan Mitchell Another lecture

More information

Unit 1.1: Information representation

Unit 1.1: Information representation Unit 1.1: Information representation 1.1.1 Different number system A number system is a writing system for expressing numbers, that is, a mathematical notation for representing numbers of a given set,

More information

SAQA. How to Submit an Online Entry. Art by Mary Kay Fosnacht

SAQA. How to Submit an Online Entry. Art by Mary Kay Fosnacht SAQA KS MO OK How to Submit an Online Entry Art by Mary Kay Fosnacht Registration Process Locate and read the Prospectus Open the Registration Form Preview 1. About the Artist 2. About the Art 3. Upload

More information

Jeffrey's Image Metadata Viewer

Jeffrey's Image Metadata Viewer 1 of 7 1/24/2017 3:41 AM Jeffrey's Image Metadata Viewer Jeffrey Friedl's Image Metadata Viewer (How to use) Some of my other stuff My Blog Lightroom plugins Pretty Photos Photo Tech URL: or... File: No

More information

Information representation

Information representation 2Unit Chapter 11 1 Information representation Revision objectives By the end of the chapter you should be able to: show understanding of the basis of different number systems; use the binary, denary and

More information

Sampling Rate = Resolution Quantization Level = Color Depth = Bit Depth = Number of Colors

Sampling Rate = Resolution Quantization Level = Color Depth = Bit Depth = Number of Colors ITEC2110 FALL 2011 TEST 2 REVIEW Chapters 2-3: Images I. Concepts Graphics A. Bitmaps and Vector Representations Logical vs. Physical Pixels - Images are modeled internally as an array of pixel values

More information

What is an image? Images and Displays. Representative display technologies. An image is:

What is an image? Images and Displays. Representative display technologies. An image is: What is an image? Images and Displays A photographic print A photographic negative? This projection screen Some numbers in RAM? CS465 Lecture 2 2005 Steve Marschner 1 2005 Steve Marschner 2 An image is:

More information

my bank account number and sort code the bank account number and sort code for the cheque paid in the amount of the cheque.

my bank account number and sort code the bank account number and sort code for the cheque paid in the amount of the cheque. Data and information What do we mean by data? The term "data" means raw facts and figures - usually a series of values produced as a result of an event or transaction. For example, if I buy an item in

More information

15110 Principles of Computing, Carnegie Mellon University

15110 Principles of Computing, Carnegie Mellon University 1 Overview Human sensory systems and digital representations Digitizing images Digitizing sounds Video 2 HUMAN SENSORY SYSTEMS 3 Human limitations Range only certain pitches and loudnesses can be heard

More information

CD: (compact disc) A 4 3/4" disc used to store audio or visual images in digital form. This format is usually associated with audio information.

CD: (compact disc) A 4 3/4 disc used to store audio or visual images in digital form. This format is usually associated with audio information. Computer Art Vocabulary Bitmap: An image made up of individual pixels or tiles Blur: Softening an image, making it appear out of focus Brightness: The overall tonal value, light, or darkness of an image.

More information

TOPIC 4 INTRODUCTION TO MEDIA COMPUTATION: DIGITAL PICTURES

TOPIC 4 INTRODUCTION TO MEDIA COMPUTATION: DIGITAL PICTURES TOPIC 4 INTRODUCTION TO MEDIA COMPUTATION: DIGITAL PICTURES Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach by M. Guzdial and B. Ericson, and instructor materials

More information

COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing. Digital Images Vector Graphics

COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing. Digital Images Vector Graphics COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing Digital Images Vector Graphics Students should be able to: Learning Outcomes Describe the differences between bitmap graphics

More information

4/9/2015. Simple Graphics and Image Processing. Simple Graphics. Overview of Turtle Graphics (continued) Overview of Turtle Graphics

4/9/2015. Simple Graphics and Image Processing. Simple Graphics. Overview of Turtle Graphics (continued) Overview of Turtle Graphics Simple Graphics and Image Processing The Plan For Today Website Updates Intro to Python Quiz Corrections Missing Assignments Graphics and Images Simple Graphics Turtle Graphics Image Processing Assignment

More information

Corporate Logo Guidelines

Corporate Logo Guidelines Corporate Logo Guidelines 2 Aldec Globe Primary Logo to be used in 4-color applications greater than 200 pixels or 3 wide. Aldec Crescent Secondary logo to be used horizontal and/or 1 color applications

More information

Term 1 Study Guide for Digital Photography

Term 1 Study Guide for Digital Photography Name: Period Term 1 Study Guide for Digital Photography History: 1. The first type of camera was a camera obscura. 2. took the world s first permanent camera image. 3. invented film and the prototype of

More information

Lecture - 3. by Shahid Farid

Lecture - 3. by Shahid Farid Lecture - 3 by Shahid Farid Image Digitization Raster versus vector images Progressive versus interlaced display Popular image file formats Why so many formats? Shahid Farid, PUCIT 2 To create a digital

More information

15110 Principles of Computing, Carnegie Mellon University

15110 Principles of Computing, Carnegie Mellon University 1 Last Time Data Compression Information and redundancy Huffman Codes ALOHA Fixed Width: 0001 0110 1001 0011 0001 20 bits Huffman Code: 10 0000 010 0001 10 15 bits 2 Overview Human sensory systems and

More information

SOME PHYSICAL LAYER ISSUES. Lecture Notes 2A

SOME PHYSICAL LAYER ISSUES. Lecture Notes 2A SOME PHYSICAL LAYER ISSUES Lecture Notes 2A Delays in networks Propagation time or propagation delay, t prop Time required for a signal or waveform to propagate (or move) from one point to another point.

More information

2. Advanced Image editing

2. Advanced Image editing Aim: In this lesson, you will learn: 2. Advanced Image editing Tejas: We have some pictures with us. We want to insert these pictures in a story that we are writing. Jyoti: Some of the pictures need modification

More information

Lecture 4: Digital representation and data analysis

Lecture 4: Digital representation and data analysis Instrumentation and data acquisition Spring 010 Lecture 4: Digital representation and data analysis Zheng-Hua Tan Multimedia Information and Signal Processing Department of Electronic Systems Aalborg University,

More information

Bit Depth. Introduction

Bit Depth. Introduction Colourgen Limited Tel: +44 (0)1628 588700 The AmBer Centre Sales: +44 (0)1628 588733 Oldfield Road, Maidenhead Support: +44 (0)1628 588755 Berkshire, SL6 1TH Accounts: +44 (0)1628 588766 United Kingdom

More information

A Guide to Using the Generic Flyer Template

A Guide to Using the Generic Flyer Template A Guide to Using the Generic Flyer Template The purpose of this document is to demonstrate the creative uses of the Generic Flyer Template as well as providing a style guide for the successful application

More information

Learning Outcomes. Black and White pictures. Bitmap Graphics. COMPSCI 111/111G Digital Images and Vector Graphics

Learning Outcomes. Black and White pictures. Bitmap Graphics. COMPSCI 111/111G Digital Images and Vector Graphics Learning Outcomes COMPSCI 111/111G Digital Images and Vector Graphics Lecture 13 SS 2018 Students should be able to: Describe the differences between bitmap graphics and vector graphics Calculate the size

More information

Digital Images. Digital Images. Digital Images fall into two main categories

Digital Images. Digital Images. Digital Images fall into two main categories Digital Images Digital Images Scanned or digitally captured image Image created on computer using graphics software Digital Images fall into two main categories Vector Graphics Raster (Bitmap) Graphics

More information

Creating Digital Artwork

Creating Digital Artwork 5Steps to Creating Digital Artwork (For more detailed instructions, please click here) Introduction to Digital Artwork Authors often choose to include digital artwork as part of a submission to a medical

More information

Output Model. Coordinate Systems. A picture is worth a thousand words (and let s not forget about sound) Device coordinates Physical coordinates

Output Model. Coordinate Systems. A picture is worth a thousand words (and let s not forget about sound) Device coordinates Physical coordinates Output Model A picture is worth a thousand words (and let s not forget about sound) Coordinate Systems Device coordinates Physical coordinates 1 Device Coordinates Most natural units for the output device

More information

Revision Guide for Chapter 3

Revision Guide for Chapter 3 Revision Guide for Chapter 3 Contents Student s Checklist Revision Notes Superposing signals... 4 Spectrum of a signal... 6 Analogue signals... 8 Digital sampling... 9 Analogue to digital conversion...

More information

A CAMERA IS A LIGHT TIGHT BOX

A CAMERA IS A LIGHT TIGHT BOX HOW CAMERAS WORK A CAMERA IS A LIGHT TIGHT BOX Pinhole Principle All contemporary cameras have the same basic features A light-tight box to hold the camera parts and recording material A viewing system

More information

State Library of Queensland Digitisation Toolkit: Scanning and capture guide for image-based material

State Library of Queensland Digitisation Toolkit: Scanning and capture guide for image-based material State Library of Queensland Digitisation Toolkit: Scanning and capture guide for image-based material Introduction While the term digitisation can encompass a broad range, for the purposes of this guide,

More information

Graphics packages can be bit-mapped or vector. Both types of packages store graphics in a different way.

Graphics packages can be bit-mapped or vector. Both types of packages store graphics in a different way. Graphics packages can be bit-mapped or vector. Both types of packages store graphics in a different way. Bit mapped packages (paint packages) work by changing the colour of the pixels that make up the

More information

OFFSET AND NOISE COMPENSATION

OFFSET AND NOISE COMPENSATION OFFSET AND NOISE COMPENSATION AO 10V 8.1 Offset and fixed pattern noise reduction Offset variation - shading AO 10V 8.2 Row Noise AO 10V 8.3 Offset compensation Global offset calibration Dark level is

More information

Images and Displays. Lecture Steve Marschner 1

Images and Displays. Lecture Steve Marschner 1 Images and Displays Lecture 2 2008 Steve Marschner 1 Introduction Computer graphics: The study of creating, manipulating, and using visual images in the computer. What is an image? A photographic print?

More information

Digital Imaging with the Nikon D1X and D100 cameras. A tutorial with Simon Stafford

Digital Imaging with the Nikon D1X and D100 cameras. A tutorial with Simon Stafford Digital Imaging with the Nikon D1X and D100 cameras A tutorial with Simon Stafford Contents Fundamental issues of Digital Imaging Camera controls Practical Issues Questions & Answers (hopefully!) Digital

More information

Graphics for Web. Desain Web Sistem Informasi PTIIK UB

Graphics for Web. Desain Web Sistem Informasi PTIIK UB Graphics for Web Desain Web Sistem Informasi PTIIK UB Pixels The computer stores and displays pixels, or picture elements. A pixel is the smallest addressable part of the computer screen. A pixel is stored

More information

Bitmap Vs Vector Graphics Web-safe Colours Image compression Web graphics formats Anti-aliasing Dithering & Banding Image issues for the Web

Bitmap Vs Vector Graphics Web-safe Colours Image compression Web graphics formats Anti-aliasing Dithering & Banding Image issues for the Web Bitmap Vs Vector Graphics Web-safe Colours Image compression Web graphics formats Anti-aliasing Dithering & Banding Image issues for the Web Bitmap Vector (*Refer to Textbook Page 175 file formats) Bitmap

More information

Computers and Imaging

Computers and Imaging Computers and Imaging Telecommunications 1 P. Mathys Two Different Methods Vector or object-oriented graphics. Images are generated by mathematical descriptions of line (vector) segments. Bitmap or raster

More information

Lecture 2: An Introduction to Colour Models

Lecture 2: An Introduction to Colour Models Lecture 2: An Introduction to Colour Models An important issue in visual media, and multimedia, is colour. Just as there are a multitude of file formats for computer graphics, there are a range of Colour

More information

The worlds we live in. The worlds we live in

The worlds we live in. The worlds we live in The contents of this Supporting Material document have been prepared from the Eight units of study texts for the course M150: Date, Computing and Information, produced by The Open University, UK. Copyright

More information

Two Basic Digital Camera Types ( ) ( )

Two Basic Digital Camera Types ( ) ( ) Camera Basics Two Basic Digital Camera Types Digital SLR (Single Lens Reflex) Digital non-slr ( ) ( ) Camera Controls (where they are) Knobs & Switches Control Buttons Menu (several) Camera Controls (where

More information

Introduction to Photography

Introduction to Photography Topic 11 - Bits & Bytes Learning Outcomes You will have a much better understanding of the basic units of digital photography. Bits & Bytes A Bit is the basic unit on a computer, which can be 0/1, off/

More information

Photography PreTest Boyer Valley Mallory

Photography PreTest Boyer Valley Mallory Photography PreTest Boyer Valley Mallory Matching- Elements of Design 1) three-dimensional shapes, expressing length, width, and depth. Balls, cylinders, boxes and triangles are forms. 2) a mark with greater

More information

CS101 Lecture 19: Digital Images. John Magee 18 July 2013 Some material copyright Jones and Bartlett. Overview/Questions

CS101 Lecture 19: Digital Images. John Magee 18 July 2013 Some material copyright Jones and Bartlett. Overview/Questions CS101 Lecture 19: Digital Images John Magee 18 July 2013 Some material copyright Jones and Bartlett 1 Overview/Questions What is digital information? What is color? How do pictures get encoded into binary

More information

Digital Photography: Just the Basics

Digital Photography: Just the Basics All Things Photograph y Stephen Patton Agricultural Communications Specialist/Photographer University of Kentucky David Keto Media Producer/Director Ana Henke University of Wyoming Publications Supervisor

More information

PHOTOGRAPHY AND DIGITAL IMAGING

PHOTOGRAPHY AND DIGITAL IMAGING PHOTOGRAPHY AND DIGITAL IMAGING In this session, the presenter Tim Cordell began the session by explaining that there are two basic components in digital images, the number of pixels and print size. Mr.

More information

Introduction to Digital Photography

Introduction to Digital Photography Introduction to Digital Photography A CAMERA IS A LIGHT TIGHT BOX All contemporary cameras have the same basic features A light-tight box to hold the camera parts and recording material A viewing system

More information

Module 4 Build a Game

Module 4 Build a Game Module 4 Build a Game Game On 2 Game Instructions 3 Exercises 12 Look at Me 13 Exercises 15 I Can t Hear You! 17 Exercise 20 End of Module Quiz 20 2013 Lero Game On Design a Game When you start a programming

More information

Chapter 3 Graphics and Image Data Representations

Chapter 3 Graphics and Image Data Representations Chapter 3 Graphics and Image Data Representations 3.1 Graphics/Image Data Types 3.2 Popular File Formats 3.3 Further Exploration 1 Li & Drew c Prentice Hall 2003 3.1 Graphics/Image Data Types The number

More information

CGT 511. Image. Image. Digital Image. 2D intensity light function z=f(x,y) defined over a square 0 x,y 1. the value of z can be:

CGT 511. Image. Image. Digital Image. 2D intensity light function z=f(x,y) defined over a square 0 x,y 1. the value of z can be: Image CGT 511 Computer Images Bedřich Beneš, Ph.D. Purdue University Department of Computer Graphics Technology Is continuous 2D image function 2D intensity light function z=f(x,y) defined over a square

More information

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University Images and Graphics Images and Graphics Graphics and images are non-textual information that can be displayed and printed. Graphics (vector graphics) are an assemblage of lines, curves or circles with

More information

Chapter 5: Signal conversion

Chapter 5: Signal conversion Chapter 5: Signal conversion Learning Objectives: At the end of this topic you will be able to: explain the need for signal conversion between analogue and digital form in communications and microprocessors

More information

Forced Perspective Photography Structured Inquiry

Forced Perspective Photography Structured Inquiry Forced Perspective Photography Structured Inquiry Question: Can we define the relationships between objects and the camera in Forced Perspective Photography mathematically? Part 1: Locate photos 1 3 and

More information

Plotting scientific data in MS Excel 2003/2004

Plotting scientific data in MS Excel 2003/2004 Plotting scientific data in MS Excel 2003/2004 The screen grab above shows MS Excel with all the toolbars switched on - remember that some options only become visible when others are activated. We only

More information

INTRODUCTION TO COMPUTER GRAPHICS

INTRODUCTION TO COMPUTER GRAPHICS INTRODUCTION TO COMPUTER GRAPHICS ITC 31012: GRAPHICAL DESIGN APPLICATIONS AJM HASMY hasmie@gmail.com WHAT CAN PS DO? - PHOTOSHOPPING CREATING IMAGE Custom icons, buttons, lines, balls or text art web

More information

The Need for Data Compression. Data Compression (for Images) -Compressing Graphical Data. Lossy vs Lossless compression

The Need for Data Compression. Data Compression (for Images) -Compressing Graphical Data. Lossy vs Lossless compression The Need for Data Compression Data Compression (for Images) -Compressing Graphical Data Graphical images in bitmap format take a lot of memory e.g. 1024 x 768 pixels x 24 bits-per-pixel = 2.4Mbyte =18,874,368

More information

School of Digital Media Arts Photography GM300BB

School of Digital Media Arts Photography GM300BB Washtenaw Community College Don Werthmann School of Digital Media Arts Photography GM300BB 973-3586 http://courses.wccnet.edu/~donw donw@wccnet.edu What is a Digital Image? Any digital image is composed

More information

PASS Sample Size Software

PASS Sample Size Software Chapter 945 Introduction This section describes the options that are available for the appearance of a histogram. A set of all these options can be stored as a template file which can be retrieved later.

More information

Digital Portable Overhead Document Camera LV-1010

Digital Portable Overhead Document Camera LV-1010 Digital Portable Overhead Document Camera LV-1010 Instruction Manual 1 Content I Product Introduction 1.1 Product appearance..3 1.2 Main functions and features of the product.3 1.3 Production specifications.4

More information

Lecture #2: Digital Images

Lecture #2: Digital Images Lecture #2: Digital Images CS106E Spring 2018, Young In this lecture we will see how computers display images. We ll find out how computers generate color and discover that color on computers works differently

More information

MOTION GRAPHICS BITE 3623

MOTION GRAPHICS BITE 3623 MOTION GRAPHICS BITE 3623 DR. SITI NURUL MAHFUZAH MOHAMAD FTMK, UTEM Lecture 1: Introduction to Graphics Learn critical graphics concepts. 1 Bitmap (Raster) vs. Vector Graphics 2 Software Bitmap Images

More information

BEST PRACTICES FOR SCANNING DOCUMENTS. By Frank Harrell

BEST PRACTICES FOR SCANNING DOCUMENTS. By Frank Harrell By Frank Harrell Recommended Scanning Settings. Scan at a minimum of 300 DPI, or 600 DPI if expecting to OCR the document Scan in full color Save pages as JPG files with 75% compression and store them

More information

Technology Learning Activity: Multimedia CIMC. Student Edition TE8135

Technology Learning Activity: Multimedia CIMC. Student Edition TE8135 IMC Technology Learning Activity: Multimedia Student Edition www.okcimc.com 800-654-4502 CIMC TE8135 Technology Learning Activity This TLA covers information on digital imaging sources and uses, photography

More information

CSCD 433 Network Programming Fall Lecture 5 Physical Layer Continued

CSCD 433 Network Programming Fall Lecture 5 Physical Layer Continued CSCD 433 Network Programming Fall 2016 Lecture 5 Physical Layer Continued 1 Topics Definitions Analog Transmission of Digital Data Digital Transmission of Analog Data Multiplexing 2 Different Types of

More information