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
#pragma once | |
// TODO: Consider making this using the newer vtkAbstractWidget and | |
// vtkWidgetRepresentation | |
// | |
#include "spsInteractionWidgetsModule.h" // For export macro | |
#include <vtk3DWidget.h> | |
class vtkActor; |
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
#!/usr/bin/env python3 | |
# | |
# Rotation-only registration of point clouds using Quaternions and Gauss-Newton | |
# | |
import numpy as np | |
from sympy import (symbols, diff, Matrix, lambdify) | |
def rot_quat(v, a): | |
""" |