Posts

Tower of the Sun (Osaka, Japan)

Image
Tower of the Sun Tower of the Sun (太陽の塔) was built in Expo Commemoration Park in Osaka Pref. ( Wikipedia ) Recently, about from 2012, artistic movies have been projected onto it (Projection Mapping). Here are my shoots. ETHNIC something ethnic... The tower is 70m (230ft) tall , which is not clearly visible on the photo. Closing up to the right-bottom corner of the photo where people stand. so tiny! its diameter is also big... SCULPTURAL maybe this photo was taken on the same year of the previous one. the projection mapping is about 10 minutes long every year. I LOVE RAW development on Lightroom . all of the photo I show here and in this blog is processed so. For projection mapping, it is best to apply High contrast, low black level, and a little more articulation . the detail of the real object will be unseeable and the projected image is much clearer than non-processed photo. EYES CLOSED Tower of the Sun with his (her? I don't know ...

How to Change font-family in Darktable

Image
Hi there. In this post, I introduce how to change font-family in Darktable installed on Windows PC. Darktable is OSS (free) software to process raw images and manage image files. The software seems a reasonable substitute for Adobe Lightroom, in terms of raw image processing and editing. However, in terms of image file management, it is not so useful... Anyway, the most important thing, Darktable is available on Linux OS! CSS file to be changed Default font-family of Darktable is Sans , but I hate this font (maybe most of Japanese) as Kanji and Hiragana of this font is aweful. To change font-family , you edit C:\Program Files\darktable\share\darktable\darktable.css . Unfortunately, this file is overwritten by updating, so you will end up editing the file everytime you update XD In official FAQ section, it is mentioned copying and editting the css file into C:\Users\[username]\.config\ , but this is not effective on Windows (at least 7). I tried other ways ...

first post (for design check)

Image
Hi, I'm taneyats. I will post: Photos and techs of DSLR Programming (Java, Javascrpt, PHP, HTML and CSS) Raspberry Pi development Calligraphy and other my hobbies... Here are some my favorite photos I took. Photograph Misasa-onsen Hot springs (Tottori, Japan) Tower of the Sun (Osaka, Japan) Doshisha University (Kyoto, Japan) Any comment is welcome! Thank you. Programming Snippet /foo/bar/echo.sh <!-- comment --> #引数のチェック if [ $# -ne 1 ]; then echo "invalid argument." exit 1; fi #一時ファイル DIR=./tmp FILE=${DIR}/${1}.wav #ファイル生成 echo "$1" | open_jtalk \ -m /usr/share/open_jtalk_voice/tohoku-f01-neutral.htsvoice \ -x /var/lib/mecab/dic/open-jtalk/naist-jdic \ -r 1.1 \ -ow ${FILE} && \ #再生 sudo aplay --quiet ${FILE} while : do #プロンプト read -p "save? [Y/n/a(play again)]: " RES #分岐 case ${RES} in [nN]* ) echo "did not save the file."; rm ${FILE}; break;; [aA]* ) ...