/usr/share/perl5/GIFT/CGLDistanceMatrix.pm is in gnuift-perl 0.1.14-12.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | #!/usr/bin/perl -w # -*- mode: perl -*-
# GIFT, a flexible content based image retrieval system.
# Copyright (C) 1998, 1999, 2000, 2001, 2002, CUI University of Geneva
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Author of this file: Wolfgang Müller
#
# contact people for MRML and MPEG
# check things out: would we be at a pre-meeting?
#
require 5.002;
use lib '/usr/bin'; # for including CFeedbackClient
use CXMLTreeVisitor;
use CXTVTripletList;
use POSIX qw(floor ceil);
=pod
=head1 NAME
CGLDistanceMatrix - simulating content-based queries by table lookup
=head1 SYNOPSIS
=head1 DESCRIPTION
This is based on CGIFTLink. It provides the simplest possible way of
linking a query engine with the GIFT.
=head2 The big picture
This class reads a pre-calculated distance matrix and a list of images
in order to perform next-neighbour queries with primitive relevance
feedback.
Suppose you want to check how well your low-level/semantic-level
feature set does for a given MRML-based benchmark. Suppose you are not
Mr. Uberhacker. Suppose you know how to provide a distance matrix for
your collection. Then this class is what you need.
All you need to do is to provide a matrix which gives the distance
between each pair of images from the collection.
Give the file location of the distance matrix as the
C<cui-distance-matrix-location> attribute in a collection
of the config file. As all locations given in config files,
the location is taken I<relative to> C<cui-base-dir>.
The second parameter you need is a list of image urls. In our case, we
would like to use the same url2fts file, as an inverted file based
collection would use. These files have the structure
IMAGE_URL1 THUMBNAIL_URL1 FEATURE_FILE_URL1
IMAGE_URL2 THUMBNAIL_URL2 FEATURE_FILE_URL2
IMAGE_URL3 THUMBNAIL_URL3 FEATURE_FILE_URL3
IMAGE_URL4 THUMBNAIL_URL4 FEATURE_FILE_URL4
... ... ...
for our purpose, we will take the urls, and we will ignore the
feature file of each line.
So, if you have a collection which is already indexed using
C<gift-add-collection.pl> simply use the url2fts file that exsists
already. If not, simply generate a list of urls of all the images and
their thumbnails, giving in each line a dummy value, e.g.:
http://localhost/1.jpg http://localhost/thumbnail/1.jpg dummy
http://localhost/2.jpg http://localhost/thumbnail/2.jpg dummy
http://localhost/3.jpg http://localhost/thumbnail/3.jpg dummy
http://localhost/4.jpg http://localhost/thumbnail/4.jpg dummy
and add the location of this file as attribute to the collection
tag corresponding to your collection.
=head1 EXAMPLES
=head1 ATTRIBUTES
cui-base-dir the basis directory containing the following
files
cui-feature-file-location the location of the url2fts file
cui-distance-matrix-location the location of the distance matrix
=head1 SEE ALSO
CGIFTLink
=head1 DIAGNOSTICS
=head2 configure
When the function CGLDistanceMatrix::configure is called, the text
C<CGLDistanceMatrix.pm::configure called>
is printed.
configure dies with the following messages if necessary:
C<no url2fts file defined!> this means that the file that contains the
information which images are present in the collection, and which
*.fts files belong them was not found. If it was found C<reading
$inFileName> is printed instead. Afterwards for each image read a line
is printed that contains C<NUMBER: IMAGE_LOCATION, THUMBNAIL_LOCATION,
FEATURE_FILE_LOCATION>. C<NUMBER> being the ID assigned to the image
inside this perl module, C<IMAGE_LOCATION> being the url of the image,
C<THUMBNAIL_LOCATION> being the url of the thumbnail, and
C<FEATURE_FILE_LOCATION> being the location of the feature file (local
file name). C<FEATURE_FILE_LOCATION> is ignored, as it applies only to
inverted file indices.
=head1 BUGS
=head1 RESTRICTIONS
There is a couple of big inherent restrictions in this:
=head1 AUTHOR
Wolfgang Müller for the CUI Geneva
=cut
############################################################
#
# CGIFTLink
#
# A class for Perl-side of the link between
# GIFT and Perl
#
# YOU SHOULD NOT NEED TO TOUCH THIS CLASS
# THERE IS AN ERROR
#
# SUBCLASS THIS FOR CREATING YOUR OWN QUERY PROCESSORS
#
use lib '/usr/bin'; # adding the install directory to the library directory
use CGIFTLink;
package CGLDistanceMatrix;
require Exporter;
@ISA= qw(Exporter
CGIFTLink
);
@EXPORT_OK= qw(new
configure
);
sub new(){
my $class = shift;
my $self = {};
bless $self, $class;
$self->initialize();
return $self;
}
sub initialize(){
my$self=shift;
}
########################################
#
# query
#
# Processes the query given by $self->{tree}
#
# PARAMETERS: The tree to be processed
#
# RETURNS: an XML tree containing a "query-result" element
#
# THIS FUNCTION IS INTENDED TO BE OVERLOADED
#
sub query( $ ){
my $self=shift;
my $inQuery= shift;# this should now contain an XML tree
print "CGLDistanceMatrix::query result-size:",$inQuery->{attributes}->{"result-size"}," attributes of \$inQuery",keys(%{$inQuery->{attributes}}),"\n\n";
#
# looking at all user-relevance-element-lists
# that are direct children of our query-element
#
my @lUserRelevanceElements;
foreach $i (@{$inQuery->{children}}){
print "Looking at child ",$i->{element},"\n";
if($i->{element} eq "user-relevance-element-list"){
print "pushing\n";
print "pushing: The children: ",join(",",@{$i->{children}}),"\n";
push @lUserRelevanceElements,(@{$i->{children}});
}
}
#
# Starting out with a list of all images,
# each one is assigned calculated-similarity=0
#
my $lResult=[];
{
@{$lResult}=@{$self->{url2fts}};
my $i;
foreach $i (@{$lResult}){
$i->{attributes}->{'calculated-similarity'}=0;
$i->{attributes}->{'_positive'}=0;
$i->{attributes}->{'_negative'}=0;
$i->{attributes}->{'_positive_count'}=0;
$i->{attributes}->{'_negative_count'}=0;
}
}
#
# averaging over the results for all query elements
# weighted by relevance level
#
my $lUserRelevanceElement;
foreach $lUserRelevanceElement (@lUserRelevanceElements){
print "Looking at user-relevance-element $lUserRelevanceElement->{attributes}->{'image-location'}\n";
my $lLine=$self->{url_to_id}->{$lUserRelevanceElement->{attributes}->{'image-location'}};
if(defined $lLine){
my $lRelevance= defined($lUserRelevanceElement->{attributes}->{'user-relevance'})?
$lUserRelevanceElement->{attributes}->{'user-relevance'} : 10000 ;
print "Relevance: $lRelevance\n";
my $i;
$lCount=0;
foreach $i (@{$lResult}){
my $lIncrement=$self->{distance_matrix}->[$lLine]->[$lCount] * $lRelevance;
if($lIncrement>0){
$i->{attributes}->{'_positive_count'}++;
$i->{attributes}->{'_positive'}+=$lIncrement;
}
if($lIncrement<0){
$i->{attributes}->{'_negative_count'}++;
$i->{attributes}->{'_negative'}+=$lIncrement;
}
$lCount++;
}
}
}
foreach $i (@{$lResult}){
$i->{attributes}->{'calculated-similarity'}=0;
if($i->{attributes}->{_positive_count}){
$i->{attributes}->{'calculated-similarity'}+=$i->{attributes}->{'_positive'}/$i->{attributes}->{'_positive_count'};
}
if($i->{attributes}->{_negative_count}){
$i->{attributes}->{'calculated-similarity'}+=0.5*$i->{attributes}->{'_negative'}/$i->{attributes}->{'_negative_count'};
}
delete $i->{attributes}->{_negative};
delete $i->{attributes}->{_negative_count};
delete $i->{attributes}->{_positive};
delete $i->{attributes}->{_positive_count};
}
#
# sort in descending order
#
@{$lResult}=sort {$b->{attributes}->{'calculated-similarity'} <=> $a->{attributes}->{'calculated-similarity'}} @{$lResult};
#
# take the first result-size elements.
#
@{$lResult}=@{$lResult}[0..$inQuery->{attributes}->{"result-size"}];
return {
element => "query-result",
attributes => {},
children => [
{
element => "query-result-element-list",
attributes => {},
children => $lResult
}
]
};
}
########################################
#
# query
#
# Processes the query given by $inQuery
# give back $inQuery->{attributes}->{"result-size"} random images
#
# PARAMETERS: The "query" tree to be processed
#
# RETURNS: an XML tree containing a "query-result" element
#
# THIS FUNCTION IS INTENDED TO BE OVERLOADED
#
sub randomQuery( $ ){
my $self=shift;
my $inQuery= shift;# this would now contain an XML tree
print "CGIFTLink---------->randomQuery:",$inQuery->{element},",",$inQuery->{attributes}->{"result-size"},":",keys(%{$inQuery->{attributes}}),"\n\n";
my $lResultSize=$inQuery->{attributes}->{"result-size"};
my $i;
my %lUsed;
my $lResult=[];
if(scalar(@{$self->{url2fts}})<$lResultSize){
$lResult=$self->{url2fts};
}else{
while(scalar(keys %lUsed)<$lResultSize){
my $lNew=POSIX::floor(rand()*scalar(@{$self->{url2fts}}));
$lUsed{$lNew}=1;
}
$lResult=[];
@{$lResult}=@{$self->{url2fts}}[(keys %lUsed)];
}
#returning a constant XML tree
return {
element => "query-result",
attributes => {},
children => [
{
element => "query-result-element-list",
attributes => {},
children => $lResult
}
]
};
}
########################################
#
# configure
#
# processes the configuration data present in
# $self->{collection} and $self->{algorithm}.
# possible examples would be the opening of a
# connection to an SQL database.
#
# PARAMETERS: expects $self->{collection} and $self->{algorithm}
# to be set
#
# RETURNS: nothing
#
# THIS FUNCTION IS INTENDED TO BE OVERLOADED
#
sub configure( ){
my $self=shift;
print "CGLDistanceMatrix.pm::configure called\n";
die unless defined($self);
die unless defined($self->{collection});
$self->{selectionSize}=9;
$self->{sdev}=5;
my $inFileName=$self->{collection}->{attributes}->{'cui-base-dir'}
."/"
.$self->{collection}->{attributes}->{'cui-feature-file-location'};
#
# the size of the matrix
#
$self->{size}=$self->{collection}->{attributes}->{'cui-number-of-images'};
open(IF,$inFileName)
or die "no url2fts file defined!\n";
print "reading $inFileName\n";
$self->{url2fts}=[];
my $lCount=0;
$self->{id_to_url}={};
$self->{url_to_id}={};
while(<IF>){
my($lLocation,$lThumb,$lIgnoreFeatures)=split(" ",$_);
print "$lCount: $lLocation,$lThumb,$lIgnoreFeatures\n";
$self->{id_to_url}->{$lCount}=$lLocation;
$self->{url_to_id}->{$lLocation}=$lCount;
$lCount++;
push @{$self->{url2fts}},{
element =>'query-result-element',
attributes =>{
'image-location'=>$lLocation,
'thumbnail-location'=>$lThumb,
'calculated-similarity'=>$lCount
},
children=> []
}
}
print "finished reading $inFileName\nURL2FTS WAS LOADED SUCCESSFULLY!\n";
$|=1;
print "CONFIGURE: Reading distance matrix\n";
my $lDistanceMatrix=$self->{collection}->{attributes}->{'cui-base-dir'}
."/"
.$self->{collection}->{attributes}->{'cui-distance-matrix-location'};
open DISTANCE_MATRIX_FILE,"${lDistanceMatrix}.trans" or die "No distance matrix translator";
close DISTANCE_MATRIX_FILE;
open DISTANCE_MATRIX_FILE,"$lDistanceMatrix" or die "No distance matrix file $lDistanceMatrix\n";
my $i,$j;
$size=$self->{size};
$self->{distance_matrix}=[];
for($i=0;$i<$size;$i++){
print ".";
$self->{distance_matrix}->[$i]=[];
if(1==0){
for($j=0;$j<$size;$j++){
$self->{distance_matrix}->[$i]->[$j]=$self->indicesToDistance($i,$j);
}
}
read DISTANCE_MATRIX_FILE,$inChunk,$self->{size}*4;
my $lUnranked=1;
if($lUnranked){
@{$self->{distance_matrix}->[$i]}=(unpack ("f" x $self->{size},$inChunk));
}else{
my @lUnrankedList=(unpack ("f" x $self->{size},$inChunk));
my $k;
my @lNamedList;
my $lCount=0;
foreach $k (@lUnrankedList){
push @lNamedList,{
id=>$lCount,
distance=>$k
};
$lCount++;
}
my @lSortedNamedList=sort {$a->{distance} <=> $b->{distance};} @lNamedList;
my $lCount=0;
foreach $k (
#reverse (take this out for lists of scores)
@lSortedNamedList){
$self->{distance_matrix}->[$i]->[$k->{id}]=$lCount;
$lCount++;
}
#print join(",",sort {$a<=>$b} @{$self->{distance_matrix}->[$i]}),"\n";
}
}
{#symmetrify
my $lSize=scalar(@{$self->{distance_matrix}});
my $k;
foreach $i (0..$lSize){
foreach $k ($i+1..$lSize){
$self->{distance_matrix}->[$i]->[$k]+=$self->{distance_matrix}->[$k]->[$i];
$self->{distance_matrix}->[$i]->[$k]/=2;
$self->{distance_matrix}->[$k]->[$i]=$self->{distance_matrix}->[$i]->[$k];
}
}
}
bless $self->{distance_matrix},"NoClass";
print "\nINITIALIZE: Finished reading distance matrix\n";
}
########################################
#
# setAlgorithm
#
# sets $self->{algorithm} to the root of an XML tree
# containing an "algorithm" element. This can contain
# useful configuration information, depending on your
# algorithm
#
# PARAMETERS: tripletList containing "algorithm" element
#
# SIDE EFFECTS: sets $self->{algorithm}
#
# YOU SHOULD NOT NEED TO TOUCH THIS FUNCTION UNLESS
# THERE IS AN ERROR
#
sub setAlgorithm( ; ){
my$self=shift;
print "setAlgorithm was called \n";
my $lRoot=$self->CGIFTLink::tripletListToTree(@_);
$self->{algorithm}=$lRoot;
}
########################################
#
# setCollection
#
# sets $self->{collection} to the root of an XML tree
# containing a "collection" element. This can contain
# useful configuration information, depending on your
# algorithm
#
# PARAMETERS: tripletList containing "collection" element
#
# SIDE EFFECTS: sets $self->{collection}
#
# YOU SHOULD NOT NEED TO TOUCH THIS FUNCTION UNLESS
# THERE IS AN ERROR
#
sub setCollection( ; ){
my$self=shift;
print "setCollection was called \n";
my $lRoot=$self->CGIFTLink::tripletListToTree(@_);
$self->{collection}=$lRoot;
}
|