|
[Date Index]
[Thread Index]
[Author Index]
Re: Changing image from grey-scale to another
- To: mathgroup at smc.vnet.net
- Subject: [mg109907] Re: Changing image from grey-scale to another
- From: Patrick Scheibe <pscheibe at trm.uni-leipzig.de>
- Date: Sat, 22 May 2010 00:41:56 -0400 (EDT)
Hi,
zillion ways exist. One is to use ArrayPlot and change the
ColorFunction. Please check the option ColorFunctionScaling and all the
nice Color Schemes inside Mathematica too:
data = ImageData[ColorConvert[Import["http://img.diytrade.com/\
cdimg/186638/526363/0/1068053813/Mucy_Grey_Mystic_Grey_Gris_\
Jaspe.jpg"], "Grayscale"], "Byte"];
ArrayPlot[data, ColorFunction -> ColorData["BrightBands"]]
For large images this solution maybe not the best one.
Cheers,
Patrick
PS: If the link is destroyed through my/your email client, just import
any image.
On Fri, 2010-05-21 at 06:45 -0400, ebaugh at illinois.edu wrote:
> How would one convert a grey scale image into another color
> scale?
>
> By "another color-scale" I mean rather than rendered in shades
> of grey, rendered in shades of a different color.
>
> Many thanks,
> Jason
>
>
> In case you were wondering why I am asking:
> I am attempting to use Mathematica to analyse microarray data.
> The capture software outputs multi-image tifs.
> One image represents a green wavelength, another image
> represents a green wave length. But they are rendered in grey
> scale. These images get combined to give a ratio of the two
> wavelength, but for that to work, they have to be converted from
> greyscale.
>
>
> Jason Ebaugh, PhD.
> Ad astra per aspera
>
> Dissertation: http://hdl.handle.net/2142/13005
> Linkedin: http://www.linkedin.com/profile?
> viewProfile=&key=22842228&locale=en_US&trk=tab_pro
>
Prev by Date:
Intersection of sublists on date and making a 2D list from a 3D one
Next by Date:
Re: Changing image from grey-scale to another
Previous by thread:
Re: Changing image from grey-scale to another
Next by thread:
Re: Changing image from grey-scale to another
|