Vocabulary byte - The technical term for 8 bits of data.

Slides:



Advertisements
Similar presentations
The Binary Numbering Systems
Advertisements

Skills: none Concepts: the amount of information in an image This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.
Image Representation CS105. Data Representation Text representation – ASCII character set – Unicode – Data compression Images!
 Wisegeek.com defines Data Compression as:  “Data compression is a general term for a group of technologies that encode large files in order to shrink.
Manipulating Images Image A visual representation of something that is seen in real life. It can be two-dimensional or three-dimensional A visual representation.
Representing Images. Goals for Image Representation digitization & resolution digitization & resolution representing color representing color color depth.
Faculty of Sciences and Social Sciences HOPE Website Development Graphics Stewart Blakeway FML 213
COMP Bitmapped and Vector Graphics Pages Using Qwizdom.
Lawrence Snyder University of Washington, Seattle © Lawrence Snyder 2004 Adding some light to computing ….
Image Storage Bitmapped Graphics – in which an image is represented as a collection of dots Vector Graphics – in which an image is represented as a set.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Data Representation CS280 – 09/13/05. Binary (from a Hacker’s dictionary) A base-2 numbering system with only two digits, 0 and 1, which is perfectly.
Multimedia Elements II Graphics, Digital Video. UIT - Multimedia Production2 Multimedia Elements Multimedia elements include: Text Graphics Animation.
Communicating Quantitative Information Is a picture worth 1000 words? Digital images. Number bases Standards, Compression Will [your] images last? Homework:
Image formats. Basic terminologies… Pixels: Pixels are the building blocks of every digital image. a pixel is a single point in a graphic image. Resolutions:
CSCI-100 Introduction to Computing Hardware Part II.
Digital Images are represented by manipulating this…
 By Bob “The Bird” Fiske & Anita “The Snail” Cost.
