CSC Introduction to Computers and Their Applications

Similar documents
MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013

Comparison of different image compression formats. ECE 533 Project Report Paula Aguilera

MMGD0203 Multimedia Design MMGD0203 MULTIMEDIA DESIGN. Chapter 3 Graphics and Animations

Digital Imaging and Image Editing

Adobe Certified Expert Program

Digital Image Fundamentals. Selim Aksoy Department of Computer Engineering Bilkent University

Image Resolution. Color Spaces: RGB and CMYK. File Types and when to use. Image Resolution. Finding Happiness at 300 dots-per-inch

Data Storage 3.1. Foundations of Computer Science Cengage Learning

VIRGINIA WESTERN COMMUNITY COLLEGE

Scanning in Windows XP: Basics Learning guide

Scanning and OCR Basics

Data Storage. Chapter 3. Objectives. 3-1 Data Types. Data Inside the Computer. After studying this chapter, students should be able to:

SCANNING, RESOLUTION, AND FILE FORMATS

A Basic Summary of Image Formats

Klaus Goelker. GIMP 2.8 for Photographers. Image Editing with Open Source Software. rocky

Computers Are Your Future Eleventh Edition Chapter 5: Application Software: Tools for Productivity

COMPUTERS ARE YOUR FUTURE CHAPTER 5 APPLICATION SOFTWARE: TOOLS FOR PRODUCTIVITY

Digitisation Disposal Policy Toolkit

Digital Video-Editing Programs

designed and prepared for california safe routes to school by circle design circledesign.net Graphic Standards

REVISED JUNE PLEASE DISCARD ANY PREVIOUS VERSIONS OF THIS GUIDE. Graphic Style Guide

Adobe Illustrator CS5

Each figure of a manuscript should be submitted as a single file.

TEXT FILES. Format Description / Properties Usage and Archival Recommendations

Pictures / images on computers

B2.53-R3: COMPUTER GRAPHICS. NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions.

Choosing a digital camera for your microscope John C. Russ, Materials Science and Engineering Dept., North Carolina State Univ.

Links. Blog. Great Images for Papers and Presentations 5/24/2011. Overview. Find help for entire process Quick link Theses and Dissertations

Digital Image Requirements for New Online US Visa Application

Fundamentals of Image Analysis and Visualization (the short version) Rebecca Williams, Director, BRC-Imaging

Solomon Systech Image Processor for Car Entertainment Application

What Resolution Should Your Images Be?

Neshannock Township School District Curriculum Overview Computer Graphics Plan Course of Study

A technical overview of the Fuel3D system.

2D Art and Animation. [ COGS Meeting 02/18/2015 ] [ Andrew ]

Using the Olympus C4000 REV. 04/2006

To be productive in today s graphic s industry, a designer, artist, or. photographer needs to have some basic knowledge of various file

Adobe Illustrator CS5 Part 1: Introduction to Illustrator

Adjusting Digitial Camera Resolution

Best Practices: PDF Export

How to resize, rotate, and crop images

GRC 119 Assignment 6 Create a Flash Animation Banner Ad

Digital Photography. Digital Cameras and Digital Photography. Your camera. Topics Your Camera Exposure Shutter speed and f-stop Image Size Editing

Optimizing graphic files

Develop Computer Animation

ART 170: Web Design 1

Periodontology. Digital Art Guidelines JOURNAL OF. Monochrome Combination Halftones (grayscale or color images with text and/or line art)

ACADEMIC TECHNOLOGY SUPPORT

Logo Standards Guideline

Camera Resolution. Image Size

ACE: Illustrator CC Exam Guide

Image Formatting. Thanks to the Jerome Foundation.

Preparing TIFF-images for publication

Print Services User Guide

Digital Preservation. Guidance Note: Graphics File Formats

How to Prepare Images for Electronic Presentation * by Thomas Field (rev )

Motion tween is nothing but tweening a Symbol's movement from one position to another.

SkillsUSA 2014 Contest Projects 3-D Visualization and Animation

Preparing graphics for IOP journals

OCR LEVEL 2 CAMBRIDGE TECHNICAL

Lecture Notes, CEng 477

ANALYSIS OF THE COMPRESSION RATIO AND QUALITY IN MEDICAL IMAGES

PowerPoint Interface Menu Bars Work Area Slide and Outline View TASK PANE Drawing Tools

Color management workflow in Adobe After Effects CS4

Preparing Illustrations for Publication

Certificate Courses in Animation

Image Optimization GUIDE

m ac romed ia Fl a s h Curriculum Guide

In addition, a decision should be made about the date range of the documents to be scanned. There are a number of options:

COMP175: Computer Graphics. Lecture 1 Introduction and Display Technologies

Graphic Design. Background: The part of an artwork that appears to be farthest from the viewer, or in the distance of the scene.

Programs Schmidt Supports 2 Preferred Format. Setting up your document 3 Page Size Bleeds Live Area

Unit R082 Creating digital graphics. File Formats and the Properties of Digital Images and Graphics

IMAGING SOFTWARE. Image-Pro Insight Image Analysis Made Easy. Capture, Process, Measure, and Share

Preparing Images for PowerPoint, the Web, and Publication

