Thread *.BMP auslesen (24 answers)
Opened by willi at 2010-02-13 20:33

Gast willi
 2010-02-13 23:23
#132923 #132923
anbei nochmals das selbe nur mit mehr zeiten
Code (perl): (dl )
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
#!/usr/bin/perl

use strict;
use warnings;
use FindBin qw/$Bin/;
use Benchmark (qw/timediff timestr/);
use Image::BMP;

my $t0 = Benchmark->new();
my $img = new Image::BMP;
my $t1 = Benchmark->new();
$img->open_file($Bin . '/a.bmp');
my $t2 = Benchmark->new();
my ($r1,$g1,$b1) = $img->xy_rgb(10,10);
my $t3 = Benchmark->new();
my ($r2,$g2,$b2) = $img->xy_rgb(20,20);
my $t4 = Benchmark->new();
my ($r3,$g3,$b3) = $img->xy_rgb(10,10);
my $t5 = Benchmark->new();

my $td1 = timediff($t1, $t0);
my $td2 = timediff($t2, $t1);
my $td3 = timediff($t3, $t2);
my $td4 = timediff($t4, $t3);
my $td5 = timediff($t5, $t4);

my $td10 = timediff($t5, $t0);


print "the code 1 took:", timestr($td1),"\n";
print "the code 2 took:", timestr($td2),"\n";
print "the code 3 took:", timestr($td3),"\n";
print "the code 4 took:", timestr($td4),"\n";
print "the code 5 took:", timestr($td5),"\n";
print "the complete code took:", timestr($td10),"\n";


Quote
the code 1 took: 0 wallclock secs ( 0.01 usr + 0.00 sys = 0.01 CPU)
the code 2 took: 0 wallclock secs ( 0.11 usr + 0.01 sys = 0.12 CPU)
the code 3 took:70 wallclock secs (68.11 usr + 1.66 sys = 69.77 CPU)
the code 4 took: 0 wallclock secs ( 0.00 usr + 0.00 sys = 0.00 CPU)
the code 5 took: 0 wallclock secs ( 0.01 usr + 0.00 sys = 0.01 CPU)
the complete code took:70 wallclock secs (68.24 usr + 1.67 sys = 69.91 CPU)


Und jetzt die 1000$ frage warum braucht nur das erste "my ($r1,$g1,$b1) = $img->xy_rgb(10,10);" so lange?

View full thread *.BMP auslesen