This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import pandas as pd | |
from nbgrader.api import Gradebook | |
from nbformat import write as write_nb | |
from nbformat.v4 import new_notebook, new_markdown_cell | |
def gradebook(): | |
if os.environ.get('NBGRADER_DB_URL', ''): | |
gb = Gradebook(os.environ['NBGRADER_DB_URL']) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import numpy as np | |
import scipy.misc | |
import scipy.io | |
import matplotlib.pyplot as plt | |
def reconstruct_3d(name, plot=True): | |
""" | |
Homework 2: 3D reconstruction from two Views |
OlderNewer