I am Charmie

メモとログ

software

Amazing dark theme for TexStudio

Follow the guidance shown at the bottom of this page.

Android Studio installation on Ubuntu 16.04

[code language="bash"] JDK sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install oracle-java8-set-default Android Studio sudo apt-get install lib32stdc++6 wget and…

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…

Import Mail from SeaMonkey to Thunderbird

I changed my mailer from lovely SeaMonkey to Thunderbird. Since I couldn't find nice guidance on the web, I copy-and-pasted all files, which of course include a lot of unnecessary files :(, from /.mozilla/seamonkey// to /.mozilla/firefox//…

Import protected password from SeaMonkey to FireFox

I changed my web browser from lovely SeaMonkey to FireFox. Following this, I could import all password settings! SeaMonkey: Ver. 2.31 FireFox: Ver. 34.0 Specifically, I copied the following files and it worked!: cert8.db cookies.sqlite for…

Import bookmark from SeaMonkey to FireFox

I changed my web browser from lovely SeaMonkey to FireFox. The versions are: SeaMonkey: Ver. 2.31 FireFox: Ver. 34.0 Specifically, I used bookmarkbackup since SeaMonkey and FireFox use same format for bookmark backup. Copy latest bookmark …

play DVD with VLC player on Ubuntu

the following settings are required: sudo apt-get -yV install libdvdread4 sudo /usr/share/doc/libdvdread4/install-css.sh

PlayOnLinux

PlayOnLinux is a software for Linux with which we can play software/applications for Windows on Linux. PlayOnLinux uses wine to enable to use software for Windows. We don't have to install wine before installing PlayOnLinux because PlayOnL…

Install a pdf viewer qpdfview on Ubuntu

qpdfview is a pdf viewer, which provides tab-browsing and copying pdf document as a picture. sudo apt-add-repository ppa:b-eltzner/qpdfview sudo apt-get update sudo apt-get -yV install qpdfview

TeXMaths: LIbreOffice's extension

TeXMaths is an LibreOffice's extension that enables to make equations with LaTeX on LibreOffice. The installation is very simple: Download .oxt file from download pageRun LibreOffice -> Tools -> Extension manager -> Add -> Specify the down…

Installation Acrobat reader on Ubuntu 12.04

sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"sudo apt-get updatesudo apt-get install acroread

RabbitVCS: GUI for version control on Ubuntu

RabbitVCS is a GUI tool running on Ubuntu for version control systems such as subversion and Git. RabbitVCS is primarily inspired by TortoiseSVN. ScreenshotsInstruction for installation

SunFlower: a file manager on ubuntu

sunflower is a good file manager. It has 2 windows and enables tab browsing. The greatest point contrast to double commander is that we can open files by drag & drop files from sunflower to another software.

GraphViz on ubuntu

I'm using Boost Graph Library (BGL) and looking for libraries/softwares that can visualize graph network obtained by using BGL. GraphViz is an open source graph visualization software. Fortunately, BGL has a function that outputs graph net…

diff viewer on windows

WinMerge is the tool.

Freemind

マインドマップをPC上で行うソフトウェア. FreeMind活用クラブのインストールのページに従えば簡単にインストールできる. ただし,PCの設定次第では,起動しない事がある. 複数のバージョンのJavaがインストールされている PCに複数のバージョンのJavaが…

PDFブラウザ

PDFファイルのブラウザにPDF-XChange Viewerというソフトを使っている. タブブラウザなので,Adobe readerのように開いているPDFファイルの数だけウィンドウが現れるという悲しい事がなくなるので使っている. んだけど,致命的な欠陥に気付いた. プリンタ…

複数のpptファイルを並べて表示

PowerPoint2003で複数のpptファイルを並べて比較しながら作業する方法.2010では複数のウィンドウを起動出来るが,2003ではシングルウィンドウしか(たぶん)起動できないため,シングルウィンドウを分割する作戦を使う.まずはじめに複数のpptファイルを開く…

Load and Save 16bit image

My MatLab is R2009a. I don't guarantee that this info. is same as other versions.Suppose we have a 16bit image 'test.tif'. What we want to do is, first read the image and then save the image as 'res.tif'.Simply speaking, default imread and…

Camera Calibration Toolbox for MatLab pt.2

続き.今度はステレオカメラのキャリブレーション.前提: ステレオカメラで同じシーンを撮影している. 2台のカメラともcalib_guiで内部・外部パラメータ共にキャリブレーション済み.mainの実行>> stereo_gui各カメラの内部・外部パラメータのロード>> Load…

Camera Calibration Toolbox for MatLab

キャリブレーション用Toolboxのメモここからダウンロード.main関数の実行>> calib_gui選択肢が以下の二つ.3000x2000画素x9枚の画像で実行したらエラーになったので,後者を選択した.Standard(全ての画像をメモリに格納)Memory efficient(画像を一つずつ読…

convert CR2 to png

バッチファイルの設定を勉強した. %1でファイル名を取得して,%~*1で色んな事が出来る.今回はファイル名から拡張子を抜いたものを知りたいから%~n1. for %%1 in (*.CR2) do ( dcrawMS -6 -T -W -w -g 1 1 -t 5 %%~n1%%~x1 convert %%~n1.tiff %%~n1.png )

16bit tiff -> png

tiff形式で出力した16bitのtiff画像を,png形式に変換.ImageMagickというものを使えばできるみたい.インストールをしたらコマンドプロンプトで以下のようにタイプするとtiffからpngに変換できる. convert test.tiff test.png簡単にできてしまった・・・

RAW画像の抽出

一眼レフで撮影した画像からRAW画像(未処理)を抽出したい.dcrawというものを使えばRAW画像を抽出できると教えてもらった.シンプルなCのコードで使いやすいよ-と宣伝されているが,こちらのexe形式に変換された方を選択.色々選択できるみたいだけど,今回…

webページのアイコン

webページのアイコンを作ろうかなーなんて思って,色々と調べてみた.以前アイコンを作った時は,フリーのオンラインサービスで作成したのだけど,どうもうまくいかず,結局gifを使う事になったので,今回こそはと方法を探してみた.見つけたのがIcoFX.Wind…

Event Log Explorer

この前のiaStor.sysが原因だったブルースクリーンがまた発生.ただ,エラーメッセージは前と異なっていて,どうもドライバのバージョンが古いみたいなメッセージが表示された.Intel Matrix Storage Managerをアンインストールしたのに・・・これって,レジスト…

bluescreen ブルースクリーン

I found a software analyzing bluescreen crash.Bluescreen appears suddenly (of course). Unfortunately, the PC sometimes reboots without our will. If it's a case, we can't take a memo of the crash. Even if the log is stored, I don't know whe…

カメラのRAWデータ

Canon EOS 20Dで撮影したRAWデータの画素値を計測する必要が生じたのでメモ.RAWデータのフォーマットはカメラメーカ毎に異なるため,いちいちフォーマットを調べて・・・という作業は微妙.なので,一度RAWデータをTIFF(16bit)に書き出して,そのTIFFデータの…

Canon EOS Utility

Canon EOS 20DをPCにつないで,撮影した画像を直接PCに保存したい.手元にはWindows7(英語)のPCしかないため,7に対応しているかから調べる.日本語のwebサイトだと,vista用のドライバとソフトをそのまま使えると書いてあったが,英語のwebサイトだと,7に…