Code as a Liberal Art, Spring 2023

Unit 1, Tutorial 3 Homework & Unit 1 Presentations

Due: Tuesday, February 21, 8pm;
for in-class presentation: Wednesday, February 22

Create an algorithmically-generated concept collage

  1. Review the class notes for this week.
  2. Start with a concept keyword or phrase — for example: tree, food, work, peace, blue, New York City. Gather some images of this concept. You could use Google Image search, a site like Pinterest or Flickr, your own original images, or something else. You should have at least 5 images, but you could have many more. Because you are automating the process of generation here, working with many more images will not make the below steps any more difficult to follow. In fact I would highly encourage you to work with many images to fully illustrate the power of this exercise. Create a new folder with your keyword as its name and put all the images into it.

    Create a program that takes one command line argument. Assume this argument is the name of a directory. Pass the argument in to listdir() to get the list of files in that directory, and use random.choice() to randomly select 4 to 5 images from that — let's call these your "working images."

    Try to use some image filtering techniques to modify the images in some way. For example, you might set bright or dark pixels transparent. Consider experimenting with some of the pattern generation techniques from last week, but instead of setting pixel colors into a new, empty image, modify one or more of your working images. Remember that if you may be starting with an image like a JPG that does not have any alpha, you can first convert it into an image object that does:

    new_img = original_img.convert("RGBA")
    

    Then, create a new empty image, and collage your working images into it. (You can use paste() or alpha_composite()). Save this new image as a file.

  3. Once you have this functioning, run it at least three times to create different visual representations of this concept.

  4. Now create a second directory full of images for a new, second concept. Without modifying your program, run your program again on this directory simply by specifying the directory name as a command line argument. Run your code a few times again for this new concept to see representations of this concept.

Create a new folder in your student folder called "Unit 1, Tutorial 4". Inside that, put your code file, your image directories, and your output images. Clearly name your output images so they correlate with the directory of images that they're drawn from. (For example, if your concept and directory were called new-york-city/, your files might be new-york-city-1.png, new-york-city-2.png, etc.

Help

If you are feeling a little stuck and need some help getting started, I created a Github Gist with a code snippet and some explanation to help you get started. Have a look at that and let Viyan or I know if you're still confused.

Presentation plan

Have all of your material uploaded to your Google folder by Tuesday, February1, 8pm.

Since we only have 100 minutes for 18 students, we are going to do very fast "lightning presentations". You will show us your image directories and your output images, then open up your code file. Then offer a few quick comments about your work. You might share comments about your concept, formal qualities, aesthetics, or other choices. Try to refer to at least one specific, technical thing about one part of the code while it is up on the screen. For example, "on line 25, this really interesting for loop is responsible for the square pattern." This is an exercise in reading code, but also talking about it.