ECE291 Lecture 12 Mode 13h Graphics. ECE 291 Lecture 12Page 2 of 27 Lecture outline Color theory Video Hardware Mode 13h Graphics File Formats.

Slides:



Advertisements
Similar presentations
DOS and BIOS Interrupts DOS and BIOS interrupts are used to perform some very useful functions, such as displaying data to the monitor, reading data from.
Advertisements

A Digital Imaging Primer Nick Dvoracek Instructional Resources Center University of Wisconsin Oshkosh.
Assembly Language for Intel-Based Computers Chapter 15: BIOS-Level Programming (c) Pearson Education, All rights reserved. You may modify and.
Dale & Lewis Chapter 3 Data Representation. Representing color Similarly to how color is perceived in the human eye, color information is encoded in combinations.
Color COM 366 Web Design & Production. RGB color Amount of light in each channel Closer to 255, whiter color gets Every color has value for red,
Graphics File Formats. 2 Graphics Data n Vector data –Lines –Polygons –Curves n Bitmap data –Array of pixels –Numerical values corresponding to gray-
11-1 Display Technologies Hi-resolution displays come in two types: –Each takes an input signal and creates a visible image Cathode ray tube (CRT) - Streams.
Image Representation.
Image Representation CS105. Data Representation Text representation – ASCII character set – Unicode – Data compression Images!
How Images are Represented Bitmap images (Dots used to draw the image) Monochrome images 8 bit grey scale images 24 bit colour Colour lookup tables Vector.
File Formats By Jack Turner. Raster (Bitmap) Raster or bitmap is a dot matrix data structure, containing columns of dots and rows, of a graphics image.
09/12/02 (C) 2002, University of Wisconsin, CS 559 Last Time Color and Color Spaces –Recall RGB and XYZ Programming assignment 2.
1 Internet Graphics. 2 Representing Images  Raster Image: Images consist of “dots” of color, not lines  Pixel: Picture element-tiny rectangle  Resolution:
Digital Media Dr. Jim Rowan ITEC 2110 Color. COLOR Is a mess It’s a subjective sensation PRODUCED in the brain Color differs for light and paint/ink Printing.
Media File Formats Jon Ivins, DMU. Text Files n Two types n 1. Plain text (unformatted) u ASCII Character set is most common u 7 bits are used u This.
WEB GRAPHICS. The Pixel Computer displays are comprised of rows and columns of pixels. Pixels are indivisible. Some common screen resolutions are:, 600.
CS 1308 Computer Literacy and the Internet. Creating Digital Pictures  A traditional photograph is an analog representation of an image.  Digitizing.
COMP Bitmapped and Vector Graphics Pages Using Qwizdom.
Basics of a Computer Graphics System Introduction to Computer Graphics CSE 470/598 Arizona State University Dianne Hansford.
File Formats About graphic file formats And image compression.
ORG ; FOUR INT 21H and INT 10H Programming and Macros Dec Hex Bin
Module Code: CU0001NI Technical Information on Digital Images Week -2.
Lawrence Snyder University of Washington, Seattle © Lawrence Snyder 2004 Adding some light to computing ….
Chapter 11 Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
ECE291 Computer Engineering II Lecture 9 Josh Potts University of Illinois at Urbana- Champaign.
Video Monitor Uses raster scanning to display images –Beam of electrons illuminates phosphorus dots on the screen called pixels. Starting at the top of.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
CS1315: Introduction to Media Computation Picture encoding and manipulation.
Digital Media Dr. Jim Rowan ITEC 2110 Color. Question! Inside Photoshop and Gimp there are image filters that, among other things, allow you to blur the.
Digital Cameras And Digital Information. How a Camera works Light passes through the lens Shutter opens for an instant Film is exposed to light Film is.
Lab 8 Bit-Mapped Graphics Moving from text-based graphics to bit- mapped graphics. Easy to draw graphic points and lines using INT 10h, Function 0Ch (write.
Text-Mode Programming Question #1 What are the three levels of access to the video display when writing characters on the screen in text mode?
CSC Computing with Images
Information Processes and Technology Multimedia: Graphics.
CS- 375 Graphics and Human Computer Interaction Lecture 1: 12/4/1435 Fundamental Techniques in Graphics Lecturer: Kawther Abas.
Introduction to Graphical Hardware Display Technologies
Optimizing Web Graphics Session #6 INP150. Image Types Types  Bitmap / Raster---dots  Bitmap images are made of individual pixels arranged in patterns.
Quiz # 1 Chapters 1,2, & 3.
ECE291 Computer Engineering II Lecture 15 Josh Potts University of Illinois at Urbana- Champaign.
Graphics An image is made up of tiny dots called pixels (“picture elements”) The resolution determines the.
Multimedia Basics (1) Hongli Luo CEIT, IPFW. Topics r Image data type r Color Model : m RGB, CMY, CMYK, YUV, YIQ, YCbCr r Analog Video – NTSC, PAL r Digital.
Video systems. Lesson plan Review the code for the previous exercise Video systems Review for midterm exam.
Lecture 7: Intro to Computer Graphics. Remember…… DIGITAL - Digital means discrete. DIGITAL - Digital means discrete. Digital representation is comprised.
DIGITAL IMAGE. Basic Image Concepts An image is a spatial representation of an object An image can be thought of as a function with resulting values of.
Color Web Design Professor Frank. Color Displays Based on cathode ray tubes (CRTs) or back- lighted flat-screen Monitors transmit light - displays use.
10H Interrupt. Option 0H – Sets video mode. Registers used: – AH = 0H – AL = Video Mode. 3H - CGA Color text of 80X25 7H - Monochrome text of 80X25 Ex:
Digital Images are represented by manipulating this…
Graphics Dr. Dimitrios S. Nikolopoulos CSL/UIUC
4. Kernel and VGA ENGI 3655 Lab Sessions. Richard Khoury2 Textbook Readings  None.
Image File Formats Harrow Computer Club – Wed, 1 Dec 2010 Bob Watson MA CMath MIMA MBCS.
Week 9 Monitors and output to the screen. Monitors, also known as Visual display units (V.D.Us) Desktop computers contain a Cathode Ray Tube (C.R.T.)
Web page layout in elegance.  Specific Designs for Target Audiences Consider your audiences tastes when creating your website.
Chapter 3 Color Objectives Identify the color systems and resolution Clarify category of colors.
Graphics and Image Data Representations 1. Q1 How images are represented in a computer system? 2.
Lecture 11 Text mode video
Information in Computers. Remember Computers Execute algorithms Need to be told what to do And to whom to do it.
Computer Graphics CC416 Lecture 02: Overview of Graphics Systems: Raster & Random Displays – Chapter 2 Dr. Manal Helal – Fall 2014.
Computer Graphics Lecture 04 Point Taqdees A. Siddiqi
DISPLAY DEVICES CIS 10, Group #1 April 01, 2006 C. X. A. L. K. H. A. V. ((( L. C.
Introduction to Computational Art
Data Representation Images.
Data Representation.
Computer Graphics Lecture 3 Computer Graphics Hardware
Binary Representation in Audio and Images
Microprocessor and Assembly Language
MED 2001 Advanced Media Production
Digital Media Dr. Jim Rowan ITEC 2110 Color.
COMS 161 Introduction to Computing
Multimedia System Image
Real-World File Structures
Presentation transcript:

ECE291 Lecture 12 Mode 13h Graphics

ECE 291 Lecture 12Page 2 of 27 Lecture outline Color theory Video Hardware Mode 13h Graphics File Formats

ECE 291 Lecture 12Page 3 of 27 Color theory TV’s, Computer Monitors, Projectors… It’s all Red, Green, Blue Why RGB? These are the primary colors for visible light. You can get all the colors by mixing them. Red + Green = Yellow Green + Blue = Cyan Blue + Red = Purple

ECE 291 Lecture 12Page 4 of 27 Color Theory - Biology How can mixing a Low Frequency with High Frequency make Really High Frequency? It can’t. Remember your ECE 210. It’s all biological. Our eyes have red, green, and blue sensors. These are the colors we can see best (ie, the frequencies for which we have color receptors) The people who invented color photography and color TV used this fact.

ECE 291 Lecture 12Page 5 of 27 Color Theory - Biology If three-eyed aliens with different color receptors visited us, they’d “see” the same three frequencies coming from the monitor, but they wouldn’t be able to see any pictures. The same goes for your dog that wonders why you spend hours looking at a blank screen.

ECE 291 Lecture 12Page 6 of 27 Full Color Images Each pixel has a Red, Green, and Blue value. 24-bit color means 1 red byte, 1 green byte, 1 blue byte. Each determines the color intensity (0 = none, 255 = full) of their respective color components. 16-bit color means 5 bits red, 5 bits green, 5 bits blue. The extra bit is sometimes a green bit depending on the system. Full color is when we use a given number of bits to specify the intensity of each color component.

ECE 291 Lecture 12Page 7 of bit Full Color Images 24-bit color allows 256 different intensities for each color component. This allows for 2 24 or 16,777,216 different colors. That’s way more than our eyes can distinguish. This 24-bit color is sometimes called Full or True color. True color requires 3 bytes for every pixel.

ECE 291 Lecture 12Page 8 of bit Full Color Images 16-bit color allows 32 different intensities for each color component. This allows for 2 15 or 32,768 different colors (assuming 5 bits green) Not quite as good as True color, 16-bit color is also referred to as High color. High color requires 2 bytes for every pixel.

ECE 291 Lecture 12Page 9 of 27 Full Color Images Positives of high and true color images More colors means higher quality pictures More colors means higher quality pictures Easier to do image manipulation (math) Easier to do image manipulation (math) Make everything a little redder Blur an image by averaging RGB values of adjacent pixels Negatives of high and true color images Take up a lot more memory Take up a lot more memory Ex:A 320x200 pixel image with 24-bit color needs 320 x 200 x 3 = 192,000 bytes of memory

ECE 291 Lecture 12Page 10 of 27 Color Palettes While we’d like to do everything in full color, in real mode we need to reduce the amount of memory our images use. The color palette contains the 3-byte RGB values of 256 different colors. The image data is then just a bunch of indexes into this palette. It’s a look-up table!

ECE 291 Lecture 12Page 11 of 27 Color Palettes Positives of palettes Less memory and bandwidth needed to store and move pictures Less memory and bandwidth needed to store and move pictures You can do some cool stuff with palettes You can do some cool stuff with palettes Invisible pixels – assign one palette entry to be “clear” and when you’re copying one image over another, don’t copy the “clear” pixels. You can cycle the palette for 60’s psychedelic effects. You can fade out a screen just by subtracting from each entry in the palette table until they’re all zero

ECE 291 Lecture 12Page 12 of 27 Color Palettes Negatives of palettes Fewer colors (at most 256) mean lower quality pictures Fewer colors (at most 256) mean lower quality pictures Harder to do manipulation Harder to do manipulation Average blurring is harder because new color isn’t in palette All “real” images come in full color and have to be converted All “real” images come in full color and have to be converted This is hard because you have to choose a good palette For each “full color” pixel, find closest palette entry When you put images together, they share same palette When you put images together, they share same palette

ECE 291 Lecture 12Page 13 of 27 Text Mode Video Revisited Text mode video is kind of like a form of palette Each ASCII byte is an index into a font table with a bitmap for each character Each Mode Byte is an index into a type of palette Or you can think of the mode byte as 3-bit full color (kind of)

ECE 291 Lecture 12Page 14 of 27 Video Hardware You’ve got a chunk of memory You write to the memory through memory mapped I/O (MP3) In a analog RGB monitor, three electron beams sweep across all rows 60 to 85 times a second to zap the phosphor elements to make them glow The video card adjusts the intensity of the three electron beams in real time as they are sweeping to correspond to the intensities specified in the VRAM

ECE 291 Lecture 12Page 15 of 27 Video Hardware To do this, the video card reads out a whole row of RGB values in the VRAM and shifts them “out” in a big shift register. The byte that “falls off the edge” gets converted into an intensity for the electron beam. With a palette, there is an additional step. Before data shifts out, it looks up the “real” RGB value in palette memory.

ECE 291 Lecture 12Page 16 of 27 Mode 13h Mode 13h is a 320 x 200 x 256-color graphics display mode that was very popular for DOS programming due to its relatively high number of colors (256 vs 16 for other VGA modes) and simple addressing. 320 x 200 = pixels. With 1 byte per pixel this easily fits in a single real-mode segment. It’s linear just like text mode. The pixels increase in memory as you go from left to right, while each row immediately follows the previous one. Offset = row*320 + col

ECE 291 Lecture 12Page 17 of 27 Mode 13h - How to get there The following instructions get you into Mode 13h video mov ah, 0; int 10h’s set mode subfunction mov al, 13h; The aptly named Mode 13h int 10h; Call the Video BIOS interrupt

ECE 291 Lecture 12Page 18 of 27 Mode 13h How to draw a pixel The following instructions draw a pixel on the screen VidGrSeg equ 0A000h Location dw(200/2)*320+(320/2); Center Color db 98; Some random palette index mov ax, VidGrSeg mov es, ax; Use extra segment to address VRAM mov bx, [Location]; Offset to center of screen mov al, [Color]; Palette Entry Number mov [es:bx], al; Write it to the screen

ECE 291 Lecture 12Page 19 of 27 Mode 13h The Default Palette

ECE 291 Lecture 12Page 20 of 27 Mode 13h How to change the palette Method 1: Load an entire palette Write 0 to port 3C7h Write 0 to port 3C7h Write red, green, blue bytes to port 3C9h for all 256 colors Write red, green, blue bytes to port 3C9h for all 256 colors Method 2: Change just one palette entry using VBIOS call BX = Palette Number (0 – 255) BX = Palette Number (0 – 255) CH = Green (0 – 63) CH = Green (0 – 63) CL = Blue (0 – 63) CL = Blue (0 – 63) DH = Red (0 – 63) DH = Red (0 – 63) AX = 1010h; Set VGA Palette Registers command AX = 1010h; Set VGA Palette Registers command INT 10h; vBIOS call INT 10h; vBIOS call

ECE 291 Lecture 12Page 21 of 27 Mode 13h How to change the palette ; Change a palette entry to light purple Reddb39 Greendb0 Bluedb63 Movbx, 0; changing palette entry 0 Movch, [Green] Movcl, [Blue] Movdh, [Red] Movax, 1010h Int10h

ECE 291 Lecture 12Page 22 of 27 Graphics File Formats Raster Formats Arrays of pixels (what we’ve been talking about) Arrays of pixels (what we’ve been talking about) Raw pixels (.bmp) Raw pixels (.bmp) Run-Length encoding (.pcx) Run-Length encoding (.pcx) LZW encoding (.gif) LZW encoding (.gif) Transform encoding (.jpg) Transform encoding (.jpg) Deflate (zip) compression (.png) Deflate (zip) compression (.png)

ECE 291 Lecture 12Page 23 of 27 Graphics File Formats Vector Formats Like PostScript or CorelDraw Like PostScript or CorelDraw A vector file might have something like: A vector file might have something like: “Draw line from (24, 56) to (87, 12)” “Here’s what an ‘A’ looks like….” “Not draw an ‘A’ at (75, 96)” Eventually converte to raster format by using a rasterizer Eventually converte to raster format by using a rasterizer Printers are very high resolution rasterizers (for example)

ECE 291 Lecture 12Page 24 of 27 Graphics File Formats Included in image files… Header: Most file formats start out with some kind of info about the image. For graphics files this info could be: Header: Most file formats start out with some kind of info about the image. For graphics files this info could be: Size (horizontal and vertical pixels) Color depth (bits per pixel) Version (makes life difficult…GIF89A, GIF97A, …) Compression Technique Palette: If you’re not using true color, you must include a palette for the image in the image file Palette: If you’re not using true color, you must include a palette for the image in the image file Data: Raw or compressed, raster or vector information. Data: Raw or compressed, raster or vector information.

ECE 291 Lecture 12Page 25 of 27 Graphics File Formats Bitmap (.bmp) Included in image files… Header: Most file formats start out with some kind of info about the image. For graphics files this info could be: Header: Most file formats start out with some kind of info about the image. For graphics files this info could be: Size (horizontal and vertical pixels) Color depth (bits per pixel) Version (makes like difficult…GIF89A, GIF97A, …) Compression Technique Palette: If you’re not using true color, you must include the palette for the image in the image file Palette: If you’re not using true color, you must include the palette for the image in the image file Data: Raw or compressed, raster or vector information. Data: Raw or compressed, raster or vector information.

ECE 291 Lecture 12Page 26 of 27 Graphics File Formats Discussion of various graphics file formats. Go to kwood/l15.html kwood/l15.html

ECE 291 Lecture 12Page 27 of 27 Announcement Sandia National Labs Visit (HKN) For more information visit