For computers to display graphics, the graphics need to be represented in a format that a computer can process, that is, as numbers. In this section we consider the easiest case, namely black and white images that are given in a raster of pixels and then converted into a sequence of numbers. For early computer games this process was done by hand as illustrated in Figure 12.1.
Figure12.1.For the game Ant Attack (by Sandy White, 1983) graphics were designed on squared paper, each filled square taken as a binary \(1\text{,}\) each empty square as \(0\text{,}\) converted into hexadecimal representation and then typed in, see http://sandywhite.co.uk/fun/ants. You can play Ant Attack at http://torinak.com/qaop#!antattack. Hint: v run, c jump, m turn left, , turn right, sdfg grenade, 0pspaceenter change view
We describe how an image that consists of pixels (the little rectangles that are the points in a raster image) can be encoded into numbers. In the video in Figure 12.2 we give first examples.
Figure12.2.Applications of Other Bases (Image to Numbers)by Matt Farmer and Stephen Steward
In Figure 12.4 the image on the left is converted to the decimal numbers given on the right. We describe the steps in detail.
Strategy12.1.Image to numbers.
To convert an image to a list of decimal numbers we proceed as follows.
(a)
We start with an image that consists of black and white pixels.
Table with four columns, labeled (a) image, (b) bitmap, (c) binary (with leading 0s), (d) binary, (e) decimal.
The first column contains a four by four raster with black and white pixels. The second column contains a four by four raster in which cells that were black in the first column contain ones and the positions that were white in the first column contain zeros. The third and fourth column contain four numbers in binary representation and the fifth column contains four numbers in decimal representation.
First row: the pixels in the raster in the first column are white, black, black, white; the entries in the raster in the second column are zero, one, one, zero, the binary number with leading zeros in the third column is zero one one zero, the binary number in the fourth column is one one zero, the decimal number in the fourth column is six. Second row: the pixels in the raster in the first column are black, white, black, white; the entries in the raster in the second column are one, zero, one, zero, the binary number with leading zeros in the third column is one zero one zero, the binary number in the fourth column is one zero one zero, the decimal number in the fourth column is ten. Third row: the pixels in the raster in the first column are white, black, black, black; the entries in the raster in the second column are zero, one, one, one, the binary number with leading zeros in the third column is zero one one one, the binary number in the fourth column is one one one, the decimal number in the fourth column is seven. Fourth row: the pixels in the raster in the first column are black, black, white, black; the entries in the raster in the second column are one, one, zero, one the binary number with leading zeros in the third column is one one zero one, the binary number in the fourth column is one one zero one, the decimal number in the fourth column is thirteen.
Figure12.3.Encoding the image on the left, as a bitmap (black pixels are 1s, white pixels are 0s), in binary, and in decimal representation. Each number represents one row in the image.
Figure12.4.Encoding the image on the left, as a bitmap (black pixels are 1s, white pixels are 0s), in binary, and in decimal representation. Each number represents one row in the image.
We can combine the steps described above into one step.
First, we write the powers of two from right to left over the columns of the image. To compute the decimal representation of each row, add the numbers you wrote over the columns for which there is a black pixel in the row. In Figure 12.5 we apply this method to the example from Figure 12.3.
Table with two columns, the first column is labeled image and the second column is labeled computation and decimal representation.
The first column contains a four by four raster with black and white pixels. The columns of the raster, from left to right, are labeled 1, 2, 4, 8.
First row: the pixels in the raster are white, black, black, white; the computation and decimal representation is 4+2=6. Second row: the pixels in the raster are black, white, black, white; computation and decimal representation is 8+2=10. Third row: the pixels in the raster are white, black, black, black; computation and decimal representation is 4+2+1=7. Fourth row: the pixels in the raster are black, black, white, black; computation and decimal representation is 8+4+1=13.
Figure12.5.Encoding the image on the left, as a bitmap (black pixels are 1s, white pixels are 0s), by writing the place values of the binary digits over the columns of the raster. Recall that the place values of a four digit binary number from right to left are \(2^0={\color{blue}1}\text{,}\)\(2^1={\color{blue}2}\text{,}\)\(2^2={\color{blue}4}\) and \(2^3={\color{blue}8}\text{.}\)
In Figure 12.6 observe how the representation of the rows of the image on the left changes as you change the image.
Figure12.6.Image to numbers interactive. Click on the rectangles on the left to toggle between black and white. Each row is converted to a binary number where \(0\) represents white and \(1\) represents black and to decimal representation. The powers of two for each column are given in blue. Recall that
So, the representation of the image by decimal numbers is \(7\text{,}\)\(4\text{,}\)\(6\text{,}\)\(4\text{,}\)\(4\text{.}\)
In Checkpoint 12.9 represent an image by a sequence of decimal numbers.
Checkpoint12.9.Represent image by numbers.
0
0
0
0
1
0
0
1
0
0
1
0
0
1
1
0
1
0
0
0
0
1
0
1
1
0
0
1
0
0
1
0
1
0
0
1
Represent each row of the bitmap by a decimal number. When converting to decimal let the most significant binary digit be on the left.
When recovering an image from its representation by a sequence of decimal numbers, we first convert the decimal numbers to binary representation and then filling in the pixels. Usually writing the binary numbers with leading zeros so that they all have the same length gives a good idea what the image looks like.
Problem12.10.Image represented by numbers.
Which of the images in Figure 12.7 can be encoded as \(1\text{,}\)\(1\text{,}\)\(3\text{,}\)\(1\text{,}\)\(7\text{,}\) when \(1\) represent a black pixel and \(0\) represents white ?
Solution.
We must work in the opposite direction from the previous problem to answer this question. The decimal numbers are given. First, we change those decimal numbers into binary numbers:
Now, we see that the decimal numbers 1,1,3,1,7 encode Figure 12.7.(d).
In problems that ask you to recover an image from its decimal representation, we often ask you which letter is shown in the image. Checkpoint 12.11 is such a problem.
Checkpoint12.11.Letter in image represented by numbers.
An image showing a letter is encoded into numbers.
In the encoding a 0 corresponds to a white and a 1 to a black pixel. When converting to decimal the most significant binary digit was on the left.