Pixel

From Wikipedia, the free encyclopedia

Jump to: navigation, search
This example shows an image with a portion greatly enlarged, in which the individual pixels are rendered as little squares and can easily be seen.
A photograph of sub-pixel display elements on a laptop's LCD screen

In digital imaging, a pixel[1] (or picture element) is the smallest item of information in an image. Pixels are normally arranged in a 2-dimensional grid, and are often represented using dots, squares, or rectangles. Each pixel is a sample of an original image, where more samples typically provide more-accurate representations of the original. The intensity of each pixel is variable; in color systems, each pixel has typically three or four components such as red, green, and blue, or cyan, magenta, yellow, and black.

The word pixel is based on a contraction of pix ("pictures") and el (for "element"); similar formations with el  for "element" include the words: voxel[2] and texel.[2]

Contents

[edit] Etymology

The word "pixel" was first published in 1965 by Frederic C. Billingsley of JPL (in Pasadena, CA), to describe the picture elements of video images from space probes to the Moon and Mars. However, Billingsley did not coin the term himself. Instead, he got the word "pixel" from Keith E. McFarland, at the Link Division of General Precision in Palo Alto, who did not know where the word originated. McFarland said simply it was "in use at the time" (circa 1963).

The word is a combination of picture and element, via pix. Pix was first coined in 1932 in a Variety magazine headline, as an abbreviation for the word pictures, in reference to movies. By 1938, "pix" was being used in reference to still pictures by photojournalists.

The concept of a "picture element" dates to the earliest days of television, for example as "Bildpunkt" (the German word for pixel, literally picture point) in the 1888 German patent of Paul Nipkow. According to various etymologies, the earliest publication of the term picture element itself was in Wireless World magazine in 1927,[3] though it had been used earlier in various U.S. patents filed as early as 1911.[4]

Some authors explain pixel as picture cell, as early as 1972.[5]

A detailed history of pixel and picture element, with references, is linked below (in External links).

In video processing, pel is often used instead of pixel. For example, IBM used it in their Technical Reference for the original PC.[6]

[edit] Words with similar etymologies

Texel (texture element) and luxel (lux element) are words used to describe a pixel when it is used in specific context (texturing and light mapping respectively)

A voxel is a volume element, the 3D analogue of a 2D pixel.

Surfels (surface elements) have the same naming pattern as pixels, but share more similarities with shrunken triangles than expanded pixels.

[edit] Technical

A pixel does not need to be rendered as a small square. This image shows alternative ways of reconstructing an image from a set of pixel values, using dots, lines, or smooth filtering.

A pixel is generally thought of as the smallest single component of a digital image. The definition is highly context-sensitive. For example, there can be "printed pixels" in a page, or pixels carried by electronic signals, or represented by digital values, or pixels on a display device, or pixels in a digital camera (photosensor elements). This list is not exhaustive, and depending on context, there are several terms that are synonymous in particular contexts, such as pel, sample, byte, bit, dot, spot, etc. The term "pixels" can be used in the abstract, or as a unit of measure, in particular when using pixels as a measure of resolution, such as: 2400 pixels per inch, 640 pixels per line, or spaced 10 pixels apart.

The measures dots per inch (dpi) and pixels per inch (ppi) are sometimes used interchangeably, but have distinct meanings, especially for printer devices, where dpi is a measure of the printer's density of dot (e.g. ink droplet) placement.[7] For example, a high-quality photographic image may be printed with 600 ppi on a 1200 dpi inkjet printer.[8] Even higher dpi numbers, such as the 4800 dpi quoted by printer manufacturers since 2002, do not mean much in terms of achievable resolution.[9]

The more pixels used to represent an image, the closer the result can resemble the original. The number of pixels in an image is sometimes called the resolution, though resolution has a more specific definition. Pixel counts can be expressed as a single number, as in a "three-megapixel" digital camera, which has a nominal three million pixels, or as a pair of numbers, as in a "640 by 480 display", which has 640 pixels from side to side and 480 from top to bottom (as in a VGA display), and therefore has a total number of 640 × 480 = 307,200 pixels or 0.3 megapixels.

The pixels, or color samples, that form a digitized image (such as a JPEG file used on a web page) may or may not be in one-to-one correspondence with screen pixels, depending on how a computer displays an image.

In computing, an image composed of pixels is known as a bitmapped image or a raster image. The word raster originates from television scanning patterns, and has been widely used to describe similar halftone printing and storage techniques.

[edit] Sampling patterns

For convenience, pixels are normally arranged in a regular two-dimensional grid. By using this arrangement, many common operations can be implemented by uniformly applying the same operation to each pixel independently.

Other arrangements of pixels are also possible, with some sampling patterns even changing the shape (or kernel) of each pixel across the image.

For this reason, care must be taken when acquiring an image on one device and displaying it on another, or when converting image data from one pixel format to another.

