Skip to content

Instantly share code, notes, and snippets.

View AlexanderFabisch's full-sized avatar

Alexander Fabisch AlexanderFabisch

View GitHub Profile
@kekeblom
kekeblom / stray_visualize.py
Created March 10, 2021 19:18
A script to visualize data collected with Stray Scanner http://keke.dev/blog/2021/03/10/Stray-Scanner.html
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.
@AlexanderFabisch
AlexanderFabisch / git.md
Last active October 18, 2016 16:04
Working with git
@mblondel
mblondel / svm.py
Last active April 21, 2024 13:41
Support Vector Machines
# 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)