Skip to content

Instantly share code, notes, and snippets.

View mmajewsk's full-sized avatar
🏠
Working from home

mwmajewsk mmajewsk

🏠
Working from home
View GitHub Profile
@mmajewsk
mmajewsk / install_orbslam_stuff.sh
Created July 8, 2019 00:11 — forked from ducha-aiki/install_orbslam_stuff.sh
Install ORBSLAM + python bindings
#!/bin/bash
DIR1=$(pwd)
MAINDIR=$(pwd)/3rdparty
mkdir ${MAINDIR}
cd ${MAINDIR}
conda create -y -n "NavAgents" python=3.6
source activate NavAgents
conda install opencv -y
conda install pytorch torchvision -c pytorch -y
@mmajewsk
mmajewsk / readme.md
Last active July 22, 2016 23:28 — forked from baraldilorenzo/readme.md
VGG-16 pre-trained model for Keras with Skimage

##VGG16 model for Keras (with skimage/scikit-image instead of opencv)

This is the Keras model of the 16-layer network used by the VGG team in the ILSVRC-2014 competition.

It has been obtained by directly converting the Caffe model provived by the authors.

Details about the network architecture can be found in the following arXiv paper:

Very Deep Convolutional Networks for Large-Scale Image Recognition

K. Simonyan, A. Zisserman