For example:

  • Text rendered using Cleartype
    LCD screens typically use a staggered grid, where the red, green, and blue components are sampled at slightly different locations. Subpixel rendering is a technology which takes advantage of these differences to improve the rendering of text on LCD screens.
  • Some digital cameras use a Bayer filter, resulting in a regular grid of pixels where the color of each pixel depends on its position on the grid.
  • A clipmap uses a hierarchical sampling pattern, where the size of the support of each pixel depends on its location within the hierarchy.
  • Warped grids are used when the underlying geometry is non-planar, such as images of the earth from space.[10]
  • The use of non-uniform grids is an active research area, attempting to bypass the traditional Nyquist limit.[11]
  • Pixels on computer monitors are normally "square" (this is, having equal horizontal and vertical sampling pitch); pixels in other systems are often "rectangular" (that is, having unequal horizontal and vertical sampling pitch), as are digital video formats with diverse aspect ratios, such as the anamorphic widescreen formats of the CCIR 601 digital video standard.

[edit] Display resolution vs. native resolution in computer monitors

Computers can use pixels to display an image, often an abstract image that represents a GUI. The resolution of this image is called the display resolution and is determined by the video card of the computer.

Modern computer monitors also use pixels to display an image, and have a native resolution. In the case of an LCD monitor, each pixel is made up of triads, with the number of these triads determining the native resolution. On some CRT monitors, the beam sweep rate may be fixed, resulting in a fixed native resolution.

To produce the sharpest images possible, the user must ensure the display resolution of the computer matches the native resolution of the monitor.

If these resolutions are different, the image may appear squashed or stretched, or the monitor may resample the image, resulting in a blurry or jagged appearance.

[edit] Bits per pixel

The number of distinct colors that can be represented by a pixel depends on the number of bits per pixel (bpp). A 1 bpp image uses 1-bit for each pixel, so each pixel can be either on or off. Each additional bit doubles the number of colors available, so a 2 bpp image can have 4 colors, and a 3 bpp image can have 8 colors:

  • 1 bpp, 21 = 2 colors (monochrome)
  • 2 bpp, 22 = 4 colors
  • 3 bpp, 23 = 8 colors
...
  • 8 bpp, 28 = 256 colors
  • 16 bpp, 216 = 65,536 colors ("Highcolor" )
  • 24 bpp, 224 ≈ 16.8 million colors ("Truecolor")

For color depths of 15 or more bits per pixel, the depth is normally the sum of the bits allocated to each of the red, green, and blue components. Highcolor, usually meaning 16 bpp, normally has five bits for red and blue, and six bits for green, as the human eye is more sensitive to errors in green than in the other two primary colors. For applications involving transparency, the 16 bits may be divided into five bits each of red, green, and blue, with one bit left for transparency. A 24-bit depth allows 8 bits per component. On some systems, 32-bit depth is available: this means that each 24-bit pixel has an extra 8 bits to describe its opacity (for purposes of combining with another image).

[edit] Subpixels

Geometry of color elements of various CRT and LCD displays; phosphor dots in a color CRT display (top row) bear no relation to pixels or subpixels.

Many display and image-acquisition systems are, for various reasons, not capable of displaying or sensing the different color channels at the same site. Therefore, the pixel grid is divided into single-color regions that contribute to the displayed or sensed color when viewed at a distance.

In some displays, such as LCD, LED, and plasma displays, these single-color regions are separately addressable elements, which have come to be known as "subpixels". For example, LCDs typically divide each pixel horizontally into three subpixels.

Most digital camera image sensors also use single-color sensor regions, for example using the Bayer filter pattern, but in the case of cameras these are known as pixels, not subpixels.

For systems with subpixels, two different approaches can be taken:

  • The subpixels can be ignored, with full-color pixels being treated as the smallest addressable imaging element; or
  • The subpixels can be included in rendering calculations, which requires more analysis and processing time, but can produce apparently superior images in some cases.

This latter approach, referred to as subpixel rendering, uses knowledge of pixel geometry to manipulate the three colored subpixels separately, producing a slight increase in the apparent resolution of color displays.

While CRT displays also use red-green-blue masked phosphor areas, dictated by a mesh grid called the shadow mask, it would require a difficult calibration step to be aligned with the displayed pixel raster, and so CRTs do not currently use subpixel rendering.

[edit] Megapixel

A megapixel (MP) is 1 million pixels, and is a term used not only for the number of pixels in an image, but also to express the number of image sensor elements of digital cameras or the number of display elements of digital displays. For example, a camera with an array of 2048×1536 sensor elements is commonly said to have "3.1 megapixels" (2048 × 1536 = 3,145,728). The neologism sensel is sometimes used to describe the elements of a digital camera's sensor, since these are picture-detecting rather than picture-producing elements.[12]

