use strict;
use warnings;
+use overload '""' => sub { shift->plate }, fallback => 1;
use parent qw/Class::Accessor::Fast/;
our $VERSION = '0.001';
=head1 SYNOPSIS
my $plate = $alpr->recognise('t/example.jpg');
+ say $plate; # ZP36709
say $plate->plate; # ZP36709
say $plate->confidence; # 92.373634
my @coords = $plate->coordinates; # [306, 351], [476, 351], [476, 384], [306, 384]
=item $plate->B<plate>
The plate number that has the highest confidence value (likelihood of
-being correct).
+being correct). An object of this class will stringify to the return
+value of this method.
=item $plate->B<confidence>