Go to the source code of this file.
Namespaces | |
namespace | plot_depth_error |
Variables | |
list | plot_depth_error.csv_files = sys.argv[1:] |
tuple | plot_depth_error.err_mean = np.mean(errs, axis=0) |
tuple | plot_depth_error.err_stddev = np.std(errs, axis=0) |
list | plot_depth_error.errs = [a - b for (a, b) in zip(true_depths, observed_depths)] |
list | plot_depth_error.es = [] |
string | plot_depth_error.label = "{0} x + {1}" |
tuple | plot_depth_error.line_y_ransac = model_ransac.predict(X) |
tuple | plot_depth_error.model_ransac |
tuple | plot_depth_error.observed_mean = np.mean(observed_depths) |
tuple | plot_depth_error.reader = csv.reader(f) |
tuple | plot_depth_error.true_mean = np.mean(true_depths) |
tuple | plot_depth_error.X = np.array(xs) |
list | plot_depth_error.xs = [] |
tuple | plot_depth_error.Y = np.array(es) |
list | plot_depth_error.ys = [] |