Digital cameras use photosensitive electronics, either charge-coupled device (CCD) or complementary metal–oxide–semiconductor (CMOS) image sensors, consisting of a large number of single sensor elements, each of which records a measured intensity level. In most digital cameras, the sensor array is covered with a patterned color filter mosaic having red, green, and blue regions in the Bayer filter arrangement, so that each sensor element can record the intensity of a single primary color of light. The camera interpolates the color information of neighboring sensor elements, through a process called demosaicing, to create the final image. These sensor elements are often called "pixels", even though they only record 1 channel (only red, or green, or blue) of the final color image. Thus, two of the three color channels for each sensor must be interpolated and a so-called N-megapixel camera that produces an N-megapixel image provides only one-third of the information that an image of the same size could get from a scanner. Thus, certain color contrasts may look fuzzier than others, depending on the allocation of the primary colors (green has twice as many elements as red or blue in the Bayer arrangement).

In contrast to conventional image sensors, the Foveon X3 sensor uses three layers of sensor elements, so that it detects red, green, and blue intensity at each array location. This structure eliminates the need for de-mosaicing and eliminates the associated image artifacts, such as color blurring around sharp edges. Citing the precedent established by mosaic sensors, Foveon counts each single-color sensor element as a pixel, even though the native output file size has only one pixel per three camera pixels.[13] With this method of counting, an N-megapixel Foveon X3 sensor therefore captures the same amount of information as an N-megapixel Bayer-mosaic sensor, though it packs the information into fewer image pixels, without any interpolation.

[edit] Standard display resolutions

Display standards comparison

Selected standard display resolutions include:

Name Resolution
(megapixels)
Width x Height
CGA 0.064 320×200
EGA 0.224 640×350
VGA 0.3 640×480
SVGA 0.5 800×600
XGA 0.8 1024×768
SXGA 1.3 1280×1024
UXGA 1.9 1600×1200
WUXGA 2.3 1920×1200

[edit] See also

[edit] References

  1. ^ Rudolf F. Graf (1999). Modern Dictionary of Electronics. Oxford: Newnes. p. 569. ISBN 0-7506-43315. http://books.google.com/books?id=o2I1JWPpdusC&pg=PA569&dq=pixel+intitle:%22Modern+Dictionary+of+Electronics%22+inauthor:graf&lr=&as_brr=0&ei=5ygASM3qHoSgiwH45-GIDA&sig=7tg-LuGdu6Njypaawi2bbkeq8pw. 
  2. ^ a b Foley, James D.; Andries van Dam, John F. Hughes, Steven K. Feiner (1990). "Spatial-partitioning representations; Surface detail". Computer Graphics Principles and Practice. The Systems Programming Series. Addison-Wesley. ISBN 0-201-12110-7. "These cells are often called voxels (volume elements), in analogy to pixels." 
  3. ^ "On language; Modem, I'm Odem", The New York Times, April 2, 1995. Accessed April 7, 2008.
  4. ^ Alf Sinding-Larsen, , Transmission of Pictures of Moving Objects, US Patent 1,175,313, issued March 14, 1916.
  5. ^ Robert L. Lillestrand (1972). "Techniques for Change Detection". IEEE Trans. Computers C-21 (7). 
  6. ^ http://vintageibm.net/yahoo_site_admin/assets/docs/techrefv202.zip
  7. ^ Derek Doeffinger (2005). The Magic of Digital Printing. Lark Books. p. page 24. ISBN 1579906893. http://books.google.com/books?id=s2hIx1amJUcC&pg=PA24&dq=printer+dots-per-inch+pixels-per-inch&ei=ilKfSKjyBYm6tQPAu9WdBQ&sig=ACfU3U1img9C-r3_16xNKoYjTubg02GyVA. 
  8. ^ "Experiments with Pixels Per Inch (PPI) on Printed Image Sharpness". ClarkVision.com. July 3, 2005. http://www.clarkvision.com/imagedetail/printer-ppi/. 
  9. ^ Harald Johnson (2002). Mastering Digital Printing. Thomson Course Technology. p. page 40. ISBN 1929685653. http://books.google.com/books?id=wto19gxFyfQC&pg=PA40&dq=inkjet+printer+4800+dpi+addressability&lr=&as_brr=3&ei=ZI-kSITKAo3sswO7g-2dBQ&sig=ACfU3U2RdAVkFq_0rsmQK6QwKPcDveJcxg#PPA41,M1. 
  10. ^ "Image registration of blurred satellite images". http://staff.utia.cas.cz/zitova/registration.htm. Retrieved on 2008-05-09. 
  11. ^ "ScienceDirect - Pattern Recognition: Image representation by a new optimal non-uniform morphological sampling:". http://www.sciencedirect.com/science/article/B6V14-3YXB1T5-8/2/15b559f2aefbc7bdc54c55df148c2374. Retrieved on 2008-05-09. 
  12. ^ Michael Goesele (2004). New Acquisition Techniques for Real Objects and Light Sources in Computer Graphics. Books on Demand. ISBN 3833414898. http://books.google.com/books?id=ZTJJ8QzNv1wC&pg=PA33&dq=sensel+sensor-element&lr=&as_brr=0&ei=t_-4R7WMPKCQtwOV-I2SBQ&sig=nbPybOvZhWwQSt0uS0Rtq60mJlg. 
  13. ^ http://www.x3f.info/technotes/x3pixel/pixelpage.html

[edit] External links

Personal tools