forked from os-autoinst/os-autoinst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck_needles.pl
More file actions
executable file
·30 lines (26 loc) · 830 Bytes
/
check_needles.pl
File metadata and controls
executable file
·30 lines (26 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/perl -w
use Mojo::Base -strict, -signatures;
use File::Basename;
use needle;
use cv;
cv::init();
require tinycv;
my ($res, $needle, $img);
my $ndir = $ARGV[0] || ".";
my @jsons = glob "${ndir}/*.json";
my @pngs = glob "${ndir}/*.png";
foreach my $json (@jsons) {
my $bnjson = basename($json, ".json");
$needle = needle->new($json);
foreach my $png (@pngs) {
my $bnpng = basename($png, ".png");
$img = tinycv::read($png);
$res = $img->search($needle);
if ($res) {
print "Needle ambiguity: [Needle] " . $bnjson . " - [Image] " . $bnpng . " [" . $res->{similarity} . "]\n" if $bnjson ne $bnpng;
}
else {
print "Needle does not match itself: [Needle] " . $bnjson . " - [Image] " . $bnpng . "\n" if $bnjson eq $bnpng;
}
}
}