Homework 12

Name:

Period:

Academic Integrity Statement: I certify this work is my own work and I have only received help from the instructor. I understand that submitting code which is the work of other individuals is a violation of the honor code. I also understand that if I knowingly give my original work to another individual is also a violation of the honor code.


In [1]:
%matplotlib inline

In [2]:
from __future__ import print_function, division
import cv2         # opencv itself
import numpy as np # matrix manipulations
from matplotlib import pyplot as plt           # this lets you draw inline pictures in the notebooks
import pylab                                   # this allows you to control figure size 
pylab.rcParams['figure.figsize'] = (10.0, 10.0) # this controls figure size in the notebook

In [ ]:
#your python code here