being drawn in a plain color
- image based fills
- unsharp mask
+ - make i_conv() clamp the bottom end of the samples range too
+ (makes it useful for sharpening)
=================================================================
my $im_other = Imager->new(xsize=>150, ysize=>150);
$im_other->box(xmin=>30, ymin=>60, xmax=>120, ymax=>90, filled=>1);
-print "1..37\n";
+print "1..39\n";
test($imbase, 1, {type=>'autolevels'}, 'testout/t61_autolev.ppm');
'testout/t61_fount_gimp.ppm');
test($imbase, 36, { type=>'unsharpmask', stddev=>2.0 },
'testout/t61_unsharp.ppm');
+test($imbase, 38, {type=>'conv', coef=>[ -1, 3, -1, ], },
+ 'testout/t61_conv_sharp.ppm');
+
sub test {
my ($in, $num, $params, $out) = @_;