Skip to content

Commit

Permalink
Bump version, add links to libccv at http://libccv.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Maischein committed Jun 30, 2012
1 parent 7fb1b76 commit 9e5b83b
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 12 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# TODO: Add FAQ.pm
# TODO: Document examples

0.06 20120630
. New upstream release, as upstream has now a major version change (0.1)

0.05 20120407
. Fixed URL for lightning talk
! Updated to new version of (unstable) CCV library
Expand Down
2 changes: 1 addition & 1 deletion MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"url" : "http://github.com/Corion/image-ccv"
}
},
"version" : "0.05"
"version" : "0.06"
}
2 changes: 1 addition & 1 deletion MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ requires:
perl: 5.006
resources:
repository: http://github.com/Corion/image-ccv
version: 0.05
version: 0.06
2 changes: 1 addition & 1 deletion examples/facecrop.pl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Image::CCV qw(detect_faces);

use vars qw($VERSION);
$VERSION = '0.05';
$VERSION = '0.06';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion examples/sift-video.pl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use File::Basename qw(dirname);

use vars qw($VERSION);
$VERSION = '0.05';
$VERSION = '0.06';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion examples/sifttest.pl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Image::CCV qw(sift);

use vars qw($VERSION);
$VERSION = '0.05';
$VERSION = '0.06';

my $scene = "images/IMG_1229_bw_small.png";
my $object = "images/IMG_1230_bw_sofa.png";
Expand Down
8 changes: 7 additions & 1 deletion lib/Image/CCV.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require DynaLoader;
use Carp qw(croak);
use vars qw($VERSION @EXPORT @ISA);

$VERSION = '0.05';
$VERSION = '0.06';

@EXPORT = qw(sift detect_faces );

Expand All @@ -30,6 +30,8 @@ and the API is very much in flux. But as I got easy results using
this code already, I am releasing it as is and will improve it and
the API as I go along.
See also L<http://libccv.org> for the C<libccv> website.
=cut

# TODO: Make ccv_array_t into a class, so automatic destruction works
Expand Down Expand Up @@ -212,11 +214,15 @@ Memory currently is only allocated. Rarely is memory deallocated.
The public repository of this module is
L<http://github.com/Corion/image-ccv>.
The upstream repository of C<libccv> is at
=head1 SUPPORT
The public support forum of this module is
L<http://perlmonks.org/>.
The support for C<libccv> can be found at L<http://libccv.org>.
=head1 TALKS
I've given one lightning talk about this module at Perl conferences:
Expand Down
12 changes: 6 additions & 6 deletions lib/Image/CCV/Examples.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package Image::CCV::Examples;

use strict;
use vars qw($VERSION);
$VERSION = '0.05';
$VERSION = '0.06';

1;

Expand Down Expand Up @@ -62,7 +62,7 @@ The following is a list of the 3 example programs that are included in the Image
use Image::CCV qw(detect_faces);
use vars qw($VERSION);
$VERSION = '0.05';
$VERSION = '0.06';
=head1 NAME
Expand Down Expand Up @@ -203,7 +203,7 @@ The following is a list of the 3 example programs that are included in the Image
}
}
Download this example: L<http://cpansearch.perl.org/src/CORION/Image-CCV-0.05/examples/facecrop.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/Image-CCV-0.06/examples/facecrop.pl>
=head2 Example: facetest.pl
Expand Down Expand Up @@ -260,7 +260,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/Image-CCV-0.05/ex
}
}
Download this example: L<http://cpansearch.perl.org/src/CORION/Image-CCV-0.05/examples/facetest.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/Image-CCV-0.06/examples/facetest.pl>
=head2 Example: sifttest.pl
Expand All @@ -274,7 +274,7 @@ $out->rubthrough(
use Image::CCV qw(sift);
use vars qw($VERSION);
$VERSION = '0.05';
$VERSION = '0.06';
my $scene = "images/IMG_1229_bw_small.png";
my $object = "images/IMG_1230_bw_sofa.png";
Expand Down Expand Up @@ -331,7 +331,7 @@ $out->rubthrough(
$out->write( file => 'out.png' )
or die $out->errstr;
Download this example: L<http://cpansearch.perl.org/src/CORION/Image-CCV-0.05/examples/sifttest.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/Image-CCV-0.06/examples/sifttest.pl>
=head1 AUTHOR
Expand Down

0 comments on commit 9e5b83b

Please sign in to comment.