Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #7634

Re: working with raw image files

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!tudelft.nl!txtfeed1.tudelft.nl!multikabel.net!newsfeed20.multikabel.net!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!194.109.133.85.MISMATCH!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <python@mrabarnett.plus.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.001
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'mrab': 0.05; 'scaling': 0.05; 'from:addr:python': 0.09; 'subject:files': 0.09; 'subject:image': 0.09; 'this:': 0.10; 'wrote:': 0.14; "'rb')": 0.16; 'factor,': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:name:mrab': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'numpy': 0.16; 'received:84.92': 0.16; 'received:84.92.122': 0.16; 'received:84.92.122.60': 0.16; 'reply-to:addr:python-list': 0.16; 'subject:raw': 0.16; 'header:In-Reply-To:1': 0.21; 'received:84': 0.25; 'array': 0.30; 'subject:working': 0.30; 'yes.': 0.30; 'it.': 0.31; 'to:addr:python-list': 0.33; 'header:User-Agent:1': 0.35; 'reply-to:addr:python.org': 0.35; 'something': 0.37; 'could': 0.38; 'data': 0.38; 'subject:: ': 0.38; 'explain': 0.39; 'subject:with': 0.39; 'to:addr:python.org': 0.39; 'header:Reply- To:1': 0.72; 'reply-to:no real name:2**0': 0.72
X-IronPort-Anti-Spam-Filtered true
X-IronPort-Anti-Spam-Result AgsHAOja903Unw4S/2dsb2JhbABSmA6OR3eIdcAVhiQElh+LEQ
Date Tue, 14 Jun 2011 23:06:02 +0100
From MRAB <python@mrabarnett.plus.com>
User-Agent Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10
MIME-Version 1.0
To python-list@python.org
Subject Re: working with raw image files
References <0cd64f09-bd32-4b67-9266-46003dbea4b7@m4g2000yqk.googlegroups.com> <1f7a452a-8bae-43e0-ab9f-9bfed55ee206@b21g2000yqc.googlegroups.com> <a4d759a7-02dd-47b9-ba38-0dc947561230@k16g2000yqm.googlegroups.com> <e648cf41-9e2c-4acf-b312-7b83be8cd03a@h7g2000yqa.googlegroups.com> <57d6da80-59db-477f-b507-cabf01a2976d@j23g2000yqc.googlegroups.com> <720bec5b-4892-4cd7-83e1-f67ce78591be@y30g2000yqb.googlegroups.com> <71140671-4273-417d-8d2f-3986663acdb2@k16g2000yqm.googlegroups.com> <2c095413-ea59-4339-8419-ae4b688e219d@17g2000prr.googlegroups.com> <mailman.223.1308068671.11593.python-list@python.org> <bf3f66ae-9b8f-4bd9-8827-bf0cd59bd3e7@j23g2000yqc.googlegroups.com> <mailman.231.1308083252.11593.python-list@python.org> <e62e7c74-6169-42e7-acd4-3bb45c8a875b@p13g2000yqh.googlegroups.com>
In-Reply-To <e62e7c74-6169-42e7-acd4-3bb45c8a875b@p13g2000yqh.googlegroups.com>
Content-Type text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding 7bit
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
Precedence list
Reply-To python-list@python.org
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.236.1308089164.11593.python-list@python.org> (permalink)
Lines 19
NNTP-Posting-Host 82.94.164.166
X-Trace 1308089164 news.xs4all.nl 49179 [::ffff:82.94.164.166]:47773
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:7634

Show key headers only | View raw


On 14/06/2011 22:20, kafooster wrote:
> On 14 Cze, 22:26, MRAB<pyt...@mrabarnett.plus.com>  wrote:
>>
>> Multiply the numpy array by a scaling factor, which is
>> float(max_8bit_value) / float(max_16bit_value).
>
> could you please explain it a little? I dont understand it. like
> multiplying each element?

Yes. Something like this:

fileobj = open("hand.raw", 'rb')
data = numpy.fromfile(fileobj, dtype=numpy.uint16)
fileobj.close()
data = data * float(0xFF) / float(0xFFFF)
data = numpy.array(data, dtype=numpy.uint8)
data = data.reshape((96, 470, 352))
imshow(data[:, :, 40], cmap='gray')
show()

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

working with raw image files kafooster <dmozejko@gmail.com> - 2011-06-13 11:18 -0700
  Re: working with raw image files Terry Reedy <tjreedy@udel.edu> - 2011-06-13 14:49 -0400
  Re: working with raw image files Wanderer <wanderer@dialup4less.com> - 2011-06-13 13:08 -0700
    Re: working with raw image files Wanderer <wanderer@dialup4less.com> - 2011-06-13 13:20 -0700
      Re: working with raw image files MRAB <python@mrabarnett.plus.com> - 2011-06-13 21:36 +0100
      Re: working with raw image files kafooster <dmozejko@gmail.com> - 2011-06-13 13:41 -0700
        Re: working with raw image files Wanderer <wanderer@dialup4less.com> - 2011-06-13 13:52 -0700
          Re: working with raw image files kafooster <dmozejko@gmail.com> - 2011-06-13 13:58 -0700
            Re: working with raw image files Wanderer <wanderer@dialup4less.com> - 2011-06-13 14:28 -0700
              Re: working with raw image files Martin De Kauwe <mdekauwe@gmail.com> - 2011-06-14 00:49 -0700
                Re: working with raw image files Terry Reedy <tjreedy@udel.edu> - 2011-06-14 12:24 -0400
                Re: working with raw image files kafooster <dmozejko@gmail.com> - 2011-06-14 13:13 -0700
                Re: working with raw image files MRAB <python@mrabarnett.plus.com> - 2011-06-14 21:26 +0100
                Re: working with raw image files kafooster <dmozejko@gmail.com> - 2011-06-14 14:20 -0700
                Re: working with raw image files MRAB <python@mrabarnett.plus.com> - 2011-06-14 23:06 +0100
                Re: working with raw image files kafooster <dmozejko@gmail.com> - 2011-06-14 16:59 -0700
                Re: working with raw image files MRAB <python@mrabarnett.plus.com> - 2011-06-15 01:24 +0100
                Re: working with raw image files Dave Angel <davea@ieee.org> - 2011-06-14 19:25 -0400
                Re: working with raw image files kafooster <dmozejko@gmail.com> - 2011-06-14 17:02 -0700
                Re: working with raw image files Dave Angel <davea@ieee.org> - 2011-06-14 22:13 -0400
                Re: working with raw image files Nobody <nobody@nowhere.com> - 2011-06-15 02:29 +0100
                Re: working with raw image files Nobody <nobody@nowhere.com> - 2011-06-15 02:33 +0100

csiph-web