sudo apt-get install nmap iptraf tcpdump dstat ngrep mtr nc lftp irssi iotop
sudo apt-get install git-core tmux mc htop vim zsh lsof
#!/usr/bin/env python | |
import requests, json, sys | |
import geojson | |
#six degrees of precision in valhalla | |
inv = 1.0 / 1e6; | |
#decode an encoded string | |
def decode(encoded): |
git clone git://github.com/jedisct1/libsodium.git | |
cd libsodium | |
git checkout tags/1.0.0 | |
./autogen.sh | |
./configure && make check | |
sudo checkinstall --install --pkgname libsodium --pkgversion 1.0.0 --nodoc | |
sudo ldconfig | |
cd .. | |
git clone git://github.com/irungentoo/toxcore.git |
// Author: @patriciogv ( patricio.io ) | |
#include <stdio.h> // standard input / output functions | |
#include <iostream> | |
#include <sstream> | |
#include <stdlib.h> | |
#include <string.h> // string function definitions | |
#include <unistd.h> // UNIX standard function definitions | |
#include <fcntl.h> // File control definitions | |
#include <errno.h> // Error number definitions |
Probably the most straight forward way to start generating Point Clouds from a set of pictures.
VisualSFM is a GUI application for 3D reconstruction using structure from motion (SFM). The reconstruction system integrates several of my previous projects: SIFT on GPU(SiftGPU), Multicore Bundle Adjustment, and Towards Linear-time Incremental Structure from Motion. VisualSFM runs fast by exploiting multicore parallelism for feature detection, feature matching, and bundle adjustment.
For dense reconstruction, this program supports Yasutaka Furukawa's PMVS/CMVS tool chain, and can prepare data for Michal Jancosek's CMP-MVS. In addition, the output of VisualSFM is natively supported by Mathias Rothermel and Konrad Wenzel's [SURE]
This tutorial is partialy based on Yuriy’s Czoli article ‘Processing LiDAR to extract building heights’.
brew install postgis
cam.setPosition( cam.getPosition()+(targetPos-cam.getPosition())*0.01 );
cam.lookAt(targetPos);
First :
git submodule add ...
Then:
git clone ...
git pull && git submodule init && git submodule update && git submodule status
git submodule foreach git checkout master