A pixel is not a little square & A voxel is not a little cube 2000.01.10 Chung ji hye.

Slides:



Advertisements
Similar presentations
Pixels and Digital Images Yrd. Doc. Dr. Ahmet Sayar Kocaeli Universitesi Bilgisayar Muhendisligi Ileri Bilgisayar Grafikleri.
Advertisements

2.01 Investigate graphic image design. Image Resolution.
Images Images are a key component of any multimedia presentation.
Book Scanning & Digital Image Production The VRC Guide to Imaging By Kate Stepp.
Image Data Representations and Standards
Direct Volume Rendering. What is volume rendering? Accumulate information along 1 dimension line through volume.
Digital Image Fundamentals Selim Aksoy Department of Computer Engineering Bilkent University
Texture and Colour in Virtual Worlds Programming for 3D Applications.
In the name of God Computer Graphics Bastanfard.
CS 551 / CS 645 Antialiasing. What is a pixel? A pixel is not… –A box –A disk –A teeny tiny little light A pixel is a point –It has no dimension –It occupies.
Resolving the Problem Resolution: Concepts & Definitions.
Chapter 2 Computer Imaging Systems. Content Computer Imaging Systems.
Computer Vision. How would a human think of this picture? We might think of this picture as something like “an orange smiley face with black eyes, lighter.
Media: Digital Image. Representing Digital Images ● Pixel ● Resolution ● Aspect ratio.
1 King ABDUL AZIZ University Faculty Of Computing and Information Technology CS 454 Computer graphicsIntroduction Dr. Eng. Farag Elnagahy
Introduction to Computer Graphics
Digital Technology 14.2 Data capture; Digital imaging using charge-coupled devices (CCDs)
Components Text Text--Processing Software A Word Processor is a software application that provides the user with the tools to create and edit text.
What is digital resolution all about? Jellybean portrait shows us how units of color placed together make an image.
 A monitor or display is an electronic visual display for computers.  The monitor consists of : o the display device o circuitry o enclosure The display.
