Digital Image Processing: showing graylevel images in
- To: mathgroup at smc.vnet.net
- Subject: [mg64208] Digital Image Processing: showing graylevel images in
- From: "Maarten van der Burgt" <maarten.vanderburgt at icos.be>
- Date: Mon, 6 Feb 2006 02:49:07 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
After loading the Digital Image Processing package (<<imageprocessing`)
The following command generates a 100 x 100 pixel graylevel image with
gray values (GV) in the range of 50 ot 180.
img =ToGrayLevel[Table[Random[Integer, {50, 180}], {100},{100}]]
The default way to show this image on screen is:
Show[Graphics[img]];
But, assuming the complete GV range I am working with is 0-255, I want to
display the image with 0 as black and 255 as white.
I know this can be done using:
Show[Graphics[Raster[RawImageData[img],{{0,0},{100,100}},{0,255}]],
AspectRatio->Automatic]
But, compared to the firste Show[...] expression, this is a rather
cumbersome way of doing this.
Is there a shorter way to display a graylevel images properly scaled
(0-255). I did not find anything in the Digital Image Processing
documentation.
Thanks for your help.
Maarten