LAMBDA CONSULTING GROUP Legendary Academy of Management & Business Development Advisories

Essential Graphics/Design Concepts for Non-Designers

New Paltz Central School District Technology Computer Graphics 1 and 2. Time Essential Questions/Content Standards/Skills Assessments

Guidance on Using Scanning Software: Part 2. VueScan

A Proposal for OpenEXR Color Management

HP Smart Document Scan Software compression schemes and file sizes

Silverlight for Windows Embedded Graphics and Rendering Pipeline 1

GRC 119 Assignment 7 Create a Flash Animation Banner Ad

A Short Introduction to Computer Graphics

Animation. Basic Concepts

How to use Adobe Media Encoder CS6

WEB DEVELOPMENT IMMERSIVE HTML & WEB FUNDAMENTALS

Transcription:

CSC 170 - Introduction to Computers and Their Applications Lecture 3 Basics of Digital Graphics Bitmap Basics As digital devices gained the ability to display images, two types of computer graphics evolved: bitmap & vector. A bitmap graphic is composed of a grid of tiny rectangular cells. Each cell is a picture element, commonly called a pixel. Each pixel is assigned a color, which is stored as a binary number.

Bitmap Basics Bitmap Basics You can create a bitmap graphic from scratch using the tools provided by graphics software specifically a category of graphics software referred to as paint software. Examples of paint software are, Adobe photoshop, iphoto, and Microsoft Paint.

Bitmap Basics You can use a scanner to convert a printed image into a bitmap graphic A scanner divides an image into a fine grid of cells and assigns a digital value for the color of each cell. As a scan progresses the values are transferred to a digital device and stored as a bitmap graphics file. Bitmap Basics In a digital camera, the lens focuses light from the image onto a small image sensor called a CCD (charge-coupled device) A CCD contains a grid of tiny light sensitive diodes called photosites Photosites correspond to pixels; the more pixels used to capture an image, the higher its resolution Cameras, scanners, and graphics software offer a choice of bitmap formats, such as BMP, RAW, TIFF, JPEG, GIF, and PNG

Bitmap Data Representation Color and resolution are key elements in bitmap data representation. Today s color display devices represent color using the RGB color model. Bitmap Data Representation Color values can be specified in decimal (base 10), hexadecimal (base 16), or binary (base 2). With eight bits used to represent each color value, one pixel requires 24 bits. The number of colors available in a graphic is referred to as color depth.

Bitmap Resolution The dimensions of the grid that forms a bitmap graphic are referred to as image resolution. High-resolution graphics contain more data than low-resolution graphics; more data makes it possible to display and print highquality images that are sharper and clearer. Bitmap Resolution Graphics software, such as Adobe Photoshop, can help you gauge how large an image can be printed before the quality begins deteriorate

Image Compression Image compression refers to any technique that recodes the data in an image file so that it contains fewer bits. Run-length encoding (RLE) is a type of lossless compression that replaces a series of similarly colored pixels with a binary code that indicates the number of pixels and their colors. Image Compression Lossy compression techniques discard some data from an image to shrink its file size. For many images, lossy compression results in only a minor reduction in the sharpness of the images.

Modifying Bitmap Images Photoshop software and a host of local and online apps make it easy to modify digital images. Photoediting software includes sophisticated tools based on graphics algorithms that produce amazing transformations of digital images. Modifying Bitmap Images Characteristics of bitmap that can be modified: Noise reduction noise refers to spots, dust, and scratches left on old photos after they are scanned. Image enhancement improves brightness, color saturation, and focus. Selective color change algorithms are used to colorize black and white photos.

Modifying Bitmap Images Characteristics of bitmap that can be modified: Correcting image distortion reconstructing perspective with photoediting Cloning employs algorithms pulling pixels from one area and moving them to another Inpainting reconstructing lost or unwanted areas in a photo Digital compositing assembling more than one image into one by using clipping paths and alpha bending Vector Graphics Basics The first graphics that appeared on computer screens were not photos, but simple shapes consisting of lines and curves, each referred to as a vector.

Vector Graphics Basics A vector graphic consists of a set of instructions for creating a picture. Vector graphics include standard shapes such as circles and rectangles. Vector Graphics Basics Vector Graphics vs. Bitmap Graphics Resize better than bitmaps Require less storage space Not as realistic as bitmap images Editing an object is easier than in bitmap

Vector Graphics Basics Vector graphics are used for line art, logos, simple illustrations, infographic elements, and diagrams Vector Tools Vector graphics are created from scratch using drawing software such as: Adobe Illustrator LibreOffice Draw Open source Inkscape Various vector drawing apps

3-D Graphics 3-D Graphics are based on vectors stored as a set of instructions describing the coordinates for lines and shapes in a three-dimensional space. Vectors form a wireframe that works like the framework for a tent. The process of covering the wireframe surface with color and texture is called rendering. The technique for adding light and shadows to a 3- D image is called ray tracing. 3-D Graphics

3-D Graphics 3-D graphics can be animated to produce special effects for movies or to create interactive, animated characters and environments for 3-D computer games. An enormous amount of processing power is needed to create 3-D computer animation. The classic computer game Doom presented in 24- bit color requires 34,560,000 bits for each frame of animation.