I am Charmie

メモとログ

2016-05-01から1ヶ月間の記事一覧

OpenCV 3.1.0 on Ubuntu 14.04

cmakeのバージョンを3.1.3以上にする howto With QTのチェックを外す

CMake 3.2 installation on Ubuntu 14.04

Ubuntu package manager still installs CMake 2.8 on Ubuntu 14.04. The following is a solution installing newer version of it. [code lang="bash"] sudo apt-get install software-properties-common sudo add-apt-repository ppa:george-edison55/cma…

Notepadqq on Ubuntu with Qt 5.6

Notepadqq is a Notepad++ like editor for Ubuntu. How to install: [code lang="bash"] sudo add-apt-repository ppa:notepadqq-team/notepadqq sudo apt-get update sudo apt-get install notepadqq [/code] Notepadqq shows a pop-up window saying that…

Remote Desktop Environment (RDP) installation no Ubuntu 14.04

xrdp and lxde enables remote desktop access to Ubuntu from Windows. [code lang="bash"] install sudo apt-get install xrdp sudo apt-get install lubuntu-desktop lxde settings echo lxsession -s LXDE -e LXDE > ~/.xsession change crypt_level fro…

install Anaconda for all users on Ubuntu 14.04

Change the install location from default directory to another directory where all users can access. In my case, : default install directory: /home/oyamada/anaconda2 customized install directory: /opt/anaconda/anaconda2 Add the customized i…

setup virtual environment (Ubuntu 14.04) on Windows 10

The procedure is like install VirtualBox install Vagrant (ver. 1.8.1) setup Vagrant You can see a list of available OS here. The above 3rd step is executed via command prompt as follows: [code lang="bash"] install OS vagrant box add ubuntu…

Keras deep learning library installation on Ubuntu 14.04

[code lang="bash"] conda update conda conda update anaconda conda update --all conda install mingw libpython pip install --upgrade --no-deps theano pip install keras [/code]

Keras deep learning library installation on Windows

Keras, which works with either TensorFlow or Theano, is a library for using deep learning in Python. [code lang="bash"] step 1 prepare for the installation conda update conda conda update anaconda conda update --all conda install mingw lib…

関数ポインタと関数オブジェクト

関数ポインタと関数オブジェクトであれば,関数オブジェクトを使用した方が高速に動作する可能性があるそうだ. 原因は,関数オブジェクトではoperator()の呼び出しがinline化される一方で,関数ポインタが必ずinline化される保証がないからだそうだ.コンパ…