X-Git-Url: http://git.ieval.ro/?p=image-openalpr.git;a=blobdiff_plain;f=lib%2FImage%2FOpenALPR%2FPlateResult.pm;fp=lib%2FImage%2FOpenALPR%2FPlateResult.pm;h=e06a3e93d59149e6a33d959a713d0bc9b44f3fed;hp=3fcca2dd446cff530241c7b5354e80a55aaa01f6;hb=baf65988cb4766daeea584ef627e8c2011277d88;hpb=6765bc35d634346fb62423893eed48ecb0de1bc5 diff --git a/lib/Image/OpenALPR/PlateResult.pm b/lib/Image/OpenALPR/PlateResult.pm index 3fcca2d..e06a3e9 100644 --- a/lib/Image/OpenALPR/PlateResult.pm +++ b/lib/Image/OpenALPR/PlateResult.pm @@ -4,6 +4,7 @@ use 5.014000; use strict; use warnings; +use overload '""' => sub { shift->plate }, fallback => 1; use parent qw/Class::Accessor::Fast/; our $VERSION = '0.001'; @@ -36,6 +37,7 @@ Image::OpenALPR::PlateResult - a license plate, as identified by OpenALPR =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] @@ -53,7 +55,8 @@ identified by OpenALPR. It offers the following methods: =item $plate->B 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