Compression, Lossy, Lossless

Slides:



Advertisements
Similar presentations
Compression & Huffman Codes
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.
A Data Compression Algorithm: Huffman Compression
Information loss in compression Skills: none IT concepts: lossy and lossless compression This work is licensed under a Creative Commons Attribution-Noncommercial-
T.Sharon-A.Frank 1 Multimedia Size of Data Frame.
Data dan Teknologi Multimedia Sesi 08 Nofriyadi Nurdam.
Session 7 More on the internet HTML and CSS Teaching Computing to GCSE Level with Python.
Lecture 10 Data Compression.
Efficient encoding methods  Coding theory refers to study of code properties and their suitability to specific applications.  Efficient codes are used,
Compression is the reduction in size of data in order to save space or transmission time. And its used just about everywhere. All the images you get on.
Text Compression Spring 2007 CSE, POSTECH. 2 2 Data Compression Deals with reducing the size of data – Reduce storage space and hence storage cost Compression.
Multimedia and The Web.
Common file formats  Lesson Objective: Understanding common file formats and their differences.  Learning Outcome:  Describe the type of files which.
Multimedia Specification Design and Production 2012 / Semester 1 / L3 Lecturer: Dr. Nikos Gazepidis
Introduction to Interactive Media 03: The Nature of Digital Media.
Image Compression (Chapter 8) CSC 446 Lecturer: Nada ALZaben.
In this lecture, you will learn: 1 Basic ideas of video compression General types of compression methods.
Msccomputerscience.com. Compression is a key aspect of multimedia It is a technique used in almost all multimedia application Compression is done on source.
AUDIO AND VIDEO COMPRESSION AND IT’S IMPORTANCE ON THE INTERNET Brian Dillinger May 3, 2010.
Data Compression Reduce the size of data.  Reduces storage space and hence storage cost. Compression ratio = original data size/compressed data size.
The Digital Revolution Changing information. What is Digital?  Discrete values used for  Input  Processing  Transmission  Storage  Display  Derived.
Comp 335 File Structures Data Compression. Why Study Data Compression? Conserves storage space Files can be transmitted faster because there are less.
Data Compression 황승원 Fall 2010 CSE, POSTECH 2 2 포항공과대학교 황승원 교 수는 데이터구조를 수강하 는 포항공과대학교 재학생 들에게 데이터구조를 잘해 야 전산학을 잘할수 있으니 더욱 열심히 해야한다고 말 했다. 포항공과대학교 A 데이터구조를.
CS 1501: Algorithm Implementation LZW Data Compression.
Sound (analogue signal). time Sound (analogue signal) time.
JPEG Lafi Al-Anazi EE What is JPEG? - JPEG (pronounced "jay-peg") is a standardized image compression mechanism. JPEG stands for Joint Photographic.
Introduction to Interactive Media Interactive Media Raw Materials: Digital Data.
Audio Formats. Digital sound files must be organized and structured so that your media player can read them. It's just like being able to read and understand.
Information Systems Design and Development Media Types Computing Science.
CS 1501: Algorithm Implementation
Computer Sciences Department1. 2 Data Compression and techniques.
Introduction to MPEG  Moving Pictures Experts Group,  Geneva based working group under the ISO/IEC standards.  In charge of developing standards for.
FILE COMPRESSION Lossy vs Lossless. Why compress a file? To save storage space. To speed up data transmission.
Submitted To-: Submitted By-: Mrs.Sushma Rani (HOD) Aashish Kr. Goyal (IT-7th) Deepak Soni (IT-8 th )
Data Compression: Huffman Coding in Weiss (p.389)
Component 1.9 Security and Data Management
File Compression 3.3.
Data Representation.
Lesson Objectives Aims You should be able to:
Career Preparedness Mrs. Simmons
Image Formats.
Lesson Objectives Aims You should know about: 1.3.1:
Lossy Compression and File Formats
File Compression 3.3.
Unit 2- Lesson 1 & 2- Bytes and File Sizes / Text Compression
Unit 2- Lesson 1 & 2- Bytes and File Sizes / Text Compression
Systems Software Keywords Utilities and Backups
Data Compression.
Lossy vs Lossless compression
WHAT DOES AN AUDIO ENGINEER DO?
Digital Image Formats: An Explanation
Fun gym Cambridge Nationals R001.
Virtual Memory and Flash Memory.
TASK: Define the memory keywords.
Why Compress? To reduce the volume of data to be transmitted (text, fax, images) To reduce the bandwidth required for transmission and to reduce storage.
Representing Images 2.6 – Data Representation.
Web Design and Development
Data Compression Reduce the size of data.
Storage Keywords Secondary Storage
L.
فشرده سازي داده ها Reduce the size of data.
COMS 161 Introduction to Computing
Image Coding and Compression
Number Systems Instructions, Compression & Truth Tables.
Networks – Data Transmission
Unit 2- Lesson 1 & 2- Bytes and File Sizes / Text Compression
Utility Software compression; defragmentation; backing up; encryption Revision YouTube clip:
BTEC level 3 Learning Aim C.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.9 Data Compression.
WJEC GCSE Computer Science
Presentation transcript:

Compression, Lossy, Lossless Keywords Compression, Lossy, Lossless Data Representation Compression

Compression Why does this happen? And how can we prevent it? Objectives BEGINNER: Understand the need for compression. ADVANCED: Know the difference between lossy and lossless. EXPERT: Analyse when lossy and lossless would be used. Starter activity Why does this happen? And how can we prevent it?

What is Compression? Objectives BEGINNER: Understand the need for compression. ADVANCED: Know the difference between lossy and lossless. EXPERT: Analyse when lossy and lossless would be used. Data compression is the process of encoding data so that is needs fewer bits/bytes to represent it. Compression is useful because it helps reduce the consumption of expensive resources, such as hard disk space or transmission bandwidth over the internet. On the downside, compressed data must be decompressed to be used, and this extra processing may be detrimental to some applications. Starter activity

Lossless and Lossy Objectives BEGINNER: Understand the need for compression. ADVANCED: Know the difference between lossy and lossless. EXPERT: Analyse when lossy and lossless would be used. Lossless compression can compress data files without losing any of the information. Lossless compression schemes are reversible so that the original data can be reconstructed. However not all data files can be compressed using Lossless compression. Lossy compression compresses data files but does lose some of the information. It is acceptable if some loss of accuracy is acceptable e.g. video, audio. ADVANTAGE: Can produce smaller data files. DISADVANTAGE: It’s not good if 100% accuracy required e.g. text files Starter activity