POWERPOINT PLUS 11/17/07 Class Notes. WHAT IS A PIXEL A pixel is a number that represents the intensity of light at a square spot in the picture. Pixels.
Digital Graphics for Computer Games Pixels Types of Digital Graphics (Raster and Vector) Compression.
Image File Formats By Dr. Rajeev Srivastava 1. Image File Formats Header and Image data. A typical image file format contains two fields namely Dr. Rajeev.
Vocabulary Worksheet Answers
GIF vs. JPEG GIF and JPEG (JPG) image formats are different. You should know which to use when. Here are some examples.
In the Know … Technological Vocabulary. Beginning Terms 1. Aperture – the mechanical opening in the lens that lets light in. 2. ASA / ISO – rating given.
Image Editing Vocabulary Words Pioneer Library System Norman Public Library Nancy Rimassa, Trainer Thanks to Wikipedia ( help.
Graphics and Image Data Representations 1. Q1 How images are represented in a computer system? 2.
Lesson Objectives Aims You should be able to:
BITMAPPED IMAGES & VECTOR DRAWN GRAPHICS
Component 1.9 Security and Data Management
AP CSP: Pixelation – B&W/Color Images
AP CSP: Lossy Compression and File Formats
DIGITAL MEDIA FOUNDATIONS
File Compression 3.3.
Vocabulary byte - The technical term for 8 bits of data.
Vocabulary byte - The technical term for 8 bits of data.
Vocabulary byte - The technical term for 8 bits of data.
UNIT 2 – LESSON 3 Encoding B&W Images.
Lesson 2-3 AP Computer Science Principles
Vocabulary byte - The technical term for 8 bits of data.
Vocabulary byte - The technical term for 8 bits of data.
Binary Representation in Audio and Images
Computer Science Higher
Chapter 2: How are data represented?
Vocabulary byte - The technical term for 8 bits of data.
How to Convert Pictures into Numbers
UNIT 2 – LESSON 4 Encoding Color Images.
Lossy Compression and File Formats
BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston.
3 - STORAGE: DATA CAPACITY CALCULATIONS
U2L4 Encoding Color Images
Vocabulary byte - The technical term for 8 bits of data.
Vocabulary byte - The technical term for 8 bits of data.
CS Principles U2L3 Encoding B&W Images.
Vocabulary byte - The technical term for 8 bits of data.
AP CSP: Lossy Compression and File Formats
Vocabulary byte - The technical term for 8 bits of data.
Vocabulary byte - The technical term for 8 bits of data.
AP CSP: Bytes, File Sizes, and Text Compression
Vocabulary byte - The technical term for 8 bits of data.
Chapter 3:- Graphics Eyad Alshareef Eyad Alshareef.
Data Representation.
Representing Images 2.6 – Data Representation.
Web Design and Development
Summer Term Year 10 Slides
Lesson 3 & 4: Encoding Images
Do Now! Convert the following sequence of bits into an image using the protocol we discussed (first 8 bits are lengthxwidth, Then fill in the rows pixel.
Unit 2- Lesson 1 & 2- Bytes and File Sizes / Text Compression
Binary CSCE 101.
Lesson 3 & 4: Encoding Images
Chapter 8 – Compression Aims: Outline the objectives of compression.
Presentation transcript:

Vocabulary byte - The technical term for 8 bits of data. The standard fundamental unit (or “chunk size”) underlying most computing systems today measured in “megabytes”, “kilobytes”, “gigabytes”, etc. Image - A type of data used for graphics or pictures. metadata - is data that describes other data. For example, a digital image my include metadata that describe the size of the image, number of colors, or resolution. pixel - short for "picture element" it is the fundamental unit of a digital image, typically a tiny square or dot which contains a single point of color of a larger image. RGB - the RGB color model uses varying intensities of (R)ed, (G)reen, and (B)lue light are added together in to reproduce a broad array of colors. Lossless Compression - a data compression algorithm that allows the original data to be perfectly reconstructed from the compressed data. Lossy Compression - (or irreversible compression) a data compression method that uses inexact approximations, discarding some data to represent the content. Most commonly seen in image formats like .jpg.

Do Now! Convert the following sequence of bits into an image using the protocol we discussed (first 8 bits are lengthxwidth, Then fill in the rows pixel by pixel, 1 = white, 0 = black) 0111010100010000111011011100001111100001000

CS Principles U2L5 Lossy Compression

U2L5 Lossy Compression Objectives SWBAT: Explain the difference between lossy and lossless compression. Identify common computer file types and whether they are compressed or not, and whether compression is lossy or lossless. Read a technical article on the web and sift its contents for targeted information.

U2L5 Vocab Lossless Compression - a data compression algorithm that allows the original data to be perfectly reconstructed from the compressed data. Lossy Compression - (or irreversible compression) a data compression method that uses inexact approximations, discarding some data to represent the content. Most commonly seen in image formats like .jpg.

U2L4 Content: Lossy vs Lossless Compression Lossy compression is mostly used in visual or audio formats where a loss in precision is undetectable to human eyes and ears. The BMP image format is basically the image encoding format used in code studio The GIF image format and ZIP compression scheme are versions of the text compression scheme we used as well. In the case of GIF, it uses a dictionary of up to 255 different colors and each pixel is stored as small number that refers to the dictionary

Lossy Text Compression App With a partner, go to the Lossy Text Compression App - App Lab. Answer the following questions: U2L4 Prompt: What is happening in the app? Should this “count” as text compression? Why or why not? What do you think “lossy” refers to?

Lossy vs LossLess When we did text compression a few lessons ago, that kind of compression is known as “lossless” compression because in doing the compression, and in reconstructing the original text, nothing was lost; every character that was part of the original text could be recovered. “Lossy” compression – yes, that’s the official word – does something else. Lossy compression schemes are ones in which “useless” or less-than-totally-necessary information is thrown out in order to reduce the size of the data. The lossy text compression app did that, and for the most part, you could probably make out what the text was supposed to say. But it’s not perfect. If you saw the word “fd” it could be “food”, “feed”, “feud”, or “fad”. By reading it in context, you might know what it was supposed to be, but there’s no real way to know what the original word was. The original word is lost.

Rapid Research Research your assigned topic with your partner. -Google your topic (topic + compression) -Find an appropriate page and fill in your row of the chart 10 MINUTES!

Jigsaw Form 3 groups, each with at least 1 member from each group. Share out your information with your group members. Information should be given orally; you should not be COPYING information from other people’s worksheets. 10 MINUTES

What did you learn? BMP- JPG- WAV- PNG- MP3- GIF- ZIP-

Lossy vs Lossless Go to socrative.com and fill out exit ticket! ROOM NAME FOCS