do i need to create new rgbimage class

J

jimgardener

hi
am a beginner in python and PIL .I need to read an RGB 8 bit image
(am using jpeg )and pack the rgb color values into a double value so i
can store the image as a list of pixelvalues.From my application i
should be able to call rgbimage1.getpixellist() to retrieve the double
values of an image.
Do i need to create a new class for this?I made something like

class myrgbimage:
def __init__(self,filename):

def _readimage(self):
im=Image.open(filename)
self._readImage(filename)
self._wd,self._ht=im.size
for y in range(self._ht):
for x in range(self._wd):
r,g,b=im.getpixel((x,y))
pval=self.rgbTodoubleval((r,g,b))
self._pixellist.append(pval)

def rgbTodoubleval(self,(r,g,b)):
alpha=255
pixelvalue=(alpha<<24)|(r<<16 )|( g<<8) | b
return pixelvalue

the way i am currently using this is to create instances using
filenames and then retrieving the list of pixelvalues in the image.
like
for z in imagefilenamelist:
myimage=myrgbimage(z)
imagelist.append(z)

so later on i can take each instance and get its width,height and
pixellist and work with them..anyway the code takes too much time and
I wish to know if i can get these 'packed pixelvalues' straight away
without using the above class

jim
 
G

Gabriel Genellina

am a beginner in python and PIL  .I need to read an RGB 8 bit image
(am using jpeg )and pack the rgb color values into a double value so i
can store the image as a list of pixelvalues.From my application i
should be able to call rgbimage1.getpixellist() to retrieve the double
values of an image.

(May I ask why an accessor like getpixellist() instead of simply
rgbimage1.pixellist?)
Do i need to create a new class for this?I made something like

class myrgbimage:
      def  __init__(self,filename):

      def _readimage(self):
          im=Image.open(filename)
          self._readImage(filename)
          self._wd,self._ht=im.size
          for y in range(self._ht):
               for x in range(self._wd):
                     r,g,b=im.getpixel((x,y))
                     pval=self.rgbTodoubleval((r,g,b))
                     self._pixellist.append(pval)

The PIL docs at [1] say that using getpixel is very slow, and suggest
to use getdata instead. And you want a flat representation anyway,
just like getdata. So replace the for loops above with:

rgbTodoubleval = self.rgbTodoubleval
self._pixellist = [rgbTodoubleval(pix) for pix in
im.getdata()]

I've not tested it, but should be faster.
def rgbTodoubleval(self,(r,g,b)):
alpha=255
pixelvalue=(alpha<<24)|(r<<16 )|( g<<8) | b
return pixelvalue

I don't get the name - why "rgb to double"? This does not return a
"double", but a long integer, even if you intended to return a 32 bit
integer.
This version returns an integer:

from struct import pack, unpack
def rgbTodoubleval((r,g,b)):
alpha=255
return unpack("l", pack("BBBB", b, g, r, alfa))[0]

It *may*, or not, be what you want...
 
J

jimgardener

(May I ask why an accessor like getpixellist() instead of simply
rgbimage1.pixellist?)

sorry,
bad style of coding on my part..was doing java stuff..
I don't get the name - why "rgb to double"? This does not return a
"double", but a long integer,

actually it was to be of 'long' type not double..sorry again

jim
 
G

Gabriel Genellina

actually it was to be of 'long' type not double..sorry again

Notice that a Python 'long' is an infinite range integer; the C 'long'
type maps to Python 'int'. Perhaps you want the latter.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,994
Messages
2,570,223
Members
46,812
Latest member
GracielaWa

Latest Threads

Top