A small change doubled the performance:
HV* countColors2( SV *img ) {
STRLEN l;
U32 *rgba = (U32*)SvPVx( img, l ), i;
HV* counts = newHV();
l /= 4;
for( i = 0; i < l; ++i ) {
SV **val;
if( val = hv_fetch( counts, (char*)&rgba[ i ], 4, 0 ) ) {
SvIV_set( *val, SvIV( *val ) + 1 );
}
else {
SV *val = newSViv( 1 );
hv_store( counts, (char*)&rgba[ i ], 4, val, 0 );
}
}
return counts;
}
C:\test>1138218 mid.png
Width:12800 height:10240 pixels:131072000
Took 12.642578 seconds
Found 81814 colors in 131072000 pixels
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.