Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

### filter Voronoi baths
sub new {
my ($class) = @_;
my $self = {};
$class = ref($class) || $class;
bless $self, $class;
}
sub filter {
my ($self, $imgrepr) = @_;
}
1;