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...
Which of the following is not one of the major phases of the SDLC?
A. Design B. Development C. Security training D. Deployment
Computer Science & Information Technology
Cache memory today is usually external cache. _________________________
Answer the following statement true (T) or false (F)
Computer Science & Information Technology