From: jon smith on
i am trying to open an image acquired by a capture card(PICOLO series). when i use get data i get a variable of size(480,640,3,10). How can i convert this to a normal rgb image and display it?

Thanks in advance.
From: Walter Roberson on
jon smith wrote:
> i am trying to open an image acquired by a capture card(PICOLO series).
> when i use get data i get a variable of size(480,640,3,10). How can i
> convert this to a normal rgb image and display it?

That's probably not a single image: that is probably 10 images, with the
first one being accessed as (:,:,:,1), the second as (:,:,:,2) and so on.
From: jon smith on
Walter Roberson <roberson(a)hushmail.com> wrote in message <hn8ldg$22t$2(a)canopus.cc.umanitoba.ca>...
> jon smith wrote:
> > i am trying to open an image acquired by a capture card(PICOLO series).
> > when i use get data i get a variable of size(480,640,3,10). How can i
> > convert this to a normal rgb image and display it?
>
> That's probably not a single image: that is probably 10 images, with the
> first one being accessed as (:,:,:,1), the second as (:,:,:,2) and so on.


err, thanks. i didnt think of that. i can display images but now they seem to be half of interlaced frames for something.
From: jon smith on
Walter Roberson <roberson(a)hushmail.com> wrote in message <hn8ldg$22t$2(a)canopus.cc.umanitoba.ca>...
> jon smith wrote:
> > i am trying to open an image acquired by a capture card(PICOLO series).
> > when i use get data i get a variable of size(480,640,3,10). How can i
> > convert this to a normal rgb image and display it?
>
> That's probably not a single image: that is probably 10 images, with the
> first one being accessed as (:,:,:,1), the second as (:,:,:,2) and so on.


err, thanks. i didnt think of that. i can display images but now they seem to be half of interlaced frames for something.