Complex git operations and commands that I always forget...
This file contains 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
# Mathieu Blondel, September 2010 | |
# License: BSD 3 clause | |
import numpy as np | |
from numpy import linalg | |
import cvxopt | |
import cvxopt.solvers | |
def linear_kernel(x1, x2): | |
return np.dot(x1, x2) |
This file contains 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 open3d as o3d | |
import numpy as np | |
from scipy.spatial.transform import Rotation | |
from argparse import ArgumentParser | |
from PIL import Image | |
import skvideo.io | |
description = """ | |
This script visualizes datasets collected using the Stray Scanner app. |