Change Contents of the Bubble
Welcome to CS1315. Click on the python to add comments.


This page removed for FERPA compliance
View this PageEdit this Page (locked)Uploads to this PageHistory of this PageHomeRecent ChangesSearchHelp Guide

Homeworks-Spring 2005

Important Note:

On homeworks, you are encouraged to collaborate with your fellow students. However, if you do work with others, you must list the people you worked with in the "Notes to TA" area of the JES turnin window.

BE SURE TO TURN IN SOMETHING THAT WORKS! If your program fails with an error, it becomes very hard for the grader to give you any points at all! Turn in something that works, even if it doesn't do EVERYTHING, and you will get partial credit. If your program stops with an error without getting anything done, we are hard pressed to give you any points at all.

Homework 1:


Write a function named posterize (and save it in a file named posterize.py) to accept a picture as input, and posterize it – reduce the number of colors. You'll do this by changing the picture's pixels as follows:

Please share your results by uploading the image to the Spring 2005 HW1 Posters gallery.

Turn in your program via JES as "hw1".

Ask questions on Spring 2005 Homework 1 Questions

Homework 2:


Write a function named makeCollage in a file named makeCollage.py to create a collage of the same image at least four times fit onto the 7x95in blank JPEG. (You are welcome to add additional images, too.) One of those four copies can be the original picture. The other three should be modified forms. One of these forms MUST BE a posterized version of the original. On the other two, you can do any of

After composing all four pictures (or REMOVED), you must mirror the ENTIRE canvas, in some direction: Horizontally, vertically, diagonally.

Your single function should make all of this happen–all of the effects and compositing must occur from the single function makeCollage(). IT IS PERFECTLY OKAY FOR makeCollage() TO USE OTHER FUNCTIONS! Your TA will only setMediaPath() and will put all your input pictures in her mediasources directory, and then execute makeCollage()–and will expect to see a collage get generated

Turn in your code, your original image (or images), and your resultant image as "hw2".

Please share your results by uploading the image to the Spring 2005 HW2 Collages gallery. (This isn't a requirement, but we'd love to see them!)

Ask questions on Spring 2005 Homework 2 Questions


Homework 3:


Write a function named audioCollage in a file named audioCollage.py to generate an audio collage. You must compose together at least two separate sounds (IN TWO SEPARATE FILES), and your result must be at least SIX seconds long. One of the sounds must appear at least TWICE where it is changed in some way. We must be able to hear your collage from the returned sound. You must create a sound object that has all these pieces in it.

You have a variety of ways that you can change sounds:

For example, if I composed the words "Mark" and "Guzdial" so that the sound said "Mark kraM Guzdial" (and lasted at least SIX seconds) that would meet the requirements of the assignment.

You can use any sounds you want. You can use the sounds in the MediaSources directory, the words in the Speech folder on your class CD, or record your own sounds (with the MediaTools application, or with Windows Sound Recorder). (Hint1: Remember that zeroes for the sample values generate silence or pause.) (Hint2: Remember that the sampling rate is the number of samples per second. From there, you should be able to figure out.)

When you do your turnin, you MUST include your input sounds! It would probably be a good idea to turn in your audio collage, too, so that your TA can hear what it's supposed to sound like, even if your program doesn't work for the TA for some reason.

Be sure to access your sounds in your program using getMediaPath.

Turn in your program via JES as "hw3".

Please share your results by uploading the sounds (use writeSoundTo) to the Spring 2005 HW3 Audio Collages gallery.

Ask questions on Spring 2005 Homework 3 Questions


Homework 4:


Given a folder with images and sounds in it, create an index HTML page with links to each image and sound.

You will write a function called makeLinksREMOVED that takes a string which is the path to a directory. You will create a page in that folder named index.html. Index.html should be an HTML page containing a link to every JPEG and WAV file in the directory.

For each image, you will display a half-size version of the image (by setting height="someNumberHERE" in the image tags). YOU WILL NOT GENERATE THESE IMAGES! Clicking on these half-size versions should take the viewer to the full-size picture. The anchor in the link to each full-size picture should be the half-size image.

For each sound, create a TWO SECOND version of the sound–just the first second and the last second. If the sound is less than or equal to two seconds in length, do not create the shortened form. You should save this shortened form of the sound to the same directory as the actual sound, named something like "short_"+filename. For each sound, have a link to the short form where the anchor says "short", and a link to the long form where the anchor says "full".

Turn in your program via JES as "hw4". The function name should be "makeLinksREMOVED" and the program file name should be "makeLinksREMOVED.py".

Ask questions on Spring 2005 Homework 4 Questions


Homework 5:


Build an animation of at least three seconds in duration (45 frames at 15 fps, or 75 frames at 25 frame per second–you must use a frame rate exceeding 10 frames per second). You must have at least THREE things in motion during this sequence. You must use at least one composited image (a JPEG image that you scale (if necesary) and copy into the image), one drawn image (a rectangle or line or text or oval or arc – anything that you draw), and a third image of your choice. One of your animated objects must appear MIDWAY through the animation. In other words, something has to START being drawn into the frames start at frame, say, 10, and then continue to the end of the animation.

You may NOT use a blank white background for the frames! You must use a JPEG for a background that has REMOVED than one color in it.

Turn in your program and the composited image(s) (any images that you copied INTO your frames) via JES as "hw5". (You do not have to attach all your frames!) Your file must be named "myMovie.py" and your function must be named "myMovie" and accept a directory as input where the frames should be stored.

You must use REMOVED than one function in your solution. The main function will be "myMovie" that takes input of a string that is a directory path. You must use at least one sub-function, so your file "myMovie.py" will contain the function myMovie() and at least one another.

EXTRA CREDIT: Five points extra credit will be awarded to animations where the elements are thematically related. Just moving a red rectangle on a green and white screen is not thematically related. See the Yogi, Hasselhoff, Tiger Woods, Guzdial talking, REMOVED the dog, Mario jumping, whee, dog-on-the-beach, or Pooh and Tigger movies at Fall2003 HW5 Movies as examples of thematically-related movies.

Feel free to post your movies to Student2765 for sharing with others.

Ask questions on Spring 2005 Homework 5 Questions


Homework 6:


http://www.foxnews.com/ is a popular site that lists headline news items. You are to write a function (named "foxNewsTickerTape") that will input a directory as a string then:
You must use REMOVED than one function in your solution. The main function will be "foxNewsTickerTape" that takes input of a string that is a directory path. You must use at least one sub-function.

Turn in your code as "hw6". Your filename should be "foxNewsTickerTape.py"

Ask questions on Spring 2005 Homework 6 Questions

Links to this Page