11.9. Chapter 11 Exercises¶
Below is a selection of images that you can use in the programs in this section.
beach.jpg | baby.jpg | vangogh.jpg | swan.jpg |
puppy.jpg | kitten.jpg | girl.jpg | motorcycle.jpg |
gal1.jpg | guy1.jpg | gal2.jpg |
Note
Remember that it can take a bit of time to process all the pixels in a picture! Check for errors below the code if it is taking a long time, but if you don’t see any errors just wait.
Fix 4 syntax errors in the code below so that it correctly sets the red in all pixels to 0.
The code below makes the image have a green-blue tint. Change 1 thing in order to make it have a red tint instead.
Fix the indention below to correctly set the red to the green, the green to the blue, and the blue to the red.
Fix the 5 errors in the code, so that the Red pixels get the value of the green, the green get the value of blue, and the blue get the value of the red. (The cat should look purple and gray)
Fill in the missing code on lines 9, 12, and 18 below to set the red to half the original value in all pixels in the picture.
Complete the code in order to set the blue value to an eighth of the green value plus an eighth of the red value.
Fix the indention in the code below so that it correctly increases the red in each pixel in the picture by 1.5.
This code is supposed to make the picture completely black; however, it is taking forever when it should only take a few seconds. Fix the code (without adding anything new) so that it runs in a few seconds.
Fix the code below to correctly set the green and blue values to 0.75 times their current values.
The code below sets all the pixels to half their original values with one for loop. Change the code so it uses 2 for loops that utilize the range function (1 for loop should be nested in the other).
Change the following code to set the red to 0 for all pixels in the left half of the picture.
The code below makes the whole image have a blue-green tint. Change the code so that it makes an only blue tint in the bottom left corner.
Change the code below to set the red value in the pixels in the bottom half of the picture to 0.
The code below makes the whole image seem red. Change it, so that only every 5 pixels get changed, so that it will look like a red grid.
Change the following code into a procedure to keep only the green values in all pixels in a picture.
A grayscale picture is when the red, green, and blue value of a pixel are all equal to the average of the original pixel value. Write the code to turn the left half of an image into gray scale.
Define a procedure to negate an image. See Image_Negate_Quarter from Chapter 11 section 7 for how to create a negative of an image. Pass the image to the procedure. Do the import, create the image, call the prodecure, and show the result.
Write code that takes the top half of an image and replicates it in the bottom half.
Write a procedure to mirror an image from left to right around a vertical line in the middle of the image. Pass the image to the procedure. Do the import, create the image, call the prodecure, and show the result.
Write code that flips the image across a horizontal line.