I am Charmie

メモとログ

2015-06-01から1ヶ月間の記事一覧

Python module installation using Anaconda for a book Programming Computer Vision using Python

[code lang="bash"] conda install -c https://conda.binstar.org/tlatorre -y pygame conda install pyopengl [/code]

Python: mutable/immutable

Pythonのオブジェクトは変更可能(mutable)なものと変更不可能(immutable)なものがある.変更可能なオブジェクトは関数内での変更が関数外でも有効となる. mutable: 辞書,リスト immutable: 数値,文字列,タプル

Python 2.7 + OpenCV 3.0.0: installation on Windows

English notes is below the Japanese one. OpenCV 3.0.0をPython 2.7から使うためのインストール手順 Pythonのインストール Python-OpenCVを動かすには,Python本体に加えて少なくともNumPy, MatPlotLibのインストールが必要. 1.1. Anacondaのインストール…

Python: startup

Python Scientific Lecture Notes(英語): Python初心者向け.コード付き.iPythonの使用を仮定.NumPy, SciPy, Sympy, Scikit-image, Traits, scikit-learnについても扱ってる. 1の一部和訳されたもの: Matplotlib tutorial(英語): MatPlotLibに関する説明…

Python installation on Ubuntu 14.04

The goal is to use Python with OpenCV under Ubuntu 14.04. The first step is to install Python and its packages. I installed a Python package manager Anaconda. [code lang="bash"] wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b3…

involve, include, consist of

A involve/include B: B is all component or some component of A. A consist of B: B is all component of A.

OpenCV VIZ module compilation with VTK in Ubuntu 14.04

OpenCV ver. 3.0 was released. I tried to compile OpenCV with VTK again and again and finally could compile it. The key was compile VTK with BUILD_SHARED_LIBS on compile OpenCV with VTK That's it!!

Polynomial fitting by linear least squares

I made a repository of C++ code that runs polynomial fitting by linear least squares.