1 Additive Colour Mixing using a Computer Monitor You will use: a Liquid Crystal Display (LCD) or Cathode Ray Tube (CRT) Computer Monitor, this PowerPoint.
Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 6 This presentation © 2004, MacAvon Media Productions Colour.
IE433 CAD/CAM Computer Aided Design and Computer Aided Manufacturing Part-2 CAD Systems Industrial Engineering Department King Saud University.
1 Computer Graphics Week13 –Shading Models. Shading Models Flat Shading Model: In this technique, each surface is assumed to have one normal vector (usually.
Digital Imaging Systems –I/O. Workflow of digital imaging Two Competing imaging format for motion pictures Film vs Digital Video( TV) Presentation of.
Unit 30 P1 – Hardware & Software Required For Use In Digital Graphics
Fundamentals of Photoshop
Output Thomas W. Davis. What is Output? Output it data that has been processed into a useful form Output includes: Monitors Printers Speakers Etc.
COMP 175: Computer Graphics March 24, 2015
CSCI-235 Micro-Computers in Science Hardware Part II.
Lecture 4 - Introduction to Computer Graphics
Photoshop Software Rasterized, file formats, and printing choices.
Computer Graphics Raster Devices Transformations Areg Sarkissian.
Buffers Textures and more Rendering Paul Taylor & Barry La Trobe University 2009.
Objectives Differentiate between raster scan display and random scan display.
2.01D Investigate graphic image design. Image Resolution.
Digital Media Dr. Jim Rowan ITEC Vector Graphics Elegant way to construct digital images that –have a compact representation –are scalable –are.
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.
Color and Resolution Introduction to Digital Imaging.
Image Processing and Sampling
Intelligent Vision Systems Image Geometry and Acquisition ENT 496 Ms. HEMA C.R. Lecture 2.
Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 3 This presentation © 2004, MacAvon Media Productions Introduction to Computer Graphics.
INT 840E Computer graphics Introduction & Graphic’s Architecture.
Image Processing Basics. What are images? An image is a 2-d rectilinear array of pixels.
Quiz # 1 Chapters 1,2, & 3.
1 Research Question  Can a vision-based mobile robot  with limited computation and memory,  and rapidly varying camera positions,  operate autonomously.
Lecture 7: Intro to Computer Graphics. Remember…… DIGITAL - Digital means discrete. DIGITAL - Digital means discrete. Digital representation is comprised.
Sounds of Old Technology IB Assessment Statements Topic 14.2., Data Capture and Digital Imaging Using Charge-Coupled Devices (CCDs) Define capacitance.
Data Representation The storage of Text Numbers Graphics.
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.
RENDERING Introduction to Shading models – Flat and Smooth shading – Adding texture to faces – Adding shadows of objects – Building a camera in a program.
02/05/2002 (C) University of Wisconsin 2002, CS 559 Last Time Color Quantization Mach Banding –Humans exaggerate sharp boundaries, but not fuzzy ones.
Intelligent Vision Systems Image Geometry and Acquisition ENT 496 Ms. HEMA C.R. Lecture 2.
Digital Media Dr. Jim Rowan ITEC 2110 Chapter 3. Roll call.
HOW SCANNERS WORK A scanner is a device that uses a light source to electronically convert an image into binary data (0s and 1s). This binary data can.
OUTPUT PRIMITIVES A.Aruna/Faculty of Information technology/SNSCE13/19/2016.
Computer Graphics CC416 Lecture 04: Bresenham Line Algorithm & Mid-point circle algorithm Dr. Manal Helal – Fall 2014.
IS502:M ULTIMEDIA D ESIGN FOR I NFORMATION S YSTEM D IGITAL S TILL I MAGES Presenter Name: Mahmood A.Moneim Supervised By: Prof. Hesham A.Hefny Winter.
1 of 32 Computer Graphics Color. 2 of 32 Basics Of Color elements of color:
Digital Image -M.V.Ramachandranwww.youtube.com/postmanchandru
IS502:M ULTIMEDIA D ESIGN FOR I NFORMATION S YSTEM D IGITAL S TILL I MAGES Presenter Name: Mahmood A.Moneim Supervised By: Prof. Hesham A.Hefny Winter.
Computer Output.
What is digital resolution all about?
Binary Notation and Intro to Computer Graphics
Binary Representation in Audio and Images
Image Processing and Sampling
I/O Organization and Peripherals
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
What is digital resolution all about?
Presentation transcript:

A pixel is not a little square & A voxel is not a little cube Chung ji hye

abstract >Purpose Rid the world of the misconception that a pixel is a little geometric square. Everything I say about little squares and pixels in the 2D case applies equally well to little cubes and voxels in 3D.

The little square model The little square model pretends to represents a pixel as a geometric square. Pixel is assumed to correspond to the area of the plane bounded by the square {(x,y)|i-.5≤x≤i+05,j-.5≤y≤j+.5} =>{(x,y)|i≤x≤i+1,j≤y≤j+1}

So what is a pixel? A pixel is a point sample. It exists only at a point. At color picture for example pixel might actually contain three samples An image is a rectilinear array of point samples (pixel).

So what is a pixel? We can reconstruct a continuous entity from such a discrete entity using an appropriate “reconstruction filter”

So what is a pixel?

Why is the little square model so persistent ? >principal reasons ① geometry-based computer graphics uses it. (3D, CGI etc…) ② video magnification of computer displays appears to show it.

Why is the little square model so persistent ? ::rendering -rendering is the process of converting abstract geometry into viewable pixels that can be dispaled on a computer screen or written to film or video for display. ::modern computer graphics model

When magnifies or zooms in on When Magnifies or Zooms in on, each pixel appears to be a little square. :: each point sample is being replicated M *M times. for magnification factor M. When you look at an image consisting of M*M pixels all of the same color, guess what you see.

How does a scanner digitize a picture Principle of work 1.light source illuminates a piece of paper containing a colored picture. 2.light reflected from the paper is collected and measured by color sensitive devices.

How does a scanner digitize a picture 3. Incoming light a shape or both 를 통해 어느 정도 유사 한 image 를 가늠할 수 있다. It’s not square– think as Gaussian In general, overlapping shapes are averaged to get neighboring pixel samples. So, scanning should not contribute any weight to the little square model.

How does a printer print a digital image? Consider halftone printing of ink on paper. =>convert a pixel with many values to a dot of ink on paper such that the area of the dot relative to a little square of paper occupied by the dot is in the ratio of the intensity although there are little squares in each color separation, there are none for the final result.

How does a printer print a digital image? Little square model 과의 다른점 :: the different primaries are printed at an angle to each other. The point here is that use of the little square is a printing technology decision, not something inherent in the model of the image being imaged. In fact, the image being imaged is simply an array of point samples in all cases.

How is an image displayed on a monitor? Color monitor often has little triads of dots that cause the perception of color at normal viewing distances >principal 1.The value of a pixel is converted, for each primary color, to a voltage level. 2.This stepped voltage is passed through electronics which, by its very nature, rounds off the edges of the level step.

How is an image displayed on a monitor? 3. eye integrates the light pattern from a group of triads into a color. =>It is obvious that there are no little squares involved at any step of the process.

What is a discrete to continuous mapping that works? Assume the samples are mapped to the integers. Then, the outer extremes of the image are bounded by a rectangle whose all edges. It uses symmetric filters => but, asymmetric filters are useful because of perspective transformation.

What is a discrete to continuous mapping that works We display from top to bottom on millions of TVs and computer displays. We read from top to bottom We compute on matrices the natural container for image from top to bottom. Nearly all popular image file formats store image form top to bottom

Image broadening Minimal enclosing rectangle of a reconstructed image were the most natural representation of it  fall out to a discussion of image broadening. Minimal enclosing rectangle uses symmetric filter  The filter is asymmetric, then so is the broadening. The amount of broadening is dependent on the filter used.

Summary Pixel is not a square. -scanner digitize a picture -printer print a digital image. -display on monitor ::the triads on a display screen are not pixel; they do not even map one to one to pixels.