F

Here is where the computer is not just a "stupid machine"
Scroll Up
start.. image1
 
image2
 
image3
 
image4
 
image5
 
image6
 
image7
 
image8
 
image9
 
image10
 
end.
Scroll Down

// this tells jquery to run the function below once the DOM is ready $(document).ready(function() { // choose text for the show/hide link var showText="Show the hidden text"; var hideText="Hide the text"; // create the toggle link $("#hide_this").before("

"+showText+""); // hide the content $('#hide_this').hide(); // capture clicks on the newly created link $('a#toggle_link').click(function() { // change the link text if ($('a#toggle_link').text()==showText) { $('a#toggle_link').text(hideText); } else { $('a#toggle_link').text(showText); } // toggle the display $('#hide_this').toggle('slow'); // return false so any link destination is not followed return false; }); });

I'm looking for a new computer monitor. What does the salesperson mean when he says I need a monitor with a .28 dot pitch or better?

The dot pitch rating of a monitor tells you just how sharp the displayed image will be. Dot pitch is measured in millimeters (mm), and a smaller number means a sharper image. How you measure the dot pitch depends on the technology used.
  • In most CRTs you measure dot pitch as the distance between holes in the shadow mask. The shadow mask is a metal screen filled with holes through which the three electron beams pass that focus to a single point on the tube's phosphor surface.
  • Monitors based on the Trinitron technology, developed by Sony, use an aperture grill instead of a shadow mask. The aperture grill consists of tiny vertical wires. The dot pitch of one of these monitors is measured by the horizontal distance between wires.
  • In LCDs and the majority of other display technologies, dot pitch refers to the distance between subpixels of the same color in pixel triads.

In computer displays, common dot pitches are .31mm, .28mm, .27mm, .26mm, and .25mm. Traditional televisions often use a larger dot pitch, about .51 mm, and large screen TVs or projection devices can go up to 1 millimeter in pitch.
The smaller and closer the dots are to one another, the more realistic and detailed the picture appears. When the dots are farther apart, they become noticeable and make the image look grainier. You will usually want a .28mm or finer. Anything larger than that on a typical monitor will begin to appear grainy.
The dot pitch translates directly to the resolution on the screen. If you were to put a ruler up to the glass and measure an inch, you would see a certain number of dots, depending on the dot pitch. Here is a table that shows the number of dots per square centimeter and per square inch in each of these common dot pitches:

Dot Pitch
Approx. number of
pixels/cm2
Approx. number of
pixels/in2
.25 mm
1,600
10,000
.26 mm
1,444
9,025
.27 mm
1,369
8,556
.28 mm
1,225
7,656
.31 mm
1,024
6,400
.51 mm
361
2,256
1 mm
100
625

0 comments

Post a Comment

Followers