From: Nor Aznim on
hi...

anyone can help me on image processing?i have an image that i've convert it into luminance,then splitting it into 8x8 blocks, then i have quantized its coefficient before insert another bit of hidden image inside the earlier image.now i have a double class image,and i want to convert it into RGB.
do anyone can give me the idea?
From: ImageAnalyst on
On Apr 2, 9:26 am, "Nor Aznim" <chempaka_darw...(a)yahoo.com> wrote:
> hi...
>
> anyone can help me on image processing?i have an image that i've convert it into luminance,then splitting it into 8x8 blocks, then i have quantized its coefficient before insert another bit of hidden image inside the earlier image.now i have a double class image,and i want to convert it into RGB.
> do anyone can give me the idea?

----------------------------------------
Not exactly sure I follow what you said, but if you just want to get
to a regular 24 bit RGB image (8 bits for each color channel) just
cast it with the uint8() function
rgb8bit = uint8(rgbDouble);
From: Dave Robinson on
ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <725759f7-2dee-4103-8fce-ee4794ac9f82(a)n13g2000vbn.googlegroups.com>...
> On Apr 2, 9:26 am, "Nor Aznim" <chempaka_darw...(a)yahoo.com> wrote:
> > hi...
> >
> > anyone can help me on image processing?i have an image that i've convert it into luminance,then splitting it into 8x8 blocks, then i have quantized its coefficient before insert another bit of hidden image inside the earlier image.now i have a double class image,and i want to convert it into RGB.
> > do anyone can give me the idea?
>
> ----------------------------------------
> Not exactly sure I follow what you said, but if you just want to get
> to a regular 24 bit RGB image (8 bits for each color channel) just
> cast it with the uint8() function
> rgb8bit = uint8(rgbDouble);

Hi IA

That was my first thought, but then noticed that he said he had converted his image to luminance, but never said he had kept the colour information, if this had been discarded then we are back to the situation where what he asks is impossible. Even if he had kept the colour information, the description of the processing is that vague that it isn't at all obvious how you would, or even could reform back to a full colour image.

Have a good Easter

Dave Robinson


Regards

Dave Robinson
From: us on
"Nor Aznim" <chempaka_darwish(a)yahoo.com> wrote in message <hp4r9t$peo$1(a)fred.mathworks.com>...
> hi...
>
> anyone can help me on image processing?i have an image that i've convert it into luminance,then splitting it into 8x8 blocks, then i have quantized its coefficient before insert another bit of hidden image inside the earlier image.now i have a double class image,and i want to convert it into RGB.
> do anyone can give me the idea?

probably - if only CSSMers knew what ...exactly... you meant by
....convert it into RGB...
eg, 2D -> 3D (?)...

us
From: ImageAnalyst on
Dave:
You're right. I ignored all that vague, poorly stated stuff in the
beginning and (not feeling like prodding for more info at the moment),
simply answered his question (knowing full well that he may get
unexpected results). Perhaps he'll clarify.