/usr/lib/perl5/PDL/Compression.pm is in pdl 1:2.4.7+dfsg-2ubuntu5.
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 | #
# GENERATED WITH PDL::PP! Don't modify!
#
package PDL::Compression;
@EXPORT_OK = qw( PDL::PP rice_compress PDL::PP rice_expand );
%EXPORT_TAGS = (Func=>[@EXPORT_OK]);
use PDL::Core;
use PDL::Exporter;
use DynaLoader;
@ISA = ( 'PDL::Exporter','DynaLoader' );
push @PDL::Core::PP, __PACKAGE__;
bootstrap PDL::Compression ;
=head1 NAME
PDL::Compression - compression utilities
=head1 DESCRIPTION
These routines generally accept some data as a PDL and compress it
into a smaller PDL. Algorithms typically work on a single dimension
and thread over other dimensions, producing a threaded table of
compressed values if more than one dimension is fed in.
The Rice algorithm, in particular, is designed to be identical to the
RICE_1 algorithm used in internal FITS-file compression (see PDL::IO::FITS).
=head1 SYNOPSIS
use PDL::Compression
($b,$asize) = $a->rice_compress();
$c = $b->rice_expand($asize);
=cut
=head1 FUNCTIONS
=cut
=head1 METHODS
=cut
=head2 rice_compress
=for sig
Signature: (in(n); [o]out(m); int[o]len(); lbuf(n); int blocksize)
=for ref
Squishes an input PDL along the 0 dimension by Rice compression. In
scalar context, you get back only the compressed PDL; in list context,
you also get back ancillary information that is required to uncompress
the data with rice_uncompress.
Multidimensional data are threaded over - each row is compressed
separately, and the returned PDL is squished to the maximum compressed
size of any row. If any of the streams could not be compressed (the
algorithm produced longer output), the corresponding length is set to -1
and the row is treated as if it had length 0.
Rice compression only works on integer data types -- if you have
floating point data you must first quantize them.
The underlying algorithm is identical to the Rice compressor used in
CFITSIO (and is used by PDL::IO::FITS to load and save compressed FITS
images).
The optional blocksize indicates how many samples are to be compressed
as a unit; it defaults to 32.
How it works:
Rice compression is a subset of Golomb compression, and works on data sets
where variation between adjacent samples is typically small compared to the
dynamic range of each sample. In this implementation (originally written
by Richard White and contributed to CFITSIO in 1999), the data are divided
into blocks of samples (by default 32 samples per block). Each block
has a running difference applied, and the difference is bit-folded to make
it positive definite. High order bits of the difference stream are discarded,
and replaced with a unary representation; low order bits are preserved. Unary
representation is very efficient for small numbers, but large jumps could
give rise to ludicrously large bins in a plain Golomb code; such large jumps
("high entropy" samples) are simply recorded directly in the output stream.
Working on astronomical or solar image data, typical compression ratios of
2-3 are achieved.
=for usage
$out = $pdl->rice_compress($blocksize);
($out, $len, $blocksize, $dim0) = $pdl->rice_compress;
$new = $out->rice_expand;
=for bad
rice_compress ignores the bad-value flag of the input piddles.
It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles.
=cut
sub PDL::rice_compress {
my $in = shift;
my $blocksize = shift || 32;
## Reject floating-point inputs
if( $in->type != byte &&
$in->type != short &&
$in->type != ushort &&
$in->type != long
) {
die("rice_compress: input needs to have type byte, short, ushort, or long, not ".($in->type)."\n");
}
# output buffer starts the same size; truncate at the end.
my ($out) = zeroes($in);
# line buffer is here to make sure we don't get fouled up by transpositions
my ($lbuf) = zeroes($in->type, $in->dim(0));
# lengths go here
my ($len) = zeroes(long, $in->slice("(0)")->dims);
&PDL::_rice_compress_int( $in, $out, $len, $lbuf, $blocksize );
$l = $len->max;
$out = $out->slice("0:".($l-1))->sever;
if(wantarray) {
return ($out, $in->dim(0), $blocksize, $len);
} else {
return $out;
}
}
*rice_compress = \&PDL::rice_compress;
=head2 rice_expand
=for sig
Signature: (in(n); [o]out(m); lbuf(n); int blocksize)
=for ref
Unsquishes a PDL that has been squished by rice_expand.
=for usage
($out, $len, $blocksize, $dim0) = $pdl->rice_compress;
$copy = $out->rice_expand($dim0, $blocksize);
=for bad
rice_expand ignores the bad-value flag of the input piddles.
It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles.
=cut
sub PDL::rice_expand {
my $squished = shift;
my $dim0 =shift;
my $blocksize = shift || 32;
# Allocate output array
my $out = zeroes( $squished->slice("(0),*$dim0") );
# Allocate row buffer to avoid weird memory edge case
my $lbuf = zeroes($squished->type, $squished->dim(0));
&PDL::_rice_expand_int( $squished, $out, $lbuf, $blocksize );
return $out;
}
*rice_expand = \&PDL::rice_expand;
;
=head1 AUTHORS
Copyright (C) 2010 Craig DeForest.
All rights reserved. There is no warranty. You are allowed
to redistribute this software / documentation under certain
conditions. For details, see the file COPYING in the PDL
distribution. If this file is separated from the PDL distribution,
the copyright notice should be included in the file.
The Rice compression library is derived from the similar library in
the CFITSIO 3.24 release, and is licensed under yet more more lenient
terms than PDL itself; that notice is present in the file "ricecomp.c".
=head1 BUGS
=over 3
=item * Currently headers are ignored.
=item * Currently there is only one compression algorithm.
=back
=head1 TODO
=over 3
=item * Add object encapsulation
=item * Add test suite
=back
=cut
# Exit with OK status
1;
|