
kyle-in-jp.blogspot.com
画像処理についてあれこれImageMagickをメインに、画像処理についてのTipsを書いていきます。
http://kyle-in-jp.blogspot.com/
ImageMagickをメインに、画像処理についてのTipsを書いていきます。
http://kyle-in-jp.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Wednesday
LOAD TIME
0.3 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
18
SSL
EXTERNAL LINKS
41
SITE IP
172.217.9.225
LOAD TIME
0.341 sec
SCORE
6.2
画像処理についてあれこれ | kyle-in-jp.blogspot.com Reviews
https://kyle-in-jp.blogspot.com
ImageMagickをメインに、画像処理についてのTipsを書いていきます。
画像処理についてあれこれ: 2012-08-26
http://kyle-in-jp.blogspot.com/2012_08_26_archive.html
Friday, August 31, 2012. TYPE INT ARGB ). Groovy 1.8.6, JDK7 update4. Sunday, August 26, 2012. TYPE INT ARGB ). Groovy 1.8.6, JDK7 update4. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
画像処理についてあれこれ: 2014-08-31
http://kyle-in-jp.blogspot.com/2014_08_31_archive.html
Friday, September 05, 2014. Webcam CaptureでWebカメラで撮影している内容に動きがあった時にファイル保存するには、以下のコードを実行します。 64;Grab(group='com.github.sarxos', module='webcam-capture', version='0.3.9'). Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
画像処理についてあれこれ: 2012-09-16
http://kyle-in-jp.blogspot.com/2012_09_16_archive.html
Saturday, September 22, 2012. Groovy 1.8.6, JDK7 update4. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
画像処理についてあれこれ: 2012-10-14
http://kyle-in-jp.blogspot.com/2012_10_14_archive.html
Monday, October 15, 2012. Groovy 1.8.6, JDK7 update4. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
画像処理についてあれこれ: 2012-09-09
http://kyle-in-jp.blogspot.com/2012_09_09_archive.html
Saturday, September 15, 2012. TYPE INT ARGB ). Basecolor ), (. Groovy 1.8.6, JDK7 update4. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
TOTAL PAGES IN THIS WEBSITE
18
groovyあれこれ: groovyとshipyardでcontainerのログを取得する
http://groovyarekore.blogspot.com/2015/02/groovyshipyardcontainer_14.html
Groovyとshipyardでcontainerのログを取得するには、以下のサンプルコードのようにX-Service-Keyにサービスキーを設定して/api/containers/ container-id /logsにアクセスします。
serverあれこれ: H2 DatabaseとsardineでWebDAVサーバ上のディレクトリを列挙する関数を作成する
http://serverarekore.blogspot.com/2010/11/h2-databasesardinewebdav_24.html
H2 DatabaseとsardineでWebDAVサーバ上のディレクトリを列挙する関数を作成するには、以下のスクリプトを実行します。 Create alias if not exists sardine list directory as $. Import java.io.*;. Import java.util.*;. Import java.sql.*;. Import org.h2.tools.*;. Import com.googlecode.sardine.*;. ResultSet sardine list directory(String url,. String user, String password). If( url = null ){. Throw new Exception(url is not specified.);. User = (user = null)? Password = (password = null)? SimpleResultSet rs = new SimpleResultSet();. Call sardine list directory(.
serverあれこれ: DockerfileでApache2を起動するイメージを作成する
http://serverarekore.blogspot.com/2014/11/dockerfileapache2.html
FROM ubuntu:latest MAINTAINER kyle RUN apt-get update RUN DEBIAN FRONTEND=noninteractive apt-get -y install apache2 ENV APACHE RUN USER www-data ENV APACHE RUN GROUP www-data ENV APACHE PID FILE /var/run/apache2.pid ENV APACHE LOG DIR /var/log/apache2 ENV APACHE LOCK DIR /var/lock/apache2 ENV APACHE PID FILE /var/run/apache2.pid EXPOSE 80 ADD www /var/www/html CMD ["/usr/sbin/apache2ctl", "-DFOREGROUND"]. 画像ウィンドウ テンプレート. Powered by Blogger.
serverあれこれ: H2 DatabaseとsardineでWebDAVサーバ上のファイルのコンテントタイプを取得する関数を作成する
http://serverarekore.blogspot.com/2010/11/h2-databasesardinewebdav_23.html
H2 DatabaseとsardineでWebDAVサーバ上のファイルのコンテントタイプを取得する関数を作成するには、以下のスクリプトを実行します。 Create alias if not exists sardine get content type as $. Import java.io.*;. Import java.util.*;. Import java.sql.*;. Import org.h2.tools.*;. Import com.googlecode.sardine.*;. String sardine get content type(String url,. String user, String password). If( url = null ){. Throw new Exception(url is not specified.);. User = (user = null)? Password = (password = null)? String result = null;. For(DavResource resource : resources){.
serverあれこれ: H2 DatabaseとsardineでWebDAVサーバ上のファイルを列挙する関数を作成する
http://serverarekore.blogspot.com/2010/11/h2-databasesardinewebdav.html
H2 DatabaseとsardineでWebDAVサーバ上のファイルを列挙する関数を作成するには、以下のスクリプトを実行します。 Create alias if not exists sardine list files as $. Import java.io.*;. Import java.util.*;. Import java.sql.*;. Import org.h2.tools.*;. Import com.googlecode.sardine.*;. ResultSet sardine list files(String url,. String user, String password). If( url = null ){. Throw new Exception(url is not specified.);. User = (user = null)? Password = (password = null)? SimpleResultSet rs = new SimpleResultSet();. For(DavResource resource : resources){.
serverあれこれ: H2 DatabaseとsardineでBLOBをWebDAVサーバ上のファイルとしてアップロードする関数を作成する
http://serverarekore.blogspot.com/2010/11/h2-databasesardineblobwebdav.html
H2 DatabaseとsardineでBLOBをWebDAVサーバ上のファイルとしてアップロードする関数を作成するには、以下のスクリプトを実行します。 Create alias if not exists sardine put binary as $. Import java.io.*;. Import java.sql.*;. Import org.h2.tools.*;. Import com.googlecode.sardine.*;. Int sardine put binary(String url,. String user, String password, Blob blob). If( url = null ){. Throw new Exception(url is not specified.);. User = (user = null)? Password = (password = null)? Sardine sardine = SardineFactory.begin(user, password);. InputStream bis = null;.
serverあれこれ: H2 DatabaseとsardineでWebDAVサーバ上のファイルをコピーする関数を作成する
http://serverarekore.blogspot.com/2010/12/h2-databasesardinewebdav_02.html
H2 DatabaseとsardineでWebDAVサーバ上のファイルをコピーする関数を作成するには、以下のスクリプトを実行します。 Create alias if not exists sardine copy as $. Import java.io.*;. Import java.sql.*;. Import org.h2.tools.*;. Import com.googlecode.sardine.*;. Import com.googlecode.sardine.util.*;. Int sardine copy(String url,. String user, String password,. String src, String dst). If( url = null ){. Throw new Exception(url is not specified.);. User = (user = null)? Password = (password = null)? If( src = null ){. If( dst = null ){. User', 'password',.
serverあれこれ: raspberry piでroot file systemを2T以上のUSB HDDに移動する
http://serverarekore.blogspot.com/2014/08/raspberry-piroot-file-system2tusb-hdd.html
Raspberry piでroot file systemを2T以上のUSB HDDに移動する. Raspberry piでroot file systemを2T以上のUSB HDDに移動するには、以下の手順を実行します。 Sudoparted /dev/sda mklabel gpt mkpart primary ext4 0 -1s quit. 3 ext4 file system作成. Sudo mkfs.ext4 /dev/sda1. Cd /media sudo mkdir usbhdd sudo mount /dev/sda1 /media/usbhdd df -h. Sudo apt-get install rsync sudo rsync -axv / /media/usbhdd. Raspberry piでroot file systemを2T以上のUSB HDDに移動する. 画像ウィンドウ テンプレート. Powered by Blogger.
serverあれこれ: H2 DatabaseとsardineでWebDAVサーバ上のファイルをBLOBとして返す関数を作成する
http://serverarekore.blogspot.com/2010/11/h2-databasesardinewebdavblob.html
H2 DatabaseとsardineでWebDAVサーバ上のファイルをBLOBとして返す関数を作成するには、以下の手順を実行します。 Tools .*;. Sardine .*;. Url is not specified. C:/Program Files/H2/bin/h2-1.3.146.jar. Project: ${ant.project.name}. 3H2 Consoleから以下のコマンドを実行して、ファンクション作成。 Create alias sardine get binary for. Comserverarekore.h2.SardineGetBinaryFunction.sardine get binary;. Drop table if exists blobtest;. Create table blobtest (c1 numeric(4), c2 blob);. Insert into blobtest values (1,. Http:/ 192.168.1.208:8080/repository/default/SF.JPG',.
groovyあれこれ: 4月 2014
http://groovyarekore.blogspot.com/2014_04_01_archive.html
EXIT ON CLOSE ){. Groovy 2.2.2, JDK 1.7 update55. EXIT ON CLOSE ,. Rb1=${sb.rb1.selected}, rb2=${sb.rb2.selected}, rb3=${sb.rb3.selected}. Groovy 2.2.2, JDK 1.7 update55. EXIT ON CLOSE ){. Combobox1=${sb.cb1.selectedItem}, index=${sb.cb1.selectedIndex}. Groovy 2.1.7, JDK 1.7. EXIT ON CLOSE ){. Checkbox1=${sb.chk1.selected}, checkbox2=${sb.chk2.selected}. Groovy 2.1.7, JDK 1.7.
TOTAL LINKS TO THIS WEBSITE
41
Kyles Hunter's Animation, sketches and life drawing
Friday, May 7, 2010. Kyle Hunters Demo Reel 09-10. My updated demo reel. Thursday, May 6, 2010. Here is my 3rd year film! The backgrounds and color was done by Ross Love, I did most of the more difficult animated scenes. ENJOY! IT might be a bit laggy because of the widescreen/ high def. Thursday, April 22, 2010. Here is a scene i did on harmony. The line is from office space. Tuesday, April 6, 2010. Saturday, March 20, 2010. Thursday, March 11, 2010. Tuesday, March 9, 2010. Wednesday, March 3, 2010.
Home - Kyle Hunter, Author
When you travel, you just never know what will happen. Those words, spoken by Travis Jefferies, a character in my book,. Sum up the spirit behind Love on the Move. Inspirational romance novels. In each novel compelling characters leave home for a variety of reasons . . . and things change. They encounter challenges, growth, adventure, mystery, and even love. I’m happy to present to you the first book in the Love on the Move. What happens in between? At Christmas Mike comes back to New York for the first ...
The Last Human Ghost
The Last Human Ghost. Studio Dispatch 4: The Old Man's Back In Town. The High Price of Grooviness. Legends of the Superheroes. Doctor Who: Song for Ten. Viewing 0 - 10. Studio Dispatch 4: The Old Man's Back In Town. Happy New Year everyone. I just celebrated my birthday, so the holidays are officially over. In the spirit of simply getting back in the habit of posting, I'm just kicking out a potpourri of random info. I attribute my absence to a couple of factors:. At an ad agency in downtown Seattle.
Kyle-Hyde (Just call me Kyle Hyde) | DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Just call me Kyle Hyde. Just call me Kyle Hyde. Deviant for 10 Years. Just call me Kyle Hyde. This deviant's activity is hidden. Deviant since Jul 31, 2007. Just call me Kyle Hyde. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. You can drag and drop to rearrange. You can edit widgets to customize them.
Intro to Arts Mktg
Intro to Arts Mktg. Thursday, November 20, 2008. Virginia Tech football vs. Miami and half-time huddle. In addition, we also had information on our website ( http:/ www.fca.org.vt.edu/. We bought food for and expected about 40 people to come (after seeing the huge response on the facebook event page). Only about 30-35 people came out to the event, but that was very encourgaing because we have been averaging around 18 people per weekly meeting! Friday, September 12, 2008. 9/11-12 - facebook message ii.
画像処理についてあれこれ
Monday, December 07, 2015. X labels = [. Thursday, December 03, 2015. Monday, November 30, 2015. Pygalでデータポイントを非表示にするには、以下のサンプルコードのようにshow dotsでFalseを指定します。 Friday, November 27, 2015. Pygalで凡例を非表示にするには、以下のサンプルコードのようにshow legendを使用します。 Wednesday, November 25, 2015. Pygalで凡例を下に表示するには、以下のサンプルコードのようにlegend at bottomを使用します。 Legend at bottom =. Sunday, November 22, 2015. Pygalで軸ラベルを回転させるには、以下のサンプルコードのようにx label rotation, y label rotationを使用します。 X label rotation =-. Y label rotation =-. View my complete profile.
kyle-insley - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 11 Years. This deviant's activity is hidden. Deviant since Jul 8, 2005. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. OK well as ...
kyle_ip
03 March 2006 @ 09:20 pm. Just come back from gymnastics, working flicks, back tucks and front tucks. All going well and the back tucks are getting higher! Doesnt change to fact i have shed loads of uni work though! 27 February 2006 @ 04:06 pm. Uni work ois depressing, the countdown however continues, only another three months left and its all over, lets do a masters! 21 December 2005 @ 07:10 pm. 09 December 2005 @ 08:59 pm. Work and work, and work. 20 November 2005 @ 06:02 pm. 19 November 2005 @ 02:31 pm.
Kyle & Irving – WordPress websites, we can get you online in no time at all. Simply choose between our bespoke or DIY package.
Website Design & Development. We are, we can get you online in no time at all. Simply choose between our bespoke or DIY package and we can get you started. Bespoke Web Design and Development. We work with: charities, organisations from the third sector, consultants, freelancers and small &/or emerging businesses. We work with people like you. We provide practical and pragmatic website. We take the time to identify your goals and then work with you to help you achieve them. I thoroughly recommend them.
Kyle-IT - Home
Welcome to Kyle-IT. I look forward to serving you with all of your computer needs whether it is for your home or business, big or small. I take pride in my work and I will try my hardest to meet your needs. Create a free website. Start your own free website. A surprisingly easy drag and drop site creator. Learn more. Photo used under Creative Commons from Axel Schwenke.