Miyagawa-san is one of super geeks! Every Perl Mongers want to write codes like him.
But...
We can't be Miyagawa-san. Because we lose the 'PURPLE THING'.
PURPLE THING
This.
This.
I don't know what is this. But we need this to be like Miyagawa-san.
So, I made the 'miyagawanize' script that is very short.
miyagawanize.pl
#!/usr/bin/perl
use strict;
use warnings;
use Imager;
use Image::ObjectDetect;
my $file = shift or die "image file path is required!";
my $image = Imager->new->read( file => $file );
my $cascade = './haarcascade_frontalface_alt2.xml';
my $detector = Image::ObjectDetect->new($cascade);
my @faces = $detector->detect($file);
my $purple_source = Imager->new->read(file => './purple.png');
my $aspect = 1.5;
for my $face (@faces) {
my $purple = $purple_source->scale(
xpixels => $face->{width} / $aspect,
ypixels => $face->{height} / $aspect,
);
$image->rubthrough(
tx => $face->{width} / $aspect / 2 + $face->{x},
ty => $face->{height} / $aspect + $face->{y},
src => $purple,
);
}
$image->write( file => './output.jpg' );
Hot to use 'miyagawanize'
- Install OpenCV library.
- Install 'Imager' and 'Image::ObjectDetect' modules from cpan.
- Run the 'miyagawanize' script.
Demonstration
Larry is miyagawanized in my talk session.
( This photo was taken by Sartak. Thanks. )
How about Obama ? Obama is not geek. But now we have the 'miyagawanize' script !
Can we miyagawanize him ??
Yes, we can !
Finally I'll show you interesting miyagawanization. My father were in YAPC for our presentaion. I took a precious picture of him and Miyagawa-san.
Now, miyagawanize my father and Miyagawa-san !
That's all. Let's miyagawanize and write a great code!
Slide used in Lightning Talk
References
Special Thanks to...
Miyagawa-san!
Books written by Miyagawa-san
- デイビッド クロス
- 単行本 / ピアソンエデュケーション
- Amazon 売り上げランキング: 275267
- Amazon おすすめ度の平均:

-
便利なすぐ使えるイディオム満載 -
一課に一冊
-
- 宮川 達彦 伊藤 直也
- 単行本 / オライリー・ジャパン
- Amazon 売り上げランキング: 262674
- Amazon おすすめ度の平均:

-
100に絞るところがよいかも -
大好きな一冊!! -
日本発のHACKS -
日本発のオライリー本を評価したい -
Blogいじりをする方必読
-
- 小飼 弾 宮川 達彦 伊藤 直也 川合 孝典 水野 貴明
- 大型本 / インプレスコミュニケーションズ
- Amazon 売り上げランキング: 168992
- Amazon おすすめ度の平均:

-
技術書・解説書というよりはマイルストーン
-


