Get some green posterboard and take a picture of a friend in front of it. Now use chromakey to put her or him in the jungle. Or better yet, in Paris.

An inclusion of the image is all that’s required for this question


```
def chromakeyGreen(source ,bg):
for px in getPixels(source):
x = getX(px)
y = getY(px)
if (getRed(px) + getBlue(px) < getGreen(px)):
bgpx = getPixel(bg,x,y)
bgcol = getColor(bgpx)
setColor(px,bgcol)
```

Computer Science & Information Technology

You might also like to view...

Information in the form header and footer appear only when the form is printed.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Convert decimal 299 to binary, to octal, and to hexadecimal.

What will be an ideal response?

Computer Science & Information Technology

On a report, the ________ displays labels, text boxes, and other controls at the top of each page

A) page footer B) page header C) report header D) report footer

Computer Science & Information Technology

To change the caption for a field in a query, click the field in the design grid, click the _____ button on the Design tab, click the Caption box, and enter the new caption.

A. Caption B. Property Sheet C. Field Name D. Format

Computer Science & Information Technology