View rely on http://www.pointclouds.org/downloads/windows.html
Download msi and install
https://cmake.org/download/
- Source code from www.boost.org/users/download/
- Unzip, and open
Developer Command Prompt for VS2015
cmd window
View rely on http://www.pointclouds.org/downloads/windows.html
Download msi and install
https://cmake.org/download/
Developer Command Prompt for VS2015
cmd windowcurl -d "DDDDD=UserName&upass=Password&v46s=1&0MKKey=" "http://lgn.bjut.edu.cn/" |
Modify C:\Users\<Username>\.docker\machine\machines\default\config.json
docker-machine restart
eval $("C:\Program Files\Docker Toolbox\docker-machine.exe" env)
#!/bin/bash | |
# SS-REDIR TCP | |
iptables -t nat -N SSREDIR_TCP | |
# Bypass ssserver and LAN | |
iptables -t nat -A SSREDIR_TCP -d ===server ip=== -j RETURN | |
iptables -t nat -A SSREDIR_TCP -d 0.0.0.0/8 -j RETURN | |
iptables -t nat -A SSREDIR_TCP -d 10.0.0.0/8 -j RETURN | |
iptables -t nat -A SSREDIR_TCP -d 127.0.0.0/8 -j RETURN | |
iptables -t nat -A SSREDIR_TCP -d 169.254.0.0/16 -j RETURN | |
iptables -t nat -A SSREDIR_TCP -d 172.16.0.0/12 -j RETURN |
from __future__ import division | |
import torch | |
import sys | |
import math | |
from PIL import Image, ImageOps, ImageEnhance, PILLOW_VERSION | |
try: | |
import accimage | |
except ImportError: | |
accimage = None | |
import numpy as np |