I am writing a decompressor which (among other things) has to apply a delta filter to RGB images. That is, read images where only the first pixel is absolute (R1, G1, B1) and all the others are in the form (R[n]-R[n-1], G[n]-G[n-1], B[n]-B[n-1]), and convert them to standard RGB.
Right now I am using numpy as follows:
rgb = numpy.fromstring(data, 'uint8')
components = rgb.reshape(3, -1, order='F')
filtered = numpy.cumsum(components, dtype='uint8', axis=1)
frame = numpy.reshape(filtered, -1, order='F')
Where
- line 1 creates a 1D array of the original image;
line 2 reshapes it in the form
[[R1, R2, ..., Rn], [G1, G2, ..., Gn], [B1, B2, ..., Bn]]line 3 performs the actual defiltering
- line 4 converts back again to a 1D array
The problem is that it is too slow for my needs. I profiled it and found out that a good amount of time is spent reshaping the array.
So I wonder: is there some way of avoiding reshaping or to speed it up?
Notes:
- I'd prefer not to have to write a C extension for this.
- I'm already using multithreading
rgbdata ranges from 0 to 255, there is a good chance thatnumpy.cumsumwill silently overflow. Take a look at what happens whenx = np.arange(255,dtype = 'uint8')andy = np.cumsum(x, dtype = 'uint8'). – unutbu Feb 8 '12 at 20:05filtered = numpy.diff(components, axis = 1)to computeR[n]-R[n-1], etc.? – unutbu Feb 8 '12 at 20:43