I am Charmie

メモとログ

2013-10-01から1ヶ月間の記事一覧

install mlpack 1.0.1-1 on ubuntu by package manager

mlpack version 1.0.1.1 can be installable with this unofficial ppa. sudo add-apt-repository ppa:sterling/mlpacksudo apt-get updatesudo apt-get install libmlpack-dev libmlpack1 mlpack-bin mlpack-doc

install boost 1.53 on ubuntu by package manager

Official repository supports boost installation. However, its version is 1.48.0 not latest one. Fortunately, I found unofficial repository here. sudo add-apt-repository ppa:apokluda/boost1.53 sudo apt-get update sudo apt-get install libboo…

C++ library and MatLab toolbox for Active Appearance Model

this is a note about free C++ libraries and MatLab toolboxes for Active Appearance Model. C++ libraries: DeMoLib implements several AAM fitting methods. Difference from other libraries is that DeMoLib provides several AAM fitting methods s…

compile ITK with GDCM

compilation ITK 4.4.2 with GDCM cannot be completed due to small bug, which is very easy to fix. The problem is that duplicate symbol error to openjpeg library is detected.Following the discussion here, a cmake file causes the problem. A p…

debug with Qt Creator + CMake

use the following arguments:-DCMAKE_BUILD_TYPE=Debug

unix command: tee

tee command is used to save output of a program shown on a terminal. For example, the following command saves result of ls command as a file text.txt ls | tee test.txt To save error output, add the following option: make 2>&1 | tee make.log

CMake

cmake: command line interface.ccmake: terminal GUI available on unix-like systems.cmake-gui: Qt-based GUI.

Medical image modalities

Anatomic information: Computed Tomography (CT), Magnetic Resonance Imaging (MRI), UltraSound (US), and X-rayFunctional information: Position Emission Tomography (PET) and Single Photon Emission CT (SPECT)