Skip to content

Instantly share code, notes, and snippets.

View hermesespinola's full-sized avatar
:shipit:
Bazinga

Hermes Espínola González hermesespinola

:shipit:
Bazinga
View GitHub Profile
@hermesespinola
hermesespinola / Symbol.cs
Created March 29, 2017 20:50
Unity Automata Symbol
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Symbol {
private string name;
public string Name { get { return name; } }
@hermesespinola
hermesespinola / State.cs
Created March 29, 2017 20:49
Unity Automata State
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
public class State {
private string name;
// Monobehaviours
#!/usr/bin/python
#! -*- encoding: utf-8 -*-
# Python script to launch OpenMVG SfM tools on an image dataset
#
# usage : python sparse_pointcloud.py
#
# Indicate the openMVG binary directory
OPENMVG_SFM_BIN = "/opt/openMVG_Build/Linux-x86_64-RELEASE"