Display: Difference between revisions
(Added extended quote from ajax post.) |
(→ajax post: added "design for bigger UI elements and high contrast. 33% is a reasonable scale factor.".) |
||
Line 79: | Line 79: | ||
luminances. |
luminances. |
||
From later discussion: |
|||
design for bigger UI elements and high contrast. |
|||
33% is a reasonable scale factor. |
|||
=== For the programmer === |
=== For the programmer === |
Revision as of 20:12, 28 June 2007
See Hardware specification#Display.
Understanding the screen
The screen is composed of several layers. Starting at the back, there is a white LED backlight, a 1200x900 grid of color filters, a semi-reflective layer, and a 1200x900 LCD.
The brightness of the backlight can be adjusted. It has (how many?) settings, including off. (include an image of the backlight control)
The semi-reflective layer both reflects room light, and lets the backlight's light out. How much you see of each, depends on the relative strength of the two light sources.
- In direct sun, you see only reflected light. The backlight setting doesn't matter.
- In a completely dark room, there is no reflected light. So you only see the backlight, and if you turn it off, you see nothing.
- In between, you see some mix. You see more backlight if you turn down the room lighting, or you raise the backlight setting. You see less backlight when the room gets brighter, or you lower the backlight setting.
All color is created by the backlight and filters.
There are 1200x900 pixels. Each one has a single colored filter behind it. So each pixel is capable of either R, G, or B. Only one. It relies on its neighbors to provide the others. So each pixel has:
- a fixed hue (R, G, or B),
- a luminance which can be set (6 bit)
- and a chrominance which depends on the relative strength of the room light and backlight.
This Munsell page has a nice diagram.
Consider a single one of those 1200x900 pixels. A red one. If its value is 0, black, then lighting doesn't matter. If its value is 255 (or whatever, fully transparent), then in bright sunlight you see only white, and in a dark room you see fully saturated red. If its value is in between, in bright sunlight you see a gray, and in a dark room you see a grayed (ie desaturated) red.
The display employs something the video encoding experts have done for some time: the human visual system sees higher resolution in luminance (B&W) than chrominance (color): for example MPEG luminance resolution is 4X the chrominance resolution. A key thing to understand is that the ambient light level of the room changes the resolution of the display. The pixel has a reflective part that is B&W, and a transmissive part that is one color: red or green or blue. It should be that a red and a green and blue pixel combine to make a single full-color pixel. Thus the resolution should be 1200/sqrt(3) x 900/sqrt(3) or 693x520. But, when the room is totally dark, the resolution given via standard methods of determining display resolution is approximately 800x600 or about 133 dpi. These measurements were done in a number of ways, and are being written up for publication (some were straight fresnel patterns, other perceptual image detail tests). In a dark room the effect is akin to sub-pixel rendering - we see an improvement in resolution of ~33% via sub-pixel rendering.
With room lights on, an additional effect comes into play: the display has luminance (B&W) information at 200dpi in it's reflective mode, with the room lights on the display also reflects 200dpi in black and white. This increases the effective resolution to about XGA or 1024x768 when using test patterns to ascertain the display resolution. Finally, the laptop can be brought outside into bright sunlight and the screen is still viewable - now the color is barely visible (if the backlight is left on), but on the screen the 1200x900 200dpi resolution is seen crisply and clearly.
So a resolution rule of thumb is: 1200x900 gray (sunlit, or room with backlight off), ~1024x768 color (room with backlight on); ~800x600 closet (total darkness). (These numbers are from a March 2007 MLJ wikipedia comment, reporting test results).
The top left corner pixel is red. So the first row is RGBRG... and the second row is GBRGB... and the 3rd BRGBR... .
The TTL panel selected by OLPC is a hybrid monochrome/color panel that does not utilize conventional RGB sub-pixels. Instead, each pixel contains only a single “sub-pixel value”. When used as a reflective panel (when the backlight is off), these pixel values represent gray scales, and the resulting image is a monochrome display. When used in transmissive mode (backlight on), each pixel represents a single color value, from the set of {red, green, blue}. (this paragraph confuses backlight on-ness with backlight 'significant relative to external light level'. but the sub-pixel concept is useful.)
Luminous intensity is 64 cd/m^2 (about half that of a normal notebook panel), and contrast is 82:1. (from [1])
ajax post
http://lists.laptop.org/pipermail/devel/2007-January/003817.html
what is the resolution in color?
1200x900. And since you brought it up, I'd like to dispel a myth. It's not like your pixels suddenly get larger in gray mode, the dots stay the same size. You just lose chromaticity, so you need to make sure your colors are still discernable even when just looking at luminance. (And yes, it's pretty much the NTSC luminance formula.) Likewise, there's really no point in adjusting font sizes when changing from one mode to the other. There's a minimum size for legibility, and it's about the same on the XO screen regardless of whether they're colored or gray pixels. This minimum size may be slightly smaller on the XO screen than compared to a normal 100dpi LCD, but not by much, at least when measured in points. And of course, don't size your fonts in pixels, because that's Bad And Wrong. If you like you can even do the math. OLPC use for a child will be about 200dpi at 18"; one degree of arc would be about 0.314" of screen, or 62.8 dots (18 inch * tan(1 deg) * 200 dots per inch). Typical 100dpi use for an adult is about 24" to 30", which is 41.9 to 52.4 dots per degree. So your fonts need to be anywhere between 20% and 50% bigger, in points, to be the same perceptual size in arc sweep. And since most text is high-contrast, you can aim for the low end of that range, since you'll be gaining in dots per unit arc. But by this same principle, you're not going to see much effective resolution change for text when going from color to grayscale, so there's no real need to change font size when that occurs. And a good thing too, since I don't believe that event goes out on dbus. This goes for the rest of the UI too, though there's some nonlinearity involved due to the color sampling at small sizes. 16 pixel square icons won't work, but 64^2 might still look reasonable. The big thing if you want grayscale mode to work is to pick colors with different luminances.
From later discussion: design for bigger UI elements and high contrast. 33% is a reasonable scale factor.
For the programmer
The frame buffer is always 1200x900, 200 dpi. Always. What that 200dpi looks like varies a great deal depending on lighting. Lit externally, you see the grayscale pixels on a 1/200 inch grid. Lit internally (by the backlight), the display gains color. Depending on the ratio of external to internal lighting, the pixels vary from pure gray (black-to-white), to tinted, to pure color (black-to-... red, green or blue, depending on the pixel).
Software that uses color has to care about the color "mode" (an unfortunate term, since it's a continuum) because of appearances. In grayscale, a white pixel looks just like its white neighbors. In color, it very much doesn't. If you draw a light-gray line one pixel wide, it may look fine in pure grayscale, and oddly dashed and colored in pure color. And in between... in between. Same thing for fonts. The smallest font you can read in pure grayscale may not be readable in pure color. In between, it might be readable but with color artifacts. Visually, the effect is that you have lower resolution to play with, so your software, intending to be readable, has to draw small things bigger; either all the time, or by noticing the current backlight/sunlight context and adjusting. It can make things bigger by scaling everything (overkill, but Cairo makes it simple), or scaling up only the small things. In practice, the tricky things are small fonts and thin (1-3 pixel) diagonal (positive slope) lines.
The DCON has three possible modes: monochrome, color swizzled not antialised, and color swizzled antialised. (Actually there are more, like video pass-thru, but we'll skip those). Using sugar or olpc-hardware-manager to set /sys/devices/platform/dcon/output = 0 (color) gives one of the two color modes, no one knows which. It's not clear whether there is a knob to get the other one.
Once security is implemented, /source may become inaccessible? Then activities like Read would have to find some other way to say "ok, no more changes anticipated for a while - start saving power". /output is expected to remain accessible.
For the artist
Appearance will change with lighting conditions. L a b and Munsell color pickers and palettes are helpful for choosing colors. The xo can be colorful. You just have one extra consideration, iso-luminance, to manage.
- We need additional links to Lab or Munsell FOSS/web color pickers, and palettes. And a less-brief description of why. MitchellNCharity 10:49, 24 June 2007 (EDT)
- A Munsell-based palette. Munsell it unfortunately perceptually smushed.
Todo
other things which should be mentioned:
- The Browse activity magnifies webpages, since many assume something more like 75 dpi than 200 dpi. (how much is the zoom?)
- The DCON plays games to minimize color artifacts.
- There are some "effective resolution in color" estimates at the end of Talk:Hardware_specification#Display_characterization_.28as_we_outsiders_understand_it.29.
- There is some old software around to fake what a screen image might look like in color. But it doesn't do DCON optimizations.
- Emphasize "can read in sunlight", and why, in contrast to all other laptops. link to wiki 'unique xo technologies' page.
- Talk about power saving, including turning down refresh rate, and dynamically turning off sections of the screen.]
- Mention display simulator and GTK for OLPC (and it's flaws).
- pixel square is 0.127mm x 0.127
- include http://en.wikipedia.org/wiki/Image:LCD-olpc.png
- ... what else?
LRGB->RGB utility fuction
I think it would be very useful to have an L RGB->L (discard L)ab->RGB python utility function. So you can simply say "give me a color like rgb, but which has a mono value of g". Then code could then work in familiar rgb terms, and grayscale values would be explicit rather than implicit in rgb choice. MitchellNCharity 11:43, 24 June 2007 (EDT)
See also
- Hardware specification#Display
- DCON and its File:DCON Specification, V0.8.odt
- Dealing with Dual-Mode Display
- Talk:Hardware_specification#Display_characterization_.28as_we_outsiders_understand_it.29 Warning - this has some mistakes.
- Munsell
- #1017 has some discussion of the color pipeline