6

Artifacting

titlebar.gif

Judson Pewther


These tools for exploring artifacting can create some of the most beautiful graphics you've ever seen from your Atari.

Even if you are not already familiar with the phrase television artifacts,you have probably noticed that the colors of points and lines drawn in Atari's graphics mode 8 are not always what they are supposed to be. (False colors may also appear in graphics mode 0.)

Although the BASIC Reference Manualclaims that only "one color and two different luminances" are available in GRAPHICS 8, in fact six distinguishable color/luminance combinations are possible because of TV artifacting.

While the BASIC Reference Manualdoes not mention this very interesting fact, it is fully documented in De Re Atari,Appendix IV, which gives the definition: "The term TV artifacts refers to a spot or 'pixel' on the screen that displays a different color than the one assigned to it." And, as further explained, TV artifacts are caused by the way in which color and luminance information is modulated onto an NTSC television signal.

Let's summarize the effects of artifacting in GRAPHICS 8:

What colors are actually produced? This can depend on the particular TV monitor being used and on the exact setting of its controls. The setting of the tint control will make the biggest difference.

The major effects of plotting white (the assigned color) pixels on a black background are summarized in the following table. N is the number of horizontally contiguous white pixels. X is the X-coordinate(s) of these pixels in terms of "even" and "odd." COLOR is the approximate actual color displayed by these pixels, assuming normal settings on the TV monitor.

N
1
1
2
2
3
4
X
even
odd
even-odd
odd-even
-
-
Color
green
blue
orange
light blue
nearly white
white

The Table Illustrated

Program 1 illustrates artifacts by drawing two series of nearly vertical white lines on a black background. Colored horizontal bands are produced in accordance with the rules in the previous table. No actual white is produced in this example, because there are at most only pairs of horizontally contiguous "white" pixels. Notice in particular that the solid-color bands are created either because all the "even" pixels give a solid green, or all the "odd" pixels give a solid blue.

Lines 199 to 250 can be added to allow the user to easily step the assigned hue through all 16 possibilities, while preserving the 0 luminance setting for the background and the 14 luminance setting for the plotted lines. The background color may be nearly invisible because it is at 0 luminance, but the colors in the horizontal bands will change greatly. Remember that in GRAPHICS 8 the hue associated with the COLOR 1 statement and with the lines that were drawn is the background hue as determined in the SETCOLOR 2,hue,0 statement. Even when we are not seeing the assigned hue because of TV artifacting, changing the assigned hue changes the displayed hues.

Best results are obtained by adjusting TV brightness and contrast to a low or minimum value. TV color may be boosted somewhat, but too much boost blurs the picture. However, the tint control may be adjusted freely from one extreme to the other to vary the colors. These comments apply generally to any program where TV artifacts are used.

TV artifacts are really a failure of resolution, but a very interesting failure. And the colors produced can add dazzle to graphics art programs. Although these false colors may at times be annoying, and although the failure in horizontal resolution is certainly an annoyance, TV artifacts compensate considerably for the fact that only two intensities of a single color are officially available in GRAPHICS 8.


Moire Patterns

Program 2 is a graphics art program which relies on artifacts for its beauty. It also makes use of a technique for creating enhanced moire patterns.

To see a somewhat different moire pattern with a more uniform distribution of light and enhanced contrasts in the details, add the following line and run the program again:

50 COLOR 0:PLOT 159,0:DRAWTO X+1,191

This program step draws a black line which cancels out half (or more) of the "white" pixels which were plotted in the previous step, line 40. This basic idea is varied and elaborated in Program 3, "Pyramid"

Program 3 is designed so that slow typists (like myself) will not have to type in the whole thing just to see what it does. The first half of the program (lines 100 through 470) is almost entirely for the purpose of letting the user control the parameters of the pattern in order to see better how the various effects are achieved. To eliminate some typing, replace the first half of the program with the single line: 100 GRAPHICS 24. Then begin typing at line 500.

The program is essentially self-explanatory, but it might be worthwhile to point out a few things. Lines 500 to 545 select a set of random parameters for the pattern that is about to be drawn. LIGHT and DARK are associated with the subroutine for drawing a set of vertical lines at line 1000 in the program. They are dual purpose variables: if equal to 0 or 1, then a set of "even" or "odd" lines will be drawn, but if greater than 1 the subroutine will not be called. So the probability is .25 that LIGHT will call the subroutine, since it is a random integer ranging from 0 to 7. The same applies to DARK.

LIGHT lays down a colored background for the pattern, but has a slightly different effect if the old pattern has not been wiped out by line 730. DARK erases all colors in the pattern except for black and another color, just before the program recycles to select a new set of random parameters.

Line 535 works in conjunction with line 740 to insure that the new values of MODE, APEX, and SPACE are not exactly the same as the old values.

Line 550 prevents the attract mode from setting in as long as the program continues to recycle through new variations.

Except for the user option to hold a pattern indefinitely (lines 450 and 720), there are no forced time delays. It takes about a minute for the program to make one cycle, which should be more than enough time to observe a variation of the pattern. If you wish to freeze a particular pattern, program execution may be stopped and restarted by hitting CTRL 1.

Program 4 illustrates TV artifacts by way of a dense pattern of dark lines drawn on a light background. Equally spaced rays are drawn from each of the four corners of a square to the opposite two sides. The light-colored pixels left over after this process is finished form a cross made out of four trumpet-shaped segments, corresponding roughly to what my dictionary identifies as a "formee" cross. The display is quite dazzling if one first adjusts for a pleasing color combination, and then turns out the lights in the room.


Program 1. Artifacts

Download P196L1.BAS (Saved BASIC)
Download / View P196L1.LST (Listed BASIC)

Program 2. Simple Moire

Download P196L2.BAS (Saved BASIC)
Download / View P196L2.LST (Listed BASIC)

Program 3. Pyramid

Download P196L3.BAS (Saved BASIC)
Download / View P196L3.LST (Listed BASIC)

Program 4. Cross

Download P199L4.BAS (Saved BASIC)
Download / View P199L4.LST (Listed BASIC)

Return to Table of Contents | Previous Section | Next Section