W Randolph Franklin home page
... (old version)
ComputerGraphicsFall2009/ home page Login


Answers in BLUE

Due in class Tues Sep 9, 2009.

  1. Last Friday I mentioned that most of us see in 3 colors. (Colorblind deficient people in see 2 or 1.) However, it seems that a small fraction of people can see in 4 colors. Do some research on the web to answer this: (20)
    1. Are these tetrachromatic people either sex, or mostly (or all) men, or mostly (or all) women?
      Tetrachromats are mostly women.
    2. Why (in 50 words or less)? The X Chromosome contains the 2 cone cell pigment genes. Since women have 2 X-chromosomes,
      they have the possibility of carrying 4 different cone cell pigment genes.There are two slightly different genes for the green cones, sensitive to different frequencies.
  2. Imagine that you are creating a film that is 2 hours long, with 24 frames per second. Each frame is 2000x3000 pixels. Each pixel uses 3 bytes of storage (before compression). (30)
Data given: 2 hours, 24 frames/sec , 2000x3000 /frame and 3bytes/pixel
  1. How many pixels does the movie contain?
    total pixels= 120(mins)*60(sec)*24(frames)*2000*3000=1.0368x10^12
  2. If you can compress the data by a factor of 10, so that each pixel takes only 0.3 bytes, how much storage will\ the movie take?
    space required=1.0368x10^12 * 3/10 = 3.1104x10^11
  3. How many DVDs, at 4.7x109 bytes each is that?
    no. of DVD's=3.1104x10^11/4.7*10^9 = 66.178 = >67 DVD's
  4. If the movie is being streamed as you watch it, how many bits per second are needed?
    reqd bits/sec for movie (uncompressed) = 24(frames/s)*2000*3000 (pix/frame)*3
    I fill I fill I filll I fill I fill I fill I fill = 4.32*10^8 *8= 3456Mbits/s
    Ifill I fill I I fill I fill I(compressed) = 4.32*10^7 *8 = 345.6Mbits/s
  5. Comment on the numbers I gave you to work with. Are they reasonable?
    On DVD's videos can be stored in NTSC (720x480) or PAL (720x576) or HDTV (1280x720 or 1920x1080) formats,\ considering such formats the specified format is not standard. These numbers are not reasonable for the standard\ video recording. They are reasonable but only for customized video recordings i.e. theatrical releases, military imaging which have high resolution capability.

3. Write a program to create the logo for the Target store (a small red circle inside a large red ring.) I don't care if your circles look polygonal. You decide what OpenGL primitive to use, and how to handle the fact that the ring is hollow.(30)

?attredirects=0

4. Why is ray tracing not compatible with the graphics pipeline? (20)

Ray tracing works on on a pixel-pixel basis whereas a graphics pipeline works on a vertex-vertex basis. Ray tracing is similar to the graphics pipeline except instead of applying reflection models we calculate the shadow rays from the intersection-surface point to the source. Also, the fact being ray tracing takes more amount data processing time to do the same. (We might also have to do hidden-surface calculations in the case of ray tracing).