I am Charmie

メモとログ

2012-01-01から1年間の記事一覧

make pdflatex available for IEEE VR 2013 paper format

IEEE VR 2013 specifies vgtc class for latex user. Original version of this does not work with pdflatex because vgtc.cls calls an eps file on line 619 as: \begin{center}\includegraphics{diamondrule.eps}\end{center}Simple solution for this p…

Boost Combination library

When we use Boost Combination library, input sequence should be sorted. Otherwise, the computed permutation/combination lack some of them.

Magick++: Draw a circle

Magick++ provides a sub-class DrawableCircle that draws a circle on an image canvas. We should note the crazy design of the class. The sub-class is called as image.draw( DrawableCircle(originX, originY, perimX, perimY) ); This call draw a …

Convert .mts file into image files (jpgs)

I finally found 2 ways for this.1. Using avisynth + virtualdubFollowing poisondeathray's suggestion, Install the following: haali media splitterffdshowavisynthvirtualdub Suppose our purpose is to convert "test.mts". We first create a .txt …

Magick++ (ImageMagick C++ API) install

Installation of Magick++ that is C++ API of ImageMagick. I installed ImageMagick version 6.7.7-3 with Visual Studio 2008 under Windows7 64bit. Download the source files ImageMagick web Go to Download page from left side bar and go to a mir…

Making a movie file from images using ImageMagick

convert input*.tiff to a gif file.convert -delay 20 -loop 0 input*.tiff output.gif convert input*.tiff into 300x200 resolution then to a gif file (! option doesn't keep aspect ratio). convert -delay 20 -loop 0 -resize 300x200! input*.tiff …

JabRefで日本語表示

JabRef2.7.2をインストールしてから,以前作成していた日本語文献のbibファイルの日本語が白抜きの四角に文字化けするという症状に悩まされてきた.解決策が分かったのでメモっておく. Options -> Preference -> Appearance -> Table appearance -> Set tab…

System32とSysWow64

完全に誤解してた.Windows 64bitマシンでのdll置き場について. System32: 64bitアプリケーション用.dll SysWow64: 32bitアプリケーション用.dll だそうだ.32bitアプリケーションがSystem32ディレクトリを見に行こうとすると,SysWow64にリダイレクトされ…

Using levmar 2.6 with Visual Studio

On my previous post, I posted how to compile levmar 2.5 with visual studio 2010. Since the procedure mentioned there is not enough to compile levmar 2.6, I write how to solve the compilation issue even though the chips is written on levmar…

Install new beamer theme into MikTex environment

New beamer theme installation into MikTeX environment is not too difficult.Simply, you can install with 2 steps: file download&localization and update tex database. 1. File download and localizationBeamer theme .sty files have different ty…

To Do List

Compile ompbox10 and ksvdbox13 on Octave with Microsoft Visual Studio 2010

tcp file generator for TeXnicCenter

TeXnicCenter requires a .tcp file to manage tex project. Since the contents of .tcp file is not very different, I was wondering someone would make tcp file generator. Then, I did. The following sequence of command is for windows batch file…

freeglut for OpenGL (GLSL) + Visual Studio 2010 on 64bit

freeglutを使ってVisual Studio 2010でのOpenGL(GLSL)環境のセットアップを試みる.同じ内容で書いたことがあるけど,freeglutが2.6.0から2.8.0にバージョンアップされてセットアップが容易になっていたのでメモ. 以下で{VC Root}は 32bit C:\Program Files…

K-SVD toolbox installation

This is a memo how to install K-SVD toolbox provided by Ron Rubinstein. For K-SVD toolbox installation, we need OMP toolbox. Thus, installation needs 2 steps, OMP installation and then K-SVD installation. OMP toolbox installation Change di…

CurveLab installation

This post is memo telling how to install CurveLab in MatLab. CurveLab is a toolbox the Fast Discrete Curvelet Transform both in MatLab and C++. You can find the detail from the website. Current version is 2.1.2. Installation is very simple…

WaveLab installation

This post is memo telling how to install WaveLab850 in MatLab. WaveLab is a collection of MatLab functions of wavelet analysis related algorithms such as wavelet transform and matching pursuit. You can find the detail from the website. Cur…