-
Notifications
You must be signed in to change notification settings - Fork 33
/
diff_negative.pl
executable file
·102 lines (78 loc) · 2.54 KB
/
diff_negative.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/perl
# Author: Daniel "Trizen" Șuteu
# License: GPLv3
# Date: 07 November 2015
# Edit: 19 May 2016
# Website: https://github.com/trizen
# Replace the light-color pixels with the difference between the brightest and darkest neighbors.
# _________________
# | | | |
# | A | B | C |
# |_____|_____|_____| _____
# | | | | | |
# | H | | D | --> | M |
# |_____|_____|_____| |_____|
# | | | |
# | G | F | E |
# |_____|_____|_____|
# where M is the average color of (max(A..H) - min(A..H))
use 5.010;
use strict;
use warnings;
use List::Util qw(min max sum);
use GD;
GD::Image->trueColor(1);
sub help {
my ($exit_code) = @_;
print <<"EOT";
usage: $0 [input image] [output image]
EOT
exit($exit_code // 0);
}
my $in_file = shift(@ARGV) // help(2);
my $out_file = shift(@ARGV) // 'output.png';
my $img = GD::Image->new($in_file);
my @matrix = ([]);
my ($width, $height) = $img->getBounds;
my $new_img = GD::Image->new($width, $height);
sub diff {
max(@_) - min(@_);
}
sub avg {
(int(sum(@_) / @_)) x 3;
}
sub get_pixel {
$img->rgb($img->getPixel(@_))
}
foreach my $y (1 .. $height - 2) {
foreach my $x (1 .. $width - 2) {
my @left = get_pixel($x - 1, $y);
my @right = get_pixel($x + 1, $y);
my @down_left = get_pixel($x - 1, $y + 1);
my @down_right = get_pixel($x + 1, $y + 1);
my @up = get_pixel($x, $y - 1);
my @down = get_pixel($x, $y + 1);
my @up_left = get_pixel($x - 1, $y - 1);
my @up_right = get_pixel($x + 1, $y - 1);
$matrix[$y][$x] =
$new_img->colorAllocate(
avg(
diff(($up[0], $down[0], $up_left[0], $up_right[0], $down_left[0], $down_right[0])),
diff(($up[1], $down[1], $up_left[1], $up_right[1], $down_left[1], $down_right[1])),
diff(($up[2], $down[2], $up_left[2], $up_right[2], $down_left[2], $down_right[2]))
),
);
}
}
for my $y (1 .. $height - 2) {
for my $x (1 .. $width - 2) {
$new_img->setPixel($x, $y, $matrix[$y][$x]);
}
}
open(my $fh, '>:raw', $out_file) or die "Can't open `$out_file' for write: $!";
print $fh (
$out_file =~ /\.png\z/i ? $new_img->png
: $out_file =~ /\.gif\z/i ? $new_img->gif
: $new_img->jpeg
);
